25 lines
754 B
SQL
25 lines
754 B
SQL
prompt --application/set_environment
|
|
set define off verify off feedback off
|
|
whenever sqlerror exit sql.sqlcode rollback
|
|
--------------------------------------------------------------------------------
|
|
--
|
|
-- Oracle APEX export file
|
|
--
|
|
-- You should run the script connected to SQL*Plus as the Oracle user
|
|
-- APEX_220100 or as the owner (parsing schema) of the application.
|
|
--
|
|
-- NOTE: Calls to apex_application_install override the defaults below.
|
|
--
|
|
--------------------------------------------------------------------------------
|
|
begin
|
|
wwv_flow_imp.import_begin (
|
|
p_version_yyyy_mm_dd=>'2022.04.12'
|
|
,p_release=>'22.1.2'
|
|
,p_default_workspace_id=>9014660246496943
|
|
,p_default_application_id=>770
|
|
,p_default_id_offset=>0
|
|
,p_default_owner=>'CORE'
|
|
);
|
|
end;
|
|
/
|