Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

pak file extension to restore into sql server 1

Status
Not open for further replies.

graphix03

Technical User
Oct 8, 2003
189
US
Hi, I have a file with an extension .pak.
How do I restore it into sql server?

any input would be greatly appreciated.
thanks much
 
If it is a sql backup file you can restore it with the RESTORE DATABASE command. To find out what is inside the file try this.
Code:
restore headeronly from disk='{path_to_file}'
Then to restore the file.
Code:
restore database {database_name} from disk='{path_to_file}'
More on these commands can be found in BOL.

Denny

--Anything is possible. All it takes is a little research. (Me)

[noevil]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top