DBA Data[Home] [Help]

APPS.MSD_AW_LOADER dependencies on DBMS_AW

Line 9: -- dbms_aw.execute('awwaittime = 1000000; &(if aw(attached ''ODPCODE'') then ''shw NA'' else ''aw attach ODPCODE rw wait'')');

5:
6: procedure attach_code_aw is
7: begin
8: -- attach ODPCODE rw, create it if it does not exist
9: -- dbms_aw.execute('awwaittime = 1000000; &(if aw(attached ''ODPCODE'') then ''shw NA'' else ''aw attach ODPCODE rw wait'')');
10: dbms_aw.AW_ATTACH('ODPCODE',true,true,'wait');
11: end attach_code_aw;
12:
13: procedure update_code_aw is

Line 10: dbms_aw.AW_ATTACH('ODPCODE',true,true,'wait');

6: procedure attach_code_aw is
7: begin
8: -- attach ODPCODE rw, create it if it does not exist
9: -- dbms_aw.execute('awwaittime = 1000000; &(if aw(attached ''ODPCODE'') then ''shw NA'' else ''aw attach ODPCODE rw wait'')');
10: dbms_aw.AW_ATTACH('ODPCODE',true,true,'wait');
11: end attach_code_aw;
12:
13: procedure update_code_aw is
14: begin

Line 16: dbms_aw.execute('&(if exists(''_noupdate'') then ''shw na'' else ''upd'')');

12:
13: procedure update_code_aw is
14: begin
15: -- Issue an update if _noupdate flag is not set
16: dbms_aw.execute('&(if exists(''_noupdate'') then ''shw na'' else ''upd'')');
17: end update_code_aw;
18:
19: END MSD_AW_LOADER;