I am working on java project in which i am using Sybase and Apache Metamodel to get table data and its information.Now "ddl in tran" option is true but still when i get columns details using Apache Metamodel its giving me error:
com.sybase.jdbc4.jdbc.SybSQLException: The 'CREATE TABLE' command is not allowed within a multi-statement transaction in the 'tempdb' database.
I have Sybase ASE 15.5 installed on Windows 10.
The "ddl in tran" options needs to be "on" in the temporary databases as well. The system administrator or someone with sa_role can do this:
As the warning suggests this needs to be consistent across all temporary databases if you have multiple. Once the command has completed the options can be checked with sp_helpdb:
Here's an example of creating a table inside a transaction: