Viewing 15 posts - 166 through 180 (of 726 total)
100,000 rows is tiny, and if the desired indexes are indeed all there, it's going to be hard to guess at the problem without more detail. Initially, the query itself...
August 20, 2007 at 1:39 pm
Ninja's, I actually read the article and yet still missed that. Thanks!
August 20, 2007 at 1:29 pm
I'm pretty sure you're running into the standard "parameter sniffing" problem. It's also the first thing I always look for when I hear "My stored proc is slow, but running it...
August 17, 2007 at 9:04 am
While you might have more luck in the 2005 forum, I'm confused about a small section of code above:
, ROW_NUMBER() (...
August 16, 2007 at 2:07 pm
Take the row size for each table, as demonstrated in the other thread you opened on this subject, and multiply by the number of rows for that table. Sum up...
August 16, 2007 at 2:00 pm
Insert the values into a table, and sum them up then, or modify a copy of that stored proc to roll them into a variable, create your own cursor to...
August 16, 2007 at 11:34 am
Either write a cursor to loop through each of your tables, or see if sp_msforeachtable will work in your situation.
August 16, 2007 at 10:53 am
Does OPENROWSET( BULK....) in combination with a FORMATFILE not work for you, or was that not an option in 2000 (it's been a while)?
August 16, 2007 at 10:26 am
Now that I look at it closer, I'm pretty sure you're right. He is wanting to completely reverse the binary digits and then process it, not do the Big Endian as...
August 16, 2007 at 10:18 am
It appears as if you are trying to do some odd form of Big Endian storage, but either I'm confused about that, or your example is wrong. If you're taking...
August 16, 2007 at 7:55 am
While that will work, it's typically preferred to use BEGIN/END to define the statement block. That way, if you decide to add additional code, it won't break again. Straight from...
August 15, 2007 at 10:42 am
If memory serves, probably an hour or two.
As an aside, is there a reason you are creating the db in advance before doing the restore?
July 31, 2007 at 10:27 pm
Viewing 15 posts - 166 through 180 (of 726 total)