Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Platform_support
Contributor
Contributor

Error when deleting a user in Talend Administration Center

Hi,

 

We tried to delete a particular user in Talend. But we got an error " Delete Failed:!!! Cannot flush and commit transaction!!!". Details below.

 

Deleting the user from the table [dbo].[user] where id = 86. We found the user is in lock status in [dbo].[locks] itseems. Kindly help us to resolve this issue. Attached logfile for reference.

 

Regards.

Labels (4)
1 Reply
prg
Employee
Employee

Hello,

 

Could you please try the below workaround;

 

1) log in to the TAC database

2) Take a backup of the 'locks' table (ex: CREATE TABLE LOCKS_BACKUP AS SELECT * FROM LOCKS)

3) Truncate 'locks' table

 

TRUNCATE TABLE LOCKS;

 

Thanks!!