Viewing 15 posts - 3,106 through 3,120 (of 4,745 total)
If you are looking to spread around your data and log files for multiple databases then you will want to drill down further and get read and write figures for...
January 3, 2010 at 2:35 pm
arr.nagaraj (12/30/2009)
ALTER Database is a cleaner option for the reasons provided by Jonathan.
gotta ask........who's jonathan?
December 31, 2009 at 3:33 am
preventative steps - ensure no connections to database then backup the database
Use the alter database modify file method to move the file, preserves dbowner, dbid and default database settings for...
December 30, 2009 at 5:40 pm
Using the last_batch column in sys.sysprocesses is one way to go here, looking for any connections that have not executed SQL for a time that you would consider means the...
December 30, 2009 at 5:32 pm
Jeff Moden (12/27/2009)
December 27, 2009 at 12:12 pm
There's not that many, the log reader agent and the distribution agent should be disabled. Snapshot as well if you have that enabled. Keep an eye on log growth whilst...
December 25, 2009 at 3:03 pm
This web site, sql-server-performance.com. explore microsoft technet, use google.com/microsoft to search and refer to Books Online, which you can download from technet.
Get hold of SQL Express or the developer edition...
December 25, 2009 at 9:39 am
You should get mostly 64K read and writes on your data drive. Activity such as db backups can be in larger chunks.
activity on log drives would be mostly 4K sequential...
December 23, 2009 at 4:52 pm
the 'product' is MSCS - Microsoft clustering services, which is at the Os level. You install SQL server on top of that. It allows a physical server to act as...
December 23, 2009 at 4:44 pm
Thats a big question with no easy answer. Two things I would say though, I wouldn't want to start from where you are and replication would be my last choice...
December 23, 2009 at 4:00 pm
To cover the first part of your question SQL retrieves data in extents, which are 64K. This is why it is best to format your data drives with a blocksize...
December 23, 2009 at 3:21 pm
DTS info are all in tables starting sysdts%
select name from msdb..sysobjects where name like 'sysdts%' and type = 'U'
job info they all start sysjobs%
select name from msdb..sysobjects where name like...
December 23, 2009 at 7:08 am
run
dbcc sqlperf(logspace)
and post result for relevant database
whilst in database run
dbcc opentran
and post result
December 22, 2009 at 3:53 pm
Impact of shrinking log file can be minimal if you do it immediately after a log backup or when the log has a small active portion. Still good practice to...
December 22, 2009 at 3:46 pm
there should be a number of scripts on this site designed to monitor for blocking, many actively monitor for blocks of a certain length and fire off code to store...
December 22, 2009 at 12:58 pm
Viewing 15 posts - 3,106 through 3,120 (of 4,745 total)