How to back up a Microsoft Data Engine database by using Transact-SQL This article was written about products for which Microsoft no longer offers support. Therefore, this article is offered "as is" and will no longer be updated.
This article was previously published under Q241397 SUMMARY
SQL Client Tools are not part of the Microsoft Data Engine (MSDE) installation. Therefore, to back up an MSDE database, you can use the Transact-SQL BACKUP DATABASE statement, which is discussed in this article.
MORE INFORMATION
If you have Microsoft Access 2000, you can use the BACKUP command in the Database Utilities menu of an Access project to back up an MSDE database. If SQL Client Tools are installed, you can use SQL Enterprise Manager to back up an MSDE database. However, if you only have MSDE installed, you do not have these options. Therefore, to back up an MSDE database, you can use the Transact-SQL BACKUP DATABASE statement, and run Osql.exe (a command line Query tool). For information about all of the stored procedures used in this article, see SQL Server Books Online. Note The following code is an example of how to use the various stored procedures with MSDE to perform a backup. This code does not back up your mission critical database "as is" and might require some modification to run in your environment. For example, database name, server name, and so forth.
If you do not want to create a backup job or a scheduled backup, you can run the BACKUP DATABASE (or BACKUP LOG) statement with osql directly from the command line. If you use the -Q argument, osql runs the Transact-SQL statement, and then exits. For example:
Because there are many other options you might want to specify with the BACKUP DATABASE statement, see SQL Server Books Online for more details:http://download.microsoft.com/download/SQL70/File/2/Win98/En-US/sqlbol.exe (http://download.microsoft.com/download/sql70/file/2/win98/en-us/sqlbol.exe) REFERENCES
To download an updated version of SQL Server 2000 Books Online, visit the following Microsoft Web site:
http://technet.microsoft.com/en-us/sqlserver/bb331756.aspx (http://technet.microsoft.com/en-us/sqlserver/bb331756.aspx)
To download the Microsoft SQL Server 7.0 Books Online version, visit the following Microsoft Web site:
http://download.microsoft.com/download/SQL70/File/2/Win98/En-US/SQLBOL.exe (http://download.microsoft.com/download/sql70/file/2/win98/en-us/sqlbol.exe)
SQL Server Books Online: topics: "Database Backups"; "sp_add_job"; "sp_add_jobstep"; "sp_add_jobserver"; "sp_start_job"; "sp_add_jobschedule";
"sp_delete_jobschedule"; "sp_delete_job"
| Article Translations
|


Back to the top
