Brandon Billingham
Brandon Billingham

Reputation: 163

Oracle Managed Data Access Bulk Copy ORA-39776: fatal Direct Path API error loading table

We've recently moved to use Oracle.ManagedDataAccess in our application now it supports Bulk Copy

I am getting the following error when trying to copy a fairly large table.

Oracle.ManagedDataAccess.Client.OracleException: 'ORA-39776: fatal Direct Path API error loading table SFOL.ENTITYTRANSACTIONLOG

ORA-00600: internal error code, arguments: [klalbfrloc_10], [], [], [], [], [], [], [], [], [], [], []'

The database is Oracle 19c and the ManagedDataAccess client is 19.10.0

Any ideas?

Upvotes: 1

Views: 1168

Answers (1)

Osamazx
Osamazx

Reputation: 467

For errors such as Ora-00600 you have to use the following Oracle support documentation

ORA-600/ORA-7445/ORA-700 Error Look-up Tool (Doc ID 153788.1)

If you can't find anything related to the same "Code First Argument' which is in your case "klalbfrloc_10" you have to open SR ( Service request) maybe it's a bug and you need to patch or modify some parameters.

Upvotes: 1

Related Questions