| Author |
Message |
HJoyce
Joined: 10 Oct 2005 Posts: 183
|
Posted: Wed May 16, 2007 10:04 am Post subject: SQL Backup to MTF Converter - new user interface available |
|
|
If you use the sqb2mft.exe command line utility to convert SQL Backup files into native SQL Server (MTF) backup files, then you may be interested to know that there is now a user interface.
See SQL Backup to MTF Converter on the Red Gate Labs |
|
| Back to top |
|
 |
fatherjack
Joined: 13 Mar 2007 Posts: 224 Location: Cornwall
|
Posted: Tue Apr 01, 2008 4:19 pm Post subject: |
|
|
Hi,
does the sqb2mft.exe require SQL Backup to be installed to convert the sqb files or can i simply run this exe on my DR server and then use SSMS to restore the database if i have to handle an emergency?
thanks |
|
| Back to top |
|
 |
HJoyce
Joined: 10 Oct 2005 Posts: 183
|
Posted: Tue Apr 01, 2008 4:43 pm Post subject: |
|
|
Yes, you can run this without a license and without SQL Backup being installed.
Yes, you can use it to convert the backup file to the native SQL Server format so you can then restore it using SSMS. |
|
| Back to top |
|
 |
fatherjack
Joined: 13 Mar 2007 Posts: 224 Location: Cornwall
|
Posted: Wed Apr 02, 2008 10:00 am Post subject: Brilliant |
|
|
Thanks very much for that information. It means we can get on with recovery our databases without having to get tied up with SQL Backup installations and license transfers.
I have tried the exe and it has produced 3 .bak files for one .sqb file, is that because i used 3 threads in the backup job?
thanks again
 |
|
| Back to top |
|
 |
Brian Donahue
Joined: 23 Aug 2004 Posts: 6369 Location: Red Gate Software
|
Posted: Wed Apr 02, 2008 10:55 am Post subject: |
|
|
Hi,
I think so. SQL Server does not support multithreaded backups natively, it's a feature of SQL Backup. If you wanted to restore a multithreaded backup in SQL Server, you would need to specify all three files to the RESTORE command, for instance RESTORE DATABASE MyDb from disk='x.bak', disk='y.bak',disk='z.bak'... _________________ Brian Donahue
Technical Support
Red Gate Software Ltd.
44 (0)870 160 0037 ext 8521
US and CAN 1-866-RED GATE ext 8521 |
|
| Back to top |
|
 |
fatherjack
Joined: 13 Mar 2007 Posts: 224 Location: Cornwall
|
Posted: Wed Apr 02, 2008 12:08 pm Post subject: |
|
|
Brian,
i got the restore to work from the multiple .bak files without any issues, i was just wondering why i got 3 and guessed it might be linked to the thread count used on the SQL Backup.
thanks |
|
| Back to top |
|
 |
petey
Joined: 24 Apr 2005 Posts: 2219
|
Posted: Fri Apr 04, 2008 2:40 am Post subject: |
|
|
Just to clarify, when you perform a backup using the THREADCOUNT option, the backup is internally performed using 'multiple DISK options' as done for native SQL Server backups, but instead of writing the output to multiple files, SQL Backup consolidates the data and writes it out to a single file.
That is why when you converted the SQL Backup file to native format, 3 files were generated as what is what SQL Server requires in order to perform the restore. _________________ Peter Yeoh
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 7 |
|
| Back to top |
|
 |
Melba2010
Joined: 28 Dec 2010 Posts: 1
|
Posted: Tue Dec 28, 2010 5:52 am Post subject: |
|
|
SQL backup programs allow you to write mirrored files and it will place the copies in multiple locations. While it might seem redundant to save things in more than one place, you won't feel that way if disaster hits and it effects your backup copies. So you know, it is possible for backups to become damaged or some won't work when you need them the most. This is why it is helpful to save files and databases in a variety of places.
esxibackups like that |
|
| Back to top |
|
 |
mySunSet
Joined: 23 Sep 2011 Posts: 2
|
Posted: Fri Sep 23, 2011 9:14 am Post subject: |
|
|
| The SQL Server master database does not support log backups. Only full backups can be performed on the master database. |
|
| Back to top |
|
 |
|