Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Administration (2000)
 Backing up to another server

Author  Topic 

pmccann1
Posting Yak Master

107 Posts

Posted - 2006-10-04 : 07:30:28
just wondering can this be done as i am going through enterprise manager and when i try to backup to disk it only shows me drives on the server i am working on

SwePeso
Patron Saint of Lost Yaks

30421 Posts

Posted - 2006-10-04 : 08:10:40
I think you can do it with BACKUP command, not with EM.


Peter Larsson
Helsingborg, Sweden
Go to Top of Page

Kristen
Test

22859 Posts

Posted - 2006-10-04 : 08:24:31
It is generally better to backup to a local disk and then copy the backup file to the remote location - this can all be scheduled of course!

What you should avoid is a backup direct to a remote location which will fail if the network is down etc. If you backup locally first at least you will have the possibility of the local copy if the network is down!

Kristen
Go to Top of Page

pmccann1
Posting Yak Master

107 Posts

Posted - 2006-10-04 : 08:36:48
its just we ahve a problem with space at the moment on the local server thats why we were going to put all backups on another one
Go to Top of Page

Kristen
Test

22859 Posts

Posted - 2006-10-04 : 08:41:36
Yup, I suspected it might be something like that.

I think I would still go down the route I suggested.

Do you have room for one full backup of your biggest database?

If so I would do:

Backup database
Copy to remote location
Check arrived at remote location (i.e. some sort of DIR test)
Delete local copy
Repeat for next database

We have our Database Backups folder set to Compressed. I believe this is not recommended, but FWIW we've been doing it for years without any problem.

There is also a commercial product called something like Litespeed which produces faster backups which are much smaller in size.

Kristen

Kristen
Go to Top of Page

pmccann1
Posting Yak Master

107 Posts

Posted - 2006-10-04 : 08:59:04
nope we ahve run out of room for any back up we are trying to delete some stuff of it but in the mean time i thought this would be the best option, not sure what to do
Go to Top of Page

SwePeso
Patron Saint of Lost Yaks

30421 Posts

Posted - 2006-10-04 : 09:07:59
Maybe you can shrink some databases and/or log files?
That often frees up some gigabytes.


Peter Larsson
Helsingborg, Sweden
Go to Top of Page

Kristen
Test

22859 Posts

Posted - 2006-10-04 : 09:10:14
OK, for short term fix then:

Make a share somewhere else on the LAN

Make sure that the "Lan User" assigned to SQL Agent service has permissions to reach that share.

Set up a scheduled task to backup the "big database" to that share

Remove that database from the Maintenance Plan Wizard (if you are happy that Wizard continues to back up other database)

There are scripts here that will make backups with unique filenames (including date/time), or you can just run it manually for the time being until you have a more permanent solution in place:

http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=55210&SearchTerms=Automating%20Backups,Backup
and
http://weblogs.sqlteam.com/tarad/archive/2004/08/04/1876.aspx

Kristen

Go to Top of Page
   

- Advertisement -