Viewing 15 posts - 121 through 135 (of 156 total)
To capture the Sql executed by a spid, get the spid's handle from sysprocesses, then pass into table-valued function fn_get_sql in master. Note, if the handle no longer exists in...
June 6, 2008 at 12:07 pm
I have used Spotlight but never monitored the error log. They caution you that doing so may result in performance degradation. Did you check with the vendor? If so, I'd...
June 6, 2008 at 11:44 am
I couldn't agree more! I recently changed jobs specifically because I wanted to be more active with my kid's sports and extracurricular activities. She'll be going to college in another...
June 6, 2008 at 7:53 am
GO is not a T-Sql construct. It is only recognized by SQL Server utilities such as QA. See BOL for explanation.
It's not recommended that you force a shrink on...
June 4, 2008 at 8:14 am
Do a subquery to get your total number of grades per course and divide each grade counts per course (already have) by this to get percentage:
Subquery: SELECT COUNT(Grade)
...
June 3, 2008 at 8:06 am
Someguy (5/28/2008)
May 28, 2008 at 7:35 am
If you do a search on Recovery Models for SQL Server, you should find several good sites that will answer most of your questions.
See following link for shrinking log...
May 20, 2008 at 7:54 am
I have been in my current job for about six months and have been struggling with these very issues. I think both are important, but am not sure one breeds...
May 16, 2008 at 7:40 am
My background is in the physical sciences and many of the people I knew were either serious musicians (myself included) or liked to dabble in it as a hobby. When...
May 15, 2008 at 7:47 am
It looks like you need single quotes around the IN clause: Where Severity in ('Critical'). Without them, SQL Server thinks you're referencing a column name instead of a column value....
May 13, 2008 at 7:40 am
It's a pretty basic environment, no Analysis or Reporting Services, data warehousing, etc..., just DTS. So an in-place upgrade is not possible, just detach/re-attach or backup/restore as you mention?
Thanks for...
May 9, 2008 at 11:55 am
I enabled AWE and set the max memory setting to 3GB. After rebooting, SQL Server is now using 3GB of memory. Thanks for your help!
May 9, 2008 at 7:20 am
The /3GB switch is not in the boot.ini file. It's also not in the other server that is using 3GB of memory.
I did a little more digging and found...
May 8, 2008 at 8:07 am
Viewing 15 posts - 121 through 135 (of 156 total)