Issue with Sybase 15.0.3 and Liquibase RC-2(build 143)
Hi,
I tried to generate changelog from exising sybase 15.0.3 database. But it is failing with following issues.
- It is getting the database product name as “Adaptive Server Enterprise”. But it is not matching when try to get the correct database.
- public boolean isCorrectDatabaseImplementation(DatabaseConnection conn) throws DatabaseException {
String dbProductName = conn.getDatabaseProductName();
return
“Sybase SQL Server”.equals(dbProductName)
|| “sql server”.equals(dbProductName)
|| “ASE”.equals(dbProductName);
} - I have tried adding my custom database and override the isCorrectDatabaseImplementation. After that is is failing with a error " INFORMATION_SCHEMA.VIEWS not found"
I think sybase is not having this INFORMATION_SCHEMA.VIEWS
Could you please suggest what is wrong here?