Commit a24425a
committed
Fixed error:
```
ORA-14462: cannot TRUNCATE temporary table in an autonomous transaction which is already in use by the parent transaction
ORA-06512: at "UT3.UT_UTILS", line 383
ORA-06512: at "UT3.UT_RUNNER", line 78
ORA-14462: cannot TRUNCATE temporary table in an autonomous transaction which is already in use by the parent transaction
ORA-06512: at "UT3.UT_RUNNER", line 110
ORA-06512: at "UT3.UT", line 292
ORA-06512: at "UT3.UT", line 320
ORA-06512: at line 1
```
Instead of truncate with autonomous_transaction we will now use delete (without autonomous_transaction )1 parent 40e8d03 commit a24425a
1 file changed
Lines changed: 1 addition & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
378 | 378 | | |
379 | 379 | | |
380 | 380 | | |
381 | | - | |
382 | 381 | | |
383 | | - | |
384 | | - | |
| 382 | + | |
385 | 383 | | |
386 | 384 | | |
387 | 385 | | |
| |||
0 commit comments