Forum Replies Created

Viewing 15 posts - 181 through 195 (of 197 total)

  • RE: Opportunities are less for SQL DBAs.?

    I just made it through the last of the sub-prime melt down in Southern California. At our peak, we had 9 DBA's on staff, 4 focused on production, and 5...

  • RE: SQL 2005 SP3 Upgrade problem

    You've definitely got different versions of the database instance patched, one to SP2 with a hot fix and the other to SP3. Have you tried failing over to the SP2...

  • RE: Row Locking Issue

    If you place the select and update from the control table in a separate transaction (let's say it returns 1001 and updates the next value to 1002) and commit that...

  • RE: Row Locking Issue

    It sounds like your control table is a bottleneck in the application design as each connection has to wait for the previous select and update to complete before it can...

  • RE: SQL 2005 SP3 Upgrade problem

    Ok, it looks like I need more information to assist with this. What clustering solution are you using? In Windows clustering, patching the database instance should patch all of the...

  • RE: SQL 2005 SP3 Upgrade problem

    You need to patch the client tools on the other node. When you run SP3, it patches the database engine and the client tools on the node that you run...

  • RE: installing SSMS on SQL 2005 SP3 A/P Cluster

    I ran into the same issue on a Windows clustered environment. When you apply SP3, it patches the database engine and the client tools for whatever node that you're running...

  • RE: Moving table from one filegroup to another filegroup

    I've always made it a practice to separate table and index data into separate filegroups and therefore separate files. After all, isn't that the only way you can place a...

  • RE: How do I combine multiple transaction logs for one database?

    You should be able to use the EMPTYFILE clause of the DBCC SHRINKFILE command to move the contents of the second file into the first file. Once that's done, you...

  • RE: File Fragmentation of MDF File

    I've never found a good online solution and always shut down the SQL server and run the disk defrag utility. As already stated, configure a reasonable autogrowth setting based on...

  • RE: Best Autogrowth/AutoShrink Practise for TempDB

    Refer to this white paper: http://technet.microsoft.com/en-us/library/cc966545.aspx

    Essentially, you never want to enable auto shrink but use auto-grow as an emergency just in case. You should try to configure tempdb...

  • RE: Is this Maintenance plan ok?

    Your best bet is to use an existing index rebuild script that checks the fragmentation levels of the indexes and only rebuilds ones that are fragmented more than a specific...

  • RE: Schema rename

    I believe you need to create the new schema and then transfer the object ownership of all existings objects to it. You can look up ALTER SCHEMA in books on...

  • RE: Restart Replication

    There's not a lot of detail in your problem description, but you should probably look at configuring some replication alerts to notify you whenever a failure occurs.

    The following links might...

  • RE: How to find the Creator of an Agent Job

    You can run this, but it will only tell you the current owner of the job, not who created it. If that person authenticated with Windows credentials when creating it,...

Viewing 15 posts - 181 through 195 (of 197 total)