Hi Denis, On 1/29/07, Denis Garyachy <[EMAIL PROTECTED]> wrote:
I am experiencing problems with creating backup using JDBC driver from Microsoft. I think there is a problem in parsing the connection string.
You're right. Your second example is the correct one. You really have to define the urlHeader, otherwise it's looking for jdbc:jtds:sqlserver:. There is a remaining problem: the regexp used to get the database name from the connection url does not support the format with ;databaseName=dbname. The backuper is waiting for a localhost:port/dbname url. So when executing the backup command, it executes something like BACKUP DATABASE null TO DISK 'path'. Can you confirm it by enabling the DEBUG for the backupers (see log4j.properties in your conf directory, look for log4j.logger.org.continuent.sequoia.controller.backup and replace INFO with DEBUG)? So either you can change your JDBC URL to match the common format (I don't know the MSSQL JDBC driver at all) or there is something to fix in the MSSQL backuper. -- Guillaume _______________________________________________ Sequoia mailing list [email protected] https://forge.continuent.org/mailman/listinfo/sequoia
