vote up 2 vote down star

Hi,

I'm wondering if it is possible to run multiple DDL statements inside a transaction. I'm specially interested on SQL Server, even though answers with other databases (Oracle, Postgre at least) could also be interesting.

I've been doing some "CREATE TABLE" and "CREATE VIEW" for the created table inside a transaction and there seems to be some inconsistencies and I'm wondering if the DDLs shouldn't be done inside the transaction...

I could probably move the DDL outside the transaction but I'd like to get some reference for this. What I have found this far:

  • MSDN page Isolation Levels in the Database Engine tells clearly that there are restrictions on what DDL operations can be performed in an explicit transaction that is running under snapshot isolation - but I'm not using snapshot isolation and this should result as an error.
    • This could be interpreted so that DDL operations can be performend in an explicit transaction under different isolation levels?
  • Oracle® Database Gateway for SQL Server User's Guide#DDL Statements states that only one DDL statement can be executed in a given transaction - is this valid also for SQL Server used straight?

For Oracle:

If it matters something, I'm doing this with Java through the JTDS JDBC driver.

b.r. Touko

flag

70% accept rate

3 Answers

vote up 2 vote down

If you are creating tables, views, etc on the fly (other than table variables or temp tables), you may truly need to rethink your design. This is not stuff that should normally happen from the user interface. Even if you must allow some customization, the DDL statements should not be happening at the same time as running transactional inserts/updates/deletes. It is far better to separate these functions.

This is also something that needs a healthy dose of consideration and testing as to what happens when two users try to change the structure of the same table at the same time and then run a transaction to insert data. There's some truly scary stuff that can happen when you allow users to make adjustments to your database structure.

Also some DDL statements must always be the first statement of a batch. Look out for that too when you are running them.

link|flag
You got good point, unfortunately with this project I'm forced to this legacy db design.. These batches seem to be a unit of SQL Server statements.. Probably I'm running all my statements in separate batches with JDBC until I explicitly want it.. at least I think.. – Touko Jun 25 at 14:33
I would add that I would find DDL transactions very useful for a different set of circumstances - not updating on the fly, but ensuring that schema updates to a production database are never left in an inconsistent state. – Nathan Aug 7 at 14:47
vote up 1 vote down

Could it be that in ms sql, Implicit transactions are triggered when DDL and DML statements are run. If you toggle this off does this help, use SET IMPLICIT_TRANSACTIONS

EDIT: another possibility - You can't combine CREATEVIEW with other statements in the same batch. CREATETABLE is ok. You seperate batches with GO

EDIT2: You CAN use multiple DDL in a transaction as long as seperated with GO to create different batches

link|flag
I'm using JDBC Connection#setAutoCommit(false) and the DML statements aren't done with implicit transactions. The results seem more be like that the table to create the view with wouldn't always be there or something. – Touko Jun 25 at 12:42
For EDIT: That might be but I'd like some reference to SQL Server documentation or something whether it is or isn't allowed.. – Touko Jun 25 at 12:55
I used this book, see if you find online? Microsoft® SQL Server® 2008 T-SQL Fundamentals Print ISBN-10: 0-7356-2601-4 Print ISBN-13: 978-0-7356-2601-0 – Stuart Jun 25 at 12:59
OK, thanks. Now it remains open for me how would this relate to JDBC (I could write this GO there as string but since my software should run on different DBMS's, that wouldn't be the first option) This GO is still different thing than transactions and BEGIN/COMMIT etc - has something to do with "batches" or something? – Touko Jun 25 at 13:08
vote up 0 vote down

For the general case and IIRC, it's not safe to assume DDL statements are transactional.

That is to say, there is a great deal of leeway on how schema alterations interact within a transaction (assuming it does at all). This can be by vendor or even by the particular installation (i.e., up to the dba) I believe. So at the very least, don't use one DBMS to assume that others will treat DDL statements the say.

Edit: MySql is an example of a DBMS which doesn't support DDL transactions at all. Also, if you have database replication/mirroring you have to be very careful that the replication service (Sybase's replication is the norm, believe it or not) will actually replicate the DDL statement.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.