Informix DB error -


i updating couple of rows in table in informix database , not know may cause of error. query:

update device  set name = 'test_destination' pkid in   (select d.pkid     numplan n      join routepartition rp        on rp.pkid = n.fkroutepartition      join devicenumplanmap dnpm        on dnpm.fknumplan = n.pkid      join device d       on dnpm.fkdevice = d.pkid      join routelist rl        on rl.fkdevice = d.pkid      join routegroup rg        on rg.pkid = rl.fkroutegroup , n.tkpatternusage = 5     d.name='sme_rl'   ); 

the error message is:

error: soapenv:clientcould not update row in table.-346could not update row in table.executesqlupdate 

i tried google error , couldn't information: says 'might occurred because of unexpected error hardware errors or locking conflicts in database'.

not sure how proceed don't have idea error. find kind of error in query or thoughts error?


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -