• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to increase the max size for 'where' clause in update statement in oracle

 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

Can somebody please tell me how to increase the max size of statement in where clause of update statement in oracle. I am facing this problem as the data that is to be compared exceeds the max size so sql ignore the full update statement and no result is generated.

for example

select molregno from assay_detail where assay='Percentage inhibition of unphosphorylated VEGFR2 kinase activity studied using 5-40nM human VEGFR2delta50 expressed in baculovirus/insect cells, 20mM poly(Glu-Tyr)4:1, 3mM ATP, sffsdfsfsdftty, fhgfhuikikf, 50U/ml lactate dehydrogenase, 20U/ml pyruvate kinase, 8990kgkgkkgkgll ghjgjhjghjgerfretegnnf tgh gggggby measuring the absorbance at 340nm on Beckman spectrophotometer by coupled spectrophotometric assay';

thanks in advance.
 
Bartender
Posts: 2661
19
Netbeans IDE C++ Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you get an error message, please show it to us.

If you don't get an error message, then there is no record where assay matches your condition.

sql ignore the full update statement

This is not an update statement. It's a select statement. No data will be updated.

Regards, Jan
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic