-
-
Notifications
You must be signed in to change notification settings - Fork 240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ORA-24816 in database queue (jobs table) #170
Comments
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm trying to execute the following code:
It throws ORA-24816 exception. Researching about it:
https://community.oracle.com/thread/417560
It seems that this happens due to the size of
$data
, which is loaded in the CLOB "payload" column of the table "jobs". According to the action mentioned above, this column should be the last one on insert statement.I did this in Illuminate\Queue\DatabaseQueue, in buildDatabaseRecord function by putting the "payload" at the end of the array. It worked!
But I think the better way to solve this permanently should be the laravel-oci8 to put the CLOBs at the end by default.
The text was updated successfully, but these errors were encountered: