Viewing 8 posts - 1 through 8 (of 8 total)
456789psw (9/20/2010)
you should run profiler and capture all the other instances at the same time....that way you can run one trace....save...
September 20, 2010 at 5:09 pm
456789psw (9/17/2010)
September 20, 2010 at 3:24 pm
456789psw (9/18/2010)
September 18, 2010 at 8:10 am
Mandar Alawani (9/17/2010)
select object_name,counter_name, cntr_value 'Memory Used Size (KB)'
FROM
Sys.dm_os_performance_counters
where object_name like '%SQLServer:Memory Manager%'
also you can add the same performance counters in PERFMON
also, i have a smal...
September 17, 2010 at 7:24 pm
The reason for multiple instances is because the application is only capable of calling multiple DB paths, not multiple database names. If we had to deal with multiple DB...
September 17, 2010 at 7:14 pm
Yeah looks like I read that page wrong. Sorry for the confusion.
However I'm not detaching the DB's when I move them, I'm simply taking them offline. I'm really...
January 27, 2010 at 2:32 pm
Andrew thank you for looking. I was under the impression that the sp_detach_db was being deprecated and should no longer be used.
http://weblogs.sqlteam.com/dang/archive/2009/01/18/Dont-Use-sp_attach_db.aspx
Essentially I need the DB files...
January 27, 2010 at 10:50 am
I wrote this and thought I might share as I have had a need for something similar.
USE master
/* Mixed Authenication script SR 01-14-10, can update SQL authentication for instances.
works with...
January 15, 2010 at 12:01 pm
Viewing 8 posts - 1 through 8 (of 8 total)