Viewing 15 posts - 631 through 645 (of 691 total)
The copy database wizard (along with most enterprise manager functions) use sql scripts behind the scenes. If those jobs didn't get migrated, while others did, it is probably due to...
April 9, 2004 at 2:33 pm
Another possibility -
You said that the jobs which contain T-SQL were the ones that failed. If the T-SQL contains any literal quotes (ie. 'dbname') that could throw script generation...
April 9, 2004 at 8:55 am
I'm sure someone will come up with a more elegant solution, but, here's one...
create table #orig_table (document char(3))
create table #temp_table (#seq int identity(800,1), #document varchar(6))
insert #orig_table values ('AAA')
insert #orig_table values...
April 5, 2004 at 3:48 pm
Here's the other method - the one that I chose to use:
1) Script security and configuration.
2) Backup master, msdb, and model
3)
March 26, 2004 at 5:40 pm
Gary,
Better option would be to change the startup options for the location of the master database files from enterprise manager BEFORE shutting down and moving the files. Then shut it...
March 26, 2004 at 5:36 pm
Interesting. I just did this last weekend. I had 2 possible ways of accomplishing it. The first way was similar to what you are trying. Its a long drawn out...
March 26, 2004 at 2:38 pm
Hey, Mattie,
At some point, none of us knew ANYTHING about it!
Steve
March 26, 2004 at 2:30 pm
Randyv,
Just to pose another possible scenario for you...
Set up jobs to do a once a day full backup, and a transaction log backup every 4 hours. (Eliminate the differentials altogether). ...
March 26, 2004 at 2:26 pm
Umm, if you're not bothering with transaction log backups, then your recovery model should be simple. In this case there will be no committed transactions in the log to look...
March 26, 2004 at 2:10 pm
Antares686,
Its not necessary to apply all differential backups, only the most recent.
Joe,
You must apply your full database backup with no recovery first.
Then immediately apply your most recent differential backup. If...
March 25, 2004 at 8:11 am
Steve,
Thank you! That works! Still don't understand why xp_dirtree doesn't, but this will get me going again!
Thanks, again!
Steve
March 23, 2004 at 10:39 am
yumfin and shew01,
Thanks, but in this particular situation, the drive letters will be changing. I was pretty comfortable with the move, until I saw that document on how to move...
March 19, 2004 at 2:40 pm
Fhanlon,
Thank you for your response! The log situation is exactly what I wanted to hear! The full text catalogs look like a NIGHTMARE! I hope SQL 2005 addresses this!
Thanks, again
Steve
March 18, 2004 at 12:49 pm
I'm sorry. I glanced through to make sure no "special" procedures were being called, and I missed it. sp_helprotect doesn't do functions. I have modified the code so that it DOES...
March 18, 2004 at 11:57 am
This one puts the output into SQL commands that you can cut and paste into a new query and execute.
-- af_revPermissions
-- Verify existence of af_revPermissions procedure. If it does exist,...
March 18, 2004 at 10:44 am
Viewing 15 posts - 631 through 645 (of 691 total)