Viewing 15 posts - 1,636 through 1,650 (of 6,036 total)
christophe.bernard 47659 (2/4/2016)
Now, i would like to know how i can filter my @tblDatas based on a string as @searchAny idea ?
thanks for your help guys
christophe
Try to put your data...
February 10, 2016 at 5:09 pm
You should never write a trigger assuming only a single row gets inserted.
You cannot control which queries will be executed against the table, so make sure your triggers are done...
February 10, 2016 at 5:03 pm
Here is the quickly baked test script:
DROP TABLE TestCalendar
CREATE TABLE [dbo].[TestCalendar](
[ID] [bigint] NOT NULL,
[N_Date] [datetime] NOT NULL,
[WeekDay] [smallint] NULL,
PRIMARY KEY (ID) WITH FILLFACTOR = 100
)
CREATE TABLE [dbo].[Tmp_TestCalendar](
[ID] [bigint] NOT...
February 9, 2016 at 9:58 pm
Igor Micev (2/9/2016)
February 9, 2016 at 8:57 pm
Igor Micev (2/9/2016)
Then, won't you meet that problem again?
With my approach?
No.
Read it again:
1. Create a new table with desired table design.
2. Start populating the new table with portions of data...
February 9, 2016 at 7:41 pm
Igor Micev (2/9/2016)
The table is operational.
Yeah, right.
I once disabled an index which was a duplicate of another one and was only taking space without any benefit (as I thought).
Hours...
February 9, 2016 at 7:17 pm
Igor Micev (2/9/2016)
Put the db in simple recovery model
That alone would be enough to see your stuff packed in a box.
Igor, all your suggestions may be good for...
February 9, 2016 at 6:51 pm
sqlfriends (2/9/2016)
I have conference table,Then I created a ConferenceNote table. It will be NoteID, notetype, ConferenceID,
In the Workshop table, they will be Noteid, notetype, workshopid,
Yep. That's it.
Simple and flexible...
February 9, 2016 at 6:47 pm
Indianrock (2/9/2016)
February 9, 2016 at 6:29 pm
Igor Micev (2/9/2016)
-- Steps:
-- 1. Script the Drop...
February 9, 2016 at 4:33 pm
sqlfriends (2/9/2016)
Let me think about more, and may come back with...
February 9, 2016 at 3:32 pm
Sergiy (2/9/2016)
Indianrock (2/9/2016)
But I'm also waiting to see if Sergiy's code-based fix using negative values in the small integer column would give them enough flexibility.
Or you may wish to create...
February 9, 2016 at 3:00 pm
Indianrock (2/9/2016)
But I'm also waiting to see if Sergiy's code-based fix using negative values in the small integer column would give them enough flexibility.
Or you may wish to create a...
February 9, 2016 at 2:52 pm
February 9, 2016 at 2:42 pm
GilaMonster (2/9/2016)
February 9, 2016 at 2:36 pm
Viewing 15 posts - 1,636 through 1,650 (of 6,036 total)