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)
 sqlserver 2000 database backup

Author  Topic 

sqldba2k6
Posting Yak Master

176 Posts

Posted - 2006-08-31 : 13:40:42
I am new to sqlserver.
Can any one suggest me how to do backups.
Or any related sites..

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2006-08-31 : 13:45:13
Here's one example:

BACKUP DATABASE DBNameGoesHere
FROM DISK = 'C:\MSSQL\BACKUP\SomeBackupFile.BAK'
WITH INIT

Check BACKUP command in SQL Server Books Online for more details.

Tara Kizer
Go to Top of Page

sqldba2k6
Posting Yak Master

176 Posts

Posted - 2006-08-31 : 13:46:16
Thanks Tara
Go to Top of Page
   

- Advertisement -