You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a script which has multiple lines of db execution lines in which if any of the lines are failed while executing it is not picking up the next lines. Any way to skip the failed lines and execute the next lines?
Ex : INSERT INTO table1 (LOCALE, TRANSLATIONGUID, TRANSLATIONKEY, TRANSLATIONVALUE) VALUES ('en-US', 'translationguid', 'translationkey.', 'Value');
The execution of 1st line got failed due to the below error Cause: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (MYBATIS1.UX_1_ASTRANSLATION) violated
Any way to skip this line of execution and execute the following lines?
The text was updated successfully, but these errors were encountered:
Hello Team,
I have a script which has multiple lines of db execution lines in which if any of the lines are failed while executing it is not picking up the next lines. Any way to skip the failed lines and execute the next lines?
Ex : INSERT INTO table1 (LOCALE, TRANSLATIONGUID, TRANSLATIONKEY, TRANSLATIONVALUE) VALUES ('en-US', 'translationguid', 'translationkey.', 'Value');
INSERT INTO TABLE1 (LOCALE, TRANSLATIONGUID, TRANSLATIONKEY, TRANSLATIONVALUE) VALUES ('en-US', 'translationguid', 'translationkey', 'value');
The execution of 1st line got failed due to the below error
Cause: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (MYBATIS1.UX_1_ASTRANSLATION) violated
Any way to skip this line of execution and execute the following lines?
The text was updated successfully, but these errors were encountered: