What is a simple command line program or script to backup SQL server databases?

后端 未结 11 902
北海茫月
北海茫月 2020-11-28 19:35

I\'ve been too lax with performing DB backups on our internal servers.

Is there a simple command line program that I can use to backup certain databases in SQL Serv

11条回答
  •  粉色の甜心
    2020-11-28 19:39

    I use ExpressMaint.

    To backup all user databases I do for example:

    C:\>ExpressMaint.exe -S (local)\sqlexpress -D ALL_USER -T DB -BU HOURS -BV 1 -B c:\backupdir\ -DS
    

提交回复
热议问题