Viewing 15 posts - 2,431 through 2,445 (of 2,897 total)
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
I always use a Windows domain account with SQL Admin rights for replication, not a SQL account. If you use a SQL account, you may have to make sure the name...
November 15, 2006 at 9:47 am
I agree. This is not a job for replication. The maintenance of replication will be a nightmare if you are making database schema changes on your source server (publisher).
November 14, 2006 at 9:39 am
I'm trying to come up with a secure way to write down my passwords to avoid these emergencies. Something along the lines of saving a list of just passwords somewhere,...
November 10, 2006 at 8:53 am
Viewing 15 posts - 2,431 through 2,445 (of 2,897 total)