Here is my query :
select id.rowid,id.cod_ind,id.cod_doc,id.eta_doc,nvl(id.lib_doc,d.lib_doc) "LIB_DOC",
id.cmt_doc,id.dat_cre_doc,id.dat_mod_doc
from insw.iw_ind_doc id,insw.iw_doc d
where id.cod_ind = :cod_ind
and d.cod_doc = id.cod_doc
order by id.cod_doc
it returns 2 rows.
i can modify the 2nd row but when i try to modify the 1st i have the message 'Record has been locked by another user'.
But i'm the only one user...
any idea?
select id.rowid,id.cod_ind,id.cod_doc,id.eta_doc,nvl(id.lib_doc,d.lib_doc) "LIB_DOC",
id.cmt_doc,id.dat_cre_doc,id.dat_mod_doc
from insw.iw_ind_doc id,insw.iw_doc d
where id.cod_ind = :cod_ind
and d.cod_doc = id.cod_doc
order by id.cod_doc
it returns 2 rows.
i can modify the 2nd row but when i try to modify the 1st i have the message 'Record has been locked by another user'.
But i'm the only one user...
any idea?