Viewing 15 posts - 16 through 30 (of 87 total)
Hmmm that's not what we've been told here by Microsoft. I'll have to wait for our MS guy to get back from vacation, but I'll certainly be asking him...
August 4, 2010 at 3:26 pm
You should not update stats on everything as that puts an unecessary load on the database server. Instead you should use sp_updatestats which makes a decision on what needs...
August 4, 2010 at 11:57 am
How are you running update stats? Are you doing everything each time or are you running sp_updatestats instead?
August 3, 2010 at 4:42 pm
You can only derive the information from the CPU column. It doesn't provide a percentage.
What you can do to derive the percentage is calculate the entire CPU...
July 22, 2010 at 3:44 pm
Dbid 2 is tempdb. You should run DBCC CHECKDB on each of the databases and also run hardware diagnostics with special attention on your disks.
July 21, 2010 at 11:28 pm
See this: http://weblogs.sqlteam.com/tarad/archive/2007/11/08/60394.aspx
You should not be truncating the transaction log. You should either be backing up your transaction log frequently, such as every 15 minutes, or switching...
July 21, 2010 at 11:25 pm
To add a header to bcp, you'd have to use a view instead: http://www.dbforums.com/microsoft-sql-server/989335-bcp-out-headers.html
The view method is not elegant, and makes the code hard to read as you...
July 21, 2010 at 2:48 pm
It seems the database server is unable to connect to TORDBDO1. Are you sure that's the proper name? Is there perhaps an instance you should reference? Perhaps...
July 20, 2010 at 11:01 pm
You have to tell it how to connect to the database server, either Windows authentication or SQL authentication. With Windows authentication, you simply use -T. With SQL authentication,...
July 20, 2010 at 4:45 pm
EM would be correct, assuming you've got a refreshed view of it.
I'm a little confused though. Is the user that you are testing with the same user...
July 20, 2010 at 4:25 pm
Somebody removed the permission, either by accident or on purpose.
July 20, 2010 at 4:19 pm
Yes I have on 2000 or 2005 (can't remember which one as it was a couple of years ago). The user ended up rebooting and then it worked. ...
July 20, 2010 at 3:07 pm
We use batch requests per second in PerfMon. On our busiest system, we have 1500-3000 batches per second occurring 24/7.
July 20, 2010 at 11:03 am
You can use the STATS_DATE function to determine the last time the statistics were updated.
You should also check out sp_updatestats. The benefit of it, starting with 2005, is that...
July 20, 2010 at 11:03 am
Rebuilding/reorganizing does not shrink the files, only DBCC SHRINKFILE and DBCC SHRINKDATABASE can do that. But please note that if you shrink your files down, you are actually causing...
July 20, 2010 at 10:59 am
Viewing 15 posts - 16 through 30 (of 87 total)