프로시져 작성시 아래와 같습니다.
Cursor Lists is select field from table1 ;
Cursor SecondLists is select field from table2;
for item in Lists
Loop
for item2 in SecondLists
Loop
......
Update Or Insert Table;
End Loop;
Commit Work; (1)
End Loop;
Commit Work; (2)
고수님들 위 (1) 위치와 (2) 위치중 어느 위치에 커밋을 해야 합니까? 월 1회 실행되는 프로시져 인데요. 갱신 데이터는 약 20만건 입니다.