set define '^' Rem Rem MODIFIED (MM/DD/YYYY) Rem sspadafo 04/08/2009 - Created patch file for bug 8354310 Rem jkallman 04/10/2009 - Correct "set define" begin apex_030200.wwv_flow_security.g_context := 'WWV_FLOW_UPGRADE'; sys.wwv_dbms_sql.run_block(p_sql=>'revoke debug on flows_files.wwv_flow_file_objects$ from apex_030200',p_user=>'FLOWS_FILES'); exception when others then if sqlcode = -1951 then null; else raise; end if; end; / begin for c1 in (select 1 from sys.dba_users where username = 'APEX_PUBLIC_USER') loop sys.wwv_dbms_sql.run_block(p_sql=>'revoke debug on flows_files.wwv_flow_file_objects$ from apex_public_user',p_user=>'FLOWS_FILES'); end loop; exception when others then if sqlcode = -1951 then null; else raise; end if; end; / begin for c1 in (select 1 from sys.dba_users where username = 'HTMLDB_PUBLIC_USER') loop sys.wwv_dbms_sql.run_block(p_sql=>'revoke debug on flows_files.wwv_flow_file_objects$ from htmldb_public_user',p_user=>'FLOWS_FILES'); end loop; exception when others then if sqlcode = -1951 then null; else raise; end if; end; / begin for c1 in (select 1 from sys.dba_users where username = 'ANONYMOUS') loop sys.wwv_dbms_sql.run_block(p_sql=>'revoke debug on flows_files.wwv_flow_file_objects$ from anonymous',p_user=>'FLOWS_FILES'); end loop; exception when others then if sqlcode = -1951 then null; else raise; end if; end; /