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.