BCS
BCS

Reputation: 78506

password recovery for SyBase file

I have a .db file that I think is a Sybase database file that I have been tasked with extracting data from. Looking at the file in notepad shows that the data in not encrypted (I can read text strings from it) but I don't have the username/password to convince the Sybase tools to read it.

Are there any tools/procedure that just skip the credentials check?

(BTW the client owns the data so it's all legit)

Upvotes: 2

Views: 9458

Answers (3)

ZeroCool
ZeroCool

Reputation: 1500

under ASE (Adaptive Server Entreprise), default userID: "sa", pass:""

Upvotes: -2

Graeme Perrow
Graeme Perrow

Reputation: 57238

Assuming this is a Sybase SQL Anywhere or Sybase IQ database, there are no tools that Sybase supplies that can access the data without supplying a valid user name / password. If there are any third party tools that can do this (I don't know of any), we certainly don't sanction them.

Full disclosure: I work for Sybase in SQL Anywhere engineering.

Upvotes: 2

Rad
Rad

Reputation: 8381

I'd be surprised if it were that easy to get around Sybase security ... but one never knows. Have you tried the default username (dba) and password (sql)? You'd be surprised how many people are too lethargic to change it!

Upvotes: 2

Related Questions