Viewing 8 posts - 1 through 8 (of 8 total)
Rudy,
Have you tried to run a stored procedure in the master prefixed with sp_* and worked for you? if the stored procedure is accessing local objects to the database e.g....
September 11, 2007 at 8:42 pm
Check execution plans of your query; if you find the estimated number of records way lower than the actual returned records, then that's sign of stats. Also, check the stats...
September 6, 2007 at 6:41 pm
SQL 2005 has a default trace running in the background; you can find the trace in SQL logs directory. Look for event 46 or 146 (i think
August 23, 2007 at 9:24 pm
Thanks Greg for bringing this to my attention. I didn't know that the article was under...
August 4, 2006 at 6:08 pm
That's what i call the power of observation, and thinking quietly!...
August 4, 2006 at 7:51 am
Try to create more files for the TEMPDB on more disks and use the SORT_IN_TEMPDB option.
Hope this would help
May 11, 2005 at 10:20 pm
You can also use the Log Parser exe file. It's free download from microsoft and it has so many usages. You can also use it for the event viewer logs...
April 30, 2005 at 5:15 pm
I totally agree, the correct answer should be no. 1. The comma at the end of the last field will generate syntax error message.
October 21, 2004 at 11:11 pm
Viewing 8 posts - 1 through 8 (of 8 total)