Viewing 15 posts - 61 through 75 (of 161 total)
Steve Jones - SSC Editor (5/1/2013)
Here's an article on this site discussing the issue: http://www.sqlservercentral.com/articles/Performance+Tuning/adviceoncount/808/
This is a great article, it's amazing what you can forget over time.... 🙂
May 1, 2013 at 1:38 am
The job history cycles, ensure that the retention period is high enough and rows per job is set. This can be tricky if you have loads of jobs on...
April 2, 2013 at 1:16 pm
You could try using a WQL query - something like the following:
Multiply(Divide(ExecuteWql('Numeric', 'root\CIMV2', 'SELECT FreeSpace FROM Win32_LogicalDisk WHERE DeviceID ="D:"'), ExecuteWql('Numeric', 'root\CIMV2', 'SELECT Size FROM Win32_LogicalDisk WHERE DeviceID ="D:"')), 100)
This...
April 2, 2013 at 12:55 pm
GilaMonster (3/28/2013)
Loundy (3/28/2013)
I'm not sure what type of stats update would be necessary here - probably a full scan.
None. Shrinking a DB doesn't affect the stats so there's no...
March 28, 2013 at 3:46 pm
Isn't sysprocess the system table behind sp_who2?
Take a ganders at sp_whoisactive - we use this at my company and shows lots of relevant info 🙂 - safe to use in...
March 28, 2013 at 2:32 pm
select * from table nolock
This will simply alias the table as nolock so when you join to another table, in the ON predicate you can refer to the table as...
March 28, 2013 at 2:22 pm
If you do shrink it then yes rebuilding the indexes and updating stats is a must, but remember it will cause all your queries to recompile. I'm not sure...
March 28, 2013 at 2:18 pm
The only log that gets updated when this error happens is the ReportServerService_xxxxxxxxxxx log
This is what the message looks like:
March 28, 2013 at 2:39 am
There doesn't appear to be anything in the log with verbose logging enabled either...
March 27, 2013 at 12:29 pm
Just found this post which looks like it answers my questions 🙂
January 15, 2013 at 3:40 am
These posts are great for setting things like colours, fonts etc but is it possible to set options to get the report to scale to fit different screens? (i.e removing...
November 20, 2012 at 12:54 pm
does select @@trancount or dbcc opentran work in tempdb?
July 10, 2012 at 9:30 am
Viewing 15 posts - 61 through 75 (of 161 total)