0% found this document useful (0 votes)
15 views1 page

SCC

The document contains SQL commands to drop and recreate a table called DOL_WF_ACTION_HISTORY in the XXCO schema and create a synonym for it in the APPS schema, along with details on storage parameters and other table properties.

Uploaded by

Moeen
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views1 page

SCC

The document contains SQL commands to drop and recreate a table called DOL_WF_ACTION_HISTORY in the XXCO schema and create a synonym for it in the APPS schema, along with details on storage parameters and other table properties.

Uploaded by

Moeen
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

DROP TABLE XXCO.

DOL_WF_ACTION_HISTORY CASCADE CONSTRAINTS;

CREATE TABLE XXCO.DOL_WF_ACTION_HISTORY


(
ACTION_ID NUMBER,
ACTION_SOURCE_TYPE VARCHAR2(5 BYTE),
SOURCE_NUMBER VARCHAR2(20 BYTE),
APPROVER_USER_NAME VARCHAR2(100 BYTE),
APPROVE_DATE DATE,
REJECT_BY_USER_NAME VARCHAR2(100 BYTE),
REJECT_DATE DATE,
STATUS VARCHAR2(1000 BYTE),
REMARKS VARCHAR2(4000 BYTE),
SOURCE_HEADER_ID NUMBER,
ITEM_KEY VARCHAR2(100 BYTE),
NEXT_APPROVER VARCHAR2(100 BYTE)
)
TABLESPACE XXDCBA
PCTUSED 0
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE (
INITIAL 64K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
BUFFER_POOL DEFAULT
)
LOGGING
NOCOMPRESS
NOCACHE
NOPARALLEL
MONITORING;

DROP SYNONYM APPS.DOL_WF_ACTION_HISTORY;

CREATE SYNONYM APPS.DOL_WF_ACTION_HISTORY FOR XXCO.DOL_WF_ACTION_HISTORY;

You might also like