I have a piece of code as follows.
Select * from abc_table where objectsnames="obj1" or "obj2"......"Obj1000"
Querying for 1000 objects.
Is there any chance for oracle timeout, if I call this query ten thousand times?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think you want to create a small table of object names and then join, something like:
You could also use an EXISTS or IN statement, like