Jaydeep Baldaniya
Jaydeep Baldaniya

Reputation: 123

How to open .dbs file and view its data?

I tried to open .dbs file using SQLBase and Open Office but it can't open. In file viewer lite, .dbs opens but like below image. What should I do to open that file?

merchant.dbs in text view:--

merchant.dbs in Hex view:--

Upvotes: 0

Views: 12977

Answers (4)

Tharuka hirushan
Tharuka hirushan

Reputation: 1

You can Open the Shema files using dbShema software(Pro) Click here

Upvotes: -1

Steve Leighton
Steve Leighton

Reputation: 840

SQLBase is 256-bit AES encrypted. There is no way to meaningful read the data without first UNLOADing it using Gupta SQLTalk. See the attached SQLBase Language reference , specifically 'UNLOAD' to get your data and schema out of your dbs version , and then (optionally) 'LOAD' to get you data into another version . The attached manual is for v9 , but LOAD and UNLOAD work the same no matter which version of SQLbase . See: SQLBase Language Reference

Upvotes: 0

Steve Leighton
Steve Leighton

Reputation: 840

.dbs is a Gupta Technologies SQLBase database file. You do need the correct version of SQLBase installed to be able to Unload it . It will be encrypted , so there is no other way.

Upvotes: 0

etalon11
etalon11

Reputation: 984

If it is a sqlite database you can download a sqlite Editor to open it.

Upvotes: 0

Related Questions