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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

copying data from sql server to sql server

Status
Not open for further replies.

impulse24

IS-IT--Management
Joined
Jul 13, 2001
Messages
167
Location
US
Hi All,

I have had a file sent to me from the customer, and it has a .dat extension. They said it was a dump of the sql database. How do I restore this file? I have tried using restore database, and import DTS with no luck. I looked into copying data from a data file into sql, and am still lost. The name of the data file is sqldump.dat. I don't know what the source table name or field layouts are, how do I bring this file into my sql server, and have it create the database, and tables.

Please help me.
 

How did they dump the data? WHat version of SQL Server did they use? Terry L. Broadbent
FAQ183-874 contains tips for posting questions in these forums.
NOTE: Reference to the FAQ is not directed at any individual.
 
they used sql server 6.5
 

If the file is a SQL 6.5 database file, the only way you can retrieve the data is to load it into SQL 6.5 and even that would be difficult. You would need to know exactly how ow the database was created, number of segments, etc.

Ask the customer to export the data to a flat file and send that. You may end up with multiple files - one per table - but the files could be imported. Terry L. Broadbent
FAQ183-874 contains tips for posting questions in these forums.
NOTE: Reference to the FAQ is not directed at any individual.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top