How to restore database using sqb files in SQL SERVER

前端 未结 4 616
北恋
北恋 2021-02-01 04:19

I have a file with sqb extension(e.g: clark.sqb),how should i to restore database using the sqb file.thanks!

4条回答
  •  离开以前
    2021-02-01 04:47

    SQB files are created using RedGate's SQL Backup Tool. They supply a command line tool called sqb2mtf that can be used to convert to a native SQL backup that can then be easily restored.

    • CMD line tool: http://downloads.red-gate.com/labs/sqb2mtf.zip
    • usage: sqb2mtf inputfile outputfile [password]
    • e.g. sqb2mtf "d:\backups\pubs.sqb" "e:\data\pubs.bak"

提交回复
热议问题