Viewing 15 posts - 6,001 through 6,015 (of 7,429 total)
What did you do?
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
May 8, 2002 at 4:27 pm
Even if the allocation units of the drive have some slack left over it seems odd that you would need that much extra space to do a restore based on...
May 8, 2002 at 3:18 pm
Check out the following thread http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=2903&FORUM_ID=8&CAT_ID=1&Topic_Title=Get%20the%20value%20of%20an%20autoincrement%20identity%20col&Forum_Title=T-SQL Andy makes mention of Scope_Identity() function for SQL 2000 as a better option and other ideas are given.
"Don't roll your eyes at me. I...
May 8, 2002 at 3:16 pm
Can you post the example as we have had a few threads here about Joe Celko and I am afraid I have never seen his examples.
"Don't roll your eyes at...
May 8, 2002 at 3:11 pm
I agree with Andy in that I see no reason why you would want to do this as you lose the advantage of stored execution plans unless you are making...
May 8, 2002 at 3:00 pm
Although I don't suggest doing it for the sake of data consistancy you could try using.
ALTER TABLE tblX NOCHECK CONSTRAINT all
ALTER TABLE tblX DISABLE TRIGGER all
then do your truncate...
May 8, 2002 at 2:56 pm
When you say TEMP table how are you generating it. If thru a stored proc make sure you have SET NOCOUNT ON at the begining after the as and do...
May 8, 2002 at 2:50 pm
If you still get failures I would start a trace in Profiler to see if the link is even reachin gthe box and what may be failing.
"Don't roll your eyes...
May 8, 2002 at 10:07 am
Please do not crosspost, see response at http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=4114&FORUM_ID=19&CAT_ID=3&Topic_Title=BULK+INSERT+WITH+IDENTITY+COLUMN&Forum_Title=Data+Transformation+Services+%28DTS%29.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
May 8, 2002 at 9:52 am
There is no switch to utilize a column in BULK INSERT to not overwrite the column. Only KEEPIDENTYT which allows you to insert an Identity value from the file. DTS...
May 8, 2002 at 9:48 am
See related thread http://www.sqlservercentral.com/forum/topic.asp?TOPIC_ID=4109&FORUM_ID=65&CAT_ID=1&Topic_Title=Case+Study%3A++Expansion+plan+of+450+GB+database&Forum_Title=Performance+Tuning for my post.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
May 8, 2002 at 7:57 am
Ok there are a few things to consider.
How often do the DC's do there thing (i saw the other post)? Once a month, daily, etc.
How often are writes...
May 8, 2002 at 7:53 am
Have you made any recetn changes to structures on the 7 box? Found a metadata issue with 2000 linking to 7 and it could be related to this. Also how...
May 8, 2002 at 7:09 am
That is what I was afraid of. Then your next best option would be with a temp table, which should work best if you limit to the data you need...
May 8, 2002 at 7:04 am
Viewing 15 posts - 6,001 through 6,015 (of 7,429 total)