Viewing 15 posts - 2,251 through 2,265 (of 2,900 total)
I haven't been on 2000 in a little while, but I think you can script out all the objects from your production database to a single .SQL file. Then create...
August 26, 2008 at 6:30 pm
Rather ironic that the OnlineExam database didn't get backed up.
Going forward, you can run something like this to identify databases that have not been backed up recently:
select * from master..sysdatabases...
August 26, 2008 at 6:24 pm
jchen (8/25/2008)
August 25, 2008 at 3:15 pm
jchen (8/25/2008)
Thank you,
PS:
The job...
August 25, 2008 at 3:11 pm
jchen (8/25/2008)
If you said SQL subfolders is a better place to post my questions, can you tell how to get therer?Thanks,
JChen
Go here:
http://www.sqlservercentral.com/Forums/
Then post in the most appropriate section ... ie,...
August 25, 2008 at 3:06 pm
When I used replication across domains, I created a Windows account on each server with the same name & same password.
August 25, 2008 at 8:22 am
I had a similar problem. I loaded Windows XP pro on my laptop instead, then installed SQL 2005 developer edition.
August 23, 2008 at 9:58 am
This sounds a bit like a generic homework assignment ..... so here's a generic answer
1) Copy records older than 6 months into archive tables.
insert into Archive_table select * from Prod_table
where...
August 22, 2008 at 6:31 pm
Adam Bean (8/22/2008)
sayfrend (8/22/2008)
I guessed its because of DTS packages... Its really wierd though, it means when ever you are working on DTS packages you cannot use SSMS...
August 22, 2008 at 8:31 am
Are you running a maint plan that deletes the previous backup ?? If so, then the space problem is caused by the fact that the old backup is not...
August 22, 2008 at 7:24 am
Even though you can't browse to the path to select it, you can use Copy-Paste to enter the path you want.
August 22, 2008 at 7:15 am
Could you just add a DOS copy command as the next step in your backup procedure ?? I used to do something similar.
August 22, 2008 at 7:13 am
Legacy DTS does cause some odd behaviour when it's open. I've experienced problems similar to yours, but they clear up when I close DTS.
August 22, 2008 at 7:09 am
I just used a regular .BAT file executed in a Scheduled SQL Job.
Step 1, Backup the DB.
Step 2, Copy the .BAK to another location. Either using...
June 18, 2008 at 2:45 pm
Wasn't there a problem with the Maint Plan Cleanup Task not working correctly ?? I think I heard that SP2 fixes that.
June 18, 2008 at 2:36 pm
Viewing 15 posts - 2,251 through 2,265 (of 2,900 total)