Tuesday, January 8, 2019

How to Copy a Table With or Without Data Using CREATE TABLE AS Statement

1. How to copy both the structure and data of a table
      create table emp_copy
      as
      select * from emp;

2. How to copy specific columns of a table along with their data.
     create table emp_copy
     as
     select empno, sal from emp;

3. How to copy only the structure of the table without the data.
    create table emp_copy
    as
    select * from emp
     where 1=0;

Friday, January 4, 2019

Account Payables Join Tables


Account Receivables Join Tables


Order to Cash Process: Key Join Tables in Oracle Apps R12 Explained


Purchase Order Join Tables


Trade Community Architecture JOIN TABLES