patrickman
Programmer
Hi,
I need help , I have a file which lot of other entities like below, i want to create for each entity a sepearate create table script like below, Any help is much appreciated.
EMP EMP_NO NUMBER(10),
EMP ENAME VARCHAR2(10),
EMP SAL NUMBER(10)
DEPT DEPTNO VARCHAR2(10)
DEPT DNAME VARCHAR2(10)
create table EMP
(
EMP_NO NUMBER(10),
ENAME VARCHAR2(10),
SAL NUMBER(10)
)
create table DEPT
(
DEPTNO VARCHAR2(10)
DNAME VARCHAR2(10)
)
I need help , I have a file which lot of other entities like below, i want to create for each entity a sepearate create table script like below, Any help is much appreciated.
EMP EMP_NO NUMBER(10),
EMP ENAME VARCHAR2(10),
EMP SAL NUMBER(10)
DEPT DEPTNO VARCHAR2(10)
DEPT DNAME VARCHAR2(10)
create table EMP
(
EMP_NO NUMBER(10),
ENAME VARCHAR2(10),
SAL NUMBER(10)
)
create table DEPT
(
DEPTNO VARCHAR2(10)
DNAME VARCHAR2(10)
)