Platform migration updates: Starting October 25th, 2024, all support issues must be submitted through Hyland Community. The Nuxeo Jira site will enter indefinite read-only mode at 5 p.m. EDT. Cloud deployment services will be temporarily offline, with normal operations resuming Monday, October 28. Read the Hyland Connect blog post for more details.
In particular, after the configuration, note that you must add your database user ('nuxeo' in this example) to proper role in order for him to execute XA statements:
USE master
EXEC sp_grantdbaccess 'nuxeo', 'nuxeo'
EXEC sp_addrolemember [SqlJDBCXAUser], 'nuxeo'
To support XA using the Microsoft JDBC driver, some setup has to be done in the SQL Server itself. It is NECESSARY to follow the Configuration Instructions listed at http://msdn.microsoft.com/en-us/library/aa342335(v=sql.105).aspx
In particular, after the configuration, note that you must add your database user ('nuxeo' in this example) to proper role in order for him to execute XA statements:
USE master
EXEC sp_grantdbaccess 'nuxeo', 'nuxeo'
EXEC sp_addrolemember [SqlJDBCXAUser] , 'nuxeo'
Some screenshots for the first part are visible at http://www.sqlserver-dba.com/2011/12/enable-xa-transactions-for-sql-server.html
Description
There are some changes needed to replace jtds with Microsoft's driver.