Viewing 15 posts - 2,431 through 2,445 (of 2,900 total)
" ... 1. For each table, insert the data, to be deleted, into a corresponding "purged" table, to remain there for one day only. ..."
In this step, your "purged" table...
March 12, 2007 at 8:25 pm
We do something similar when we do large updates or purges. We store them in another DB that is simple recovery, rather than clutter up production.
March 12, 2007 at 7:48 am
Maddogs .... Yes, I'm a homebrewer, although I haven't done much lately. We have a good homebrew club here in SW Connecticut. I switched to full mash & good yeast...
February 22, 2007 at 1:35 pm
Thanks for the replies !! You guys were spot on, even though you didn't see the code ! The recompile did not seem to help, not did the UNION ALL. ...
February 22, 2007 at 10:10 am
SG: WinRar is shareware (I think). After your regular SQL backup, you would "RAR" your .BAK file instead of trying to "ZIP" it, because ZIP can only handle "small" files.
January 30, 2007 at 2:56 pm
I don't understand what the anit-stored procedure argument is ! Some issues can be argued one way or another, and both have merits. But what are the merits of not...
January 22, 2007 at 1:23 pm
Display an Execution Plan for the SP to look for code that needs optimizing ( ie table scans ...)
January 17, 2007 at 2:37 pm
You could first load into a staging table that allows null, then in your DTS have a 2nd step that does:
INSERT INTO REAL_TABLE SELECT * FROM STAGING_TABLE where COLUMN1 is not...
January 17, 2007 at 2:30 pm
I don't check that deeply. I make sure it suceeded, no errors, data is fully accessible, connections work .... etc ...
January 12, 2007 at 12:22 pm
Yes. You backup your database "PRODUCTION_DB" and then do a restore, and in the TO DATABASE box you put the new DB name "PRACTICE_RESTORE"
January 12, 2007 at 11:09 am
It could be initiated from another server. For instance, a utility server running a reindex job, setting the DB to simple first to avoid huge t-log growth, but forgetting to...
January 12, 2007 at 10:59 am
Replace did the trick. Thanks to both of you !
December 6, 2006 at 12:21 pm
We just did it a couple of weekends ago. "Piece of cake" You just use the Enterprise Installer, and select the upgrade option. I think it was a grand total...
November 21, 2006 at 2:35 pm
Viewing 15 posts - 2,431 through 2,445 (of 2,900 total)