Reputation: 2386
I have 4 different files. I believe they are SQL Server 2000 files but I am not sure.
The files are:
s2k.db
s2k.b1
s2k.lg
s2k.d1
I need to get the data from these files and export it as a .csv but I have no idea what type of files these are or software I need to open them. I downloaded sql server but I have no idea how to use it.
Any help is very much appreciated.
Upvotes: 0
Views: 701
Reputation: 11
Progress/OpenEdge Databases use the same naming conventions of db, b1, d1, and lg. The s2k.lg should be a text file logging events such as database start/stop, connections made, etc.
Upvotes: 1
Reputation: 4332
1) First you need to identify what type of files they are and what software would you need to open them.
2) Once you can open these files hopefully every database tool has some exporting facility ,such as export data ,or export whole database as script. GoodLuck
Upvotes: 0
Reputation: 14071
With SQL Server the tool to import data is called bcp, short for bulk copy protocol.
Once you have them in sql server and did your transformations (do you have to?) then you can use bcp again to export to csv.
Do you relay need SQL Server in the middle? Maybe that's overhead.
In depends on
If you don't need to automate it you can also do it with SSMS which provide an easy to use wizard.
Upvotes: 0