0

I have a BKS file that is around 20GB. How do I extract the MSSQL files from that?

Thanks

ServerDown
  • 372
  • 1
  • 2
  • 9

3 Answers3

0

If the backup was created using ntbackup, you'd need to restore all or selected files from it using the Backup and Restore Wizard. If you trying to determine which files to restore, the SQL databases typically live in files with file extensions of MDF, LDF and NDF though that's not a requirement.

I'm not sure if ntbackup guarantees database consistency when doing backups, so it's possible the database would not restore cleanly.

SqlACID
  • 2,176
  • 18
  • 18
  • Thanks SqlACID. But I cant use the BKS file in the restore. the ntbackup only allows the BKF file to be selected for restoring. Any other way to extract data from BKS files? – ServerDown Jun 04 '10 at 17:06
0

I wonder if the backup was accidentally saved as a BKS file? A "real" BKS file would open in Notepad and be readable. You could try to open the file in Notepad and if it is human-readable, it doesn't contain your data. Else, you could change the extension to BKF and see if NTBackup will restore it.

Brian Knight
  • 1,175
  • 2
  • 8
  • 17
0

It was actually a BAK file. Just run the standard restore database and point to the bks file.

ServerDown
  • 372
  • 1
  • 2
  • 9