英文:
Restore MSSQL backup file
问题
I receive a file like this from my hosting provider when I downloaded the backup. The file had no extension and was inside a zip file. I want to read the data that is inside this backup or better yet, throw all info in the tables if that's possible. I am afraid everything is gone, hopefully someone knows a way. I am using EntityFrameworkCore so the tables I have back using migration but it's the data that I need.
The file.
英文:
I receive a file like this from my hosting provider when I downloaded the backup.The file had no extention and was inside a zip file. I want to read de data what is inside this backup or better yet throw all info in the tables if that's possble. I am afraid everything is gone, hopefully someone knows a way. I am using EntityFrameworkCore so the tables I have back using migration but it's the data that I need.
The file.
答案1
得分: 1
Your file seems to refer to database_db.mdf
and database_db_log.ldf
. Those info are generally in database_db.bak
files type. Try to add .bak
extension to your file and then in an SQL SERVER instance, restore your database_db
from this file.
英文:
Your file seams to refer to database_db.mdf
and database_db_log.ldf
. Those info are generaly in database_db.bak
files type. Try to add .bak
extension to your file and the in an SQL SERVER instance, restore your database_db
from this file.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论