Link to home
Start Free TrialLog in
Avatar of chandu_kappa
chandu_kappa

asked on

MS SQL SERVER -restore database from .dat file

hi
how to retore a database from a .dat file..
and how to retore a single table from a database.
Avatar of crsankar
crsankar
Flag of United States of America image

Which version of sql server are you using? SQL Server 7.0 does not support restore of a single table if I am not mistaken. As far as restoring form a datafile is concerned the syntax is

RESTORE DATABASE MyNwind
FROM DISK = 'c:\mssql7\backup\MyNwind.bak'
ASKER CERTIFIED SOLUTION
Avatar of shirazc
shirazc

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial