|
-
you cannot do nothing except change the DB is used of consider using cursor_sharing to force or similar - but be carefull as this might make some problems with the Oracle Cost based optimizer - sibce if you use cursor_sharing = force a query like:
select * from table where id = 123
it will make it:
select * from table where id = :b1
and the optimizer will not know wheter to use index or not.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|