I have a problem with a query in which a file containing over 1000 rows is loaded.
SELECT *
FROM table1
WHERE items IN(%NewListVar%)
The database returns this error:
[Ora]ORA-01795: maximum number of expressions in a list is 1000
Is it possible to divide loading rows or workaround this limit?