0

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?

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
user9557556
  • 43
  • 1
  • 5

1 Answers1

1

Insert values into temp table and then join the temp table on this values

Ori Marko
  • 56,308
  • 23
  • 131
  • 233