table_A 스키마
int_c smallint
host_money_c numeric
talbe_B 스키마
B_gid char(4)
B_money numeric
<tcm0285.sql 소스>---------------------
<중간생략>
foreach
select int_c, money_c
into host_int_c, host_money_c
from table_A
update table_B
set B_money = host_money_c
where B_gid = host_int_c
end foreach
<중간생략>
--------------------------------------
host_int_c 값이 1인 경우 B_gid가 0001인 row의 B_money를 update하였는데
갑자기 안됩니다.
참고로 DB를 내렸다 올렸는데...
혹시 패치가 되면 그런현상이 일어나는것인가 하는 추측도 됩니다만
정확한 원인을 모르겠습니다.
|