Viewing 15 posts - 2,071 through 2,085 (of 2,897 total)
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
November 14, 2008 at 8:04 am
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...
November 14, 2008 at 7:59 am
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...
November 13, 2008 at 8:47 pm
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...
November 13, 2008 at 8:41 pm
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...
November 13, 2008 at 3:30 pm
Ninja's_RGR'us (11/13/2008)
November 13, 2008 at 3:08 pm
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...
November 13, 2008 at 11:27 am
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....
November 12, 2008 at 9:59 am
Mike Levan (11/12/2008)
is there any alternative we can do for...
November 12, 2008 at 9:14 am
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...
November 12, 2008 at 8:10 am
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.
November 12, 2008 at 7:56 am
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...
November 12, 2008 at 7:54 am
yulichka (11/12/2008)
November 12, 2008 at 7:46 am
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 ?
November 11, 2008 at 12:04 pm
[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...
November 11, 2008 at 11:22 am
Viewing 15 posts - 2,071 through 2,085 (of 2,897 total)