Viewing 15 posts - 1 through 15 (of 22 total)
Thanks for your reply. isnull() is much bette than my case statement. Should have used that in the first place : ) (The developer used integer rather...
July 13, 2009 at 2:17 pm
Got a similar question here. In my organization, we run sql server database engine and sql server analysis services in different boxes. How do I use sql server agent...
July 17, 2008 at 7:49 am
Ahmed Bouzamondo (6/25/2008)
Try to use the following queries
select * from sysperfinfo --SQL Server 2000-2005
or
select * from sys.dm_os_performance_counters -- SQL Server 2005
Check the following link http://msdn.microsoft.com/en-us/library/ms187743.aspx
If the installation instance of your...
June 25, 2008 at 2:22 pm
Mani Singh (6/25/2008)
did the admin did a HOT INSTALL for the memory(ONLINE), or did he Shutdown the box...
June 25, 2008 at 2:18 pm
Yeah, basically everything supplied by sql server. Other OS counters are fine such as Memory:Available MBytes, Processor:%Processor time.
For SQL, 0 is what I get fro the values:
Buffer cache hit...
June 25, 2008 at 12:30 pm
June 25, 2008 at 10:10 am
Try use sys.databases instead of sys.sysdatabases. sys.databases gives you so much more information.
check the state and statedesc columns in sys.databases.
However, this will not help you with figuring out...
June 24, 2008 at 7:56 am
Could you please provide more information on how to analyse the data? Especially DBCC sqlperf(umsstats) itself?
Also when I run
dbcc sqlperf(umsstats) with tableresults, no_infomsgs
I got the following:
One or more...
June 20, 2008 at 4:18 pm
Would create a server level DDL Trigger be an option?
DDL_SERVER_LEVEL_EVENTS
http://msdn.microsoft.com/en-us/library/ms186582.aspx
I've created a server level trigger to catch people adding Logins. I catch it and then send myself/group...
June 20, 2008 at 3:57 pm
If I'm understanding you correctly, you are asking if you could install a sql server instance called serverB on a physical server called serverA. However, when you make a...
June 20, 2008 at 3:37 pm
Thanks for the recommendation.
Batches/Sec number is much higher than Transactions.
I just downoaded your ebooks by the way. Awesome work!
June 20, 2008 at 3:25 pm
We have similar set ups on site. Jeffery is right, clustered or not, the backup configuration is the same.:cool:
June 20, 2008 at 1:12 pm
Checkout the dynamic management views such as select * from sys.dm_os_performance_counters
http://msdn.microsoft.com/en-us/library/ms176083.aspx
so far, I have not found Availabele MB in any of the views.
June 12, 2008 at 9:46 am
if you are using powershell, you could write a script to check available memory(MB) metric (system.diagnostics.performancecounters()). If it is greater than a threshold, send you and your team an...
June 12, 2008 at 8:47 am
1. Make sure you are on sp2. I see no reason not to upgrade at this point.
2. For the file extension, use "bak" instead of ".bak". I've run...
June 11, 2008 at 12:16 pm
Viewing 15 posts - 1 through 15 (of 22 total)