Forum Replies Created

Viewing 15 posts - 2,071 through 2,085 (of 2,897 total)

  • RE: Move clustered PK without breaking replication

    zach_john (11/14/2008)


    Thanks man, trying to avoid touching replication.

    Would it make a difference if it the PK wasn't a cluster index?

    I dunno

  • RE: Implementing Clustered Indexes After the Fact on Huge Tables

    I've been looking at some of the queries, and many of them join on RWA_ID which is an application wide field used as a primary key, but not actually specified...

  • RE: Move clustered PK without breaking replication

    I used to do something like:

    Script out the "Drop publication" command

    Script out the "create publication" command

    Run just the part of the drop having to do with your table to remove...

  • RE: DR Strategy with virtual machines?

    Ninja's_RGR'us (11/13/2008)


    If there's only 1 VM setup on the server, no competing software whatsoever, is there any noticable performance degradation (anything above let's say 5-10%)?

    That what we'll be doing for...

  • RE: Data Refresh

    Greg is correct. Take a backup of FLB_UAT before you do the data refresh. You need to hold onto the 10-31 production backup and not let it get automatically deleted...

  • RE: DR Strategy with virtual machines?

    Ninja's_RGR'us (11/13/2008)


    Hi, I'm with a client today and he asked me if we could use a virtual machine for the sql server. The intent here is that if case...

  • RE: sa account

    steveb (11/13/2008)


    Change the password, if anyone is using it (they shouldn't be) then I am sure they will make themselves known fairly quickly

    Not a good idea in a...

  • RE: Monitoring DBs

    Idera's Diagnostic Manager has a lot of useful features. i used it at my last place to track down long running queries and a whole pile of statistics for troubleshooting....

  • RE: Why Shrink DB is bad?

    Mike Levan (11/12/2008)


    Many DBa's say that shrinking is a bad idea, but that is what we do to gain disk space every time.

    is there any alternative we can do for...

  • RE: Secondary Backup / Restore Strategy

    Phil Auer (11/12/2008)


    I am looking at third party backup solutions specifically to get backup file compression. I'm pretty sure I can't run concurrent transaction log backup schemes because the...

  • RE: SQL Server 2005 Full Database Backup

    Sounds like it's going to a backup device with "append" instead of "overwrite".

    I prefer creating indiviual .BAK files and keeping a few days worth on hand in case they're needed.

  • RE: Backup at anytime

    Most people try to take full backups during off hours. This minimizes impact on users and gives a clean point in time to begin a restore if needed. Then take...

  • RE: Comparing data between servers

    yulichka (11/12/2008)


    Thank you for your help, I don't have mobile users. I would need to compare two servers staging and production, if there is any changes with data in production,...

  • RE: Comparing data between servers

    Redgate makes tools to compare the databases, but I don't know if it will also apply the changes. How about using replication to keep them in sync ?

  • RE: QUERY: GET HISTORY of JOBS on a specific DATE

    [font="Courier New"]SELECT Job.[name], Hst.[sql_message_id], Hst.[message] , Hst.[run_date], Hst.[run_time], run_duration

    FROM [msdb].dbo.sysjobhistory Hst

    INNER JOIN [msdb].dbo.sysjobs Job ON Hst.[job_id] = Job.[job_id]

    where convert(varchar(8), GETDATE()-1,112)= Hst.[run_date]

    and name not...

Viewing 15 posts - 2,071 through 2,085 (of 2,897 total)