I am trying to load a csv file into a table, using SqlCl LOAD command, but the load fails with “ORA-00942 table or view does not exists” .
The error is wrong, table do exist, and has all permission.
Table length in 33 bytes.
I have noticed the the error message had cut the table name, which made me suspect that table length might be the issue here (above 30 bytes, which was Oracle's old limit on object_name) .
When I renamed the table to a 30 bytes name, the LOAD command succeeded.
I am using sqlcl 21.4, on oracle 19.22.
Is there a known limit on table_name length for LOAD command? was this fixed in newer versions?
Thanks,
Merav