vote up 0 vote down star

hi,

i have a file with .bak extension.

how can i import this date to a database in SQL Server.

is any one have an idea.please share it with me.

thanks

flag

3 Answers

vote up 1 vote down

.bak files are database backups. You can restore the backup with the method below:

How to: Restore a Database Backup (SQL Server Management Studio)

link|flag
vote up 1 vote down
RESTORE FILELISTONLY 
FROM DISK = 'D:\3.0 Databases\DB.bak' 

RESTORE DATABASE YourDB
FROM DISK = 'D:\3.0 Databases\DB.bak'

and you have to move appropriate mdf,ndf & ldf files using

 With Move 'primarydatafilename' To 'D:\DB\data.mdf', 
 Move 'secondarydatafile'To 'D:\DB\data1.ndf', 
 Move 'logfilename' To 'D:\DB\log.ldf'

Cheers

Ramesh vel

link|flag
vote up 0 vote down

I am assuming your using mssql, here is a thread explaining a few ways you can restore.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.