cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Watcom Database

Former Member
5,730

If I have an old Watcom database ...

  1. How can I tell which version of Watcom it is?

  2. How can I migrate this so I can use the data and upgrade to a newer database system?

View Entire Topic
Former Member

1) Look at "Properies" -> "Details" -> "File version" in explorer for dbeng*.exe or run a "select @@version" SQL statement. 2) The dbunload tool of newer versions can be used to unload or upgrade the databases.

VolkerBarth
Contributor
0 Likes

This will tell the version of the database engine, which is not necessarily the same as the version of the database file itself.

Former Member
0 Likes

There is no way to find out the exact version with that a Watcom SQL database has been created. But anyway, its enough to know which version of Watcom SQL software can start and use the database file.

Breck_Carter
Participant

@@version does not tell you what version CAN start and use the database file, since you must HAVE started the database before you can use @@version... and at that point, you no longer need to run @@version 🙂