https://github.com/morsdyce/mssql-backup-utility
A MSSQL database backup utility that backs up full and partial to your server hard drive and dropbox account.
https://github.com/morsdyce/mssql-backup-utility
Last synced: about 1 month ago
JSON representation
A MSSQL database backup utility that backs up full and partial to your server hard drive and dropbox account.
- Host: GitHub
- URL: https://github.com/morsdyce/mssql-backup-utility
- Owner: morsdyce
- Created: 2012-04-21T12:51:04.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2012-04-21T16:53:35.000Z (about 13 years ago)
- Last Synced: 2025-01-24T09:41:38.967Z (3 months ago)
- Language: C#
- Size: 352 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
MSSQL-Backup-Utility
====================A MSSQL database backup utility that backs up full and partial to your server hard drive and dropbox account.
Parameters
----------?, h, help, -help - Displays the help file
-d, -directory - (Required) Set the directory where the backup files will be saved
-t, -type - (Required) Set the type of backup, must be either Full or Diffrential
-c, -connection - (Optional) Sets the connection string to the SQL Server (you may include username and password here) Defaults to: Server=(local)\SQLEXPRESS; Integrated Security=SSPI
-i, -ignore - (Optional) Adds databases that you do not wish to backup at this point, if not specified all databases on the server excluding the system databases will be backed up. You must input this parameter separated by commas such as DB1,DB2,DB3