Forum Replies Created

Viewing 15 posts - 3,106 through 3,120 (of 4,745 total)

  • RE: Drive Read write Rates, I/O monitoring

    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...

  • RE: data sapce issue

    arr.nagaraj (12/30/2009)


    ALTER Database is a cleaner option for the reasons provided by Jonathan.

    gotta ask........who's jonathan?

  • RE: data sapce issue

    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...

  • RE: Killing sleeping processes

    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...

  • RE: Service Pack 4

    Jeff Moden (12/27/2009)


    I guess I don't understand the supposed dilema here... if Cumulative Updates really are cumulative and include all fixes since the last service pack, isn't that just as...

  • RE: How to suspend replication ?

    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...

  • RE: basic sql

    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...

  • RE: SQLIO - IOs/sec and Block Size Questions

    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...

  • RE: SQL Server 2000 - Redundancy via Replication

    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...

  • RE: SQL Server 2000 - Redundancy via Replication

    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...

  • RE: SQLIO - IOs/sec and Block Size Questions

    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...

  • RE: Table Names that store DTS Package Info

    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...

  • RE: Can I reduce the inital log file size in SQL 2005

    run

    dbcc sqlperf(logspace)

    and post result for relevant database

    whilst in database run

    dbcc opentran

    and post result

  • RE: Can I reduce the inital log file size in SQL 2005

    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...

  • RE: blocking

    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...

Viewing 15 posts - 3,106 through 3,120 (of 4,745 total)