Viewing 15 posts - 256 through 270 (of 361 total)
If you have a minute check the 2 procs - do you get paralellism on the table variable one? I never did, and believe its due to their lack of...
November 21, 2006 at 4:45 am
have a look at sp_makewebtask.
Rich
November 21, 2006 at 4:22 am
Another feature of table variables is that they do not get statistics.... which results in some incredibly poor performance when they are misused (particularly by those who think they live...
November 21, 2006 at 4:16 am
I went with a mirror for the os, a stripe for tempdb and mirror for logs, with a couple of raid10s for the data. Worked nicely.
November 17, 2006 at 6:09 am
I'd second that raid10 call. Wrap the raid 5 5 disk into a r10 4 disk with a hotspare. Or ideally add a load more disks - given the amount...
November 17, 2006 at 5:45 am
Welcome
One of my tables is comfortably in excess of 80Gb... and growing a couple of gig a day... I would love to stick...
November 17, 2006 at 3:41 am
The queries are _exactly_ the same.
Sounds silly, but if someones swapped out a temp table with a table variable, or got a variable defn different, or populated a variable with...
November 15, 2006 at 9:11 am
Yeah, kinda. Check out UPDATE STATISTICS in books online.
It takes a table name + index +( several stats name) as parameters.
This allows you to focus on the important stats rather than...
November 15, 2006 at 8:41 am
I wonder if you actaully need to tie it back to the job/maint plan, or if this is something you have sidetracked yourself into? If you do, then you could...
November 15, 2006 at 8:37 am
This _sounds_ like the kind of transaction I was on about earlier, where the restart cleans it out... not that I recommend it, but if you can afford the downtime...
November 14, 2006 at 8:35 am
Yes, you need to go to backupmediafamily to get the logical and physical paths, but from those you can construct a report detailing the various backups.
How to tie that...
November 14, 2006 at 8:33 am
Or you can query msdb..backupset and the associated tables.
November 14, 2006 at 7:55 am
The rule of thumb that I use is that it will take at least as long to kill as its been running. Probably longer. Kill <n> with statusonly will tell...
November 14, 2006 at 4:34 am
The restart sometimes works when the connection has been trashed somehow. Perhaps it is a workaround to something that has already been fixed.
In this circumstance a spid has been killed,...
November 13, 2006 at 10:08 am
Viewing 15 posts - 256 through 270 (of 361 total)