1、用户授权
GRANT CONNECT,RESOURCE,UNLIMITED TABLESPACE TO SCOTT IDENTIFIED BY TIGER;ALTER USER SCOTT DEFAULT TABLESPACE USERS;ALTER USER SCOTT TEMPORARY TABLESPACE TEMP;
2、导入脚本
prompt PL/SQL Developer import fileprompt Created on 2017年12月24日 by Administratorset feedback offset define offprompt Creating BONUS...create table BONUS( ENAME VARCHAR2(10), JOB VARCHAR2(9), SAL NUMBER, COMM NUMBER)tablespace USERS pctfree 10 initrans 1 maxtrans 255 storage ( initial 64K next 1M minextents 1 maxextents unlimited );prompt Creating DEPT...create table DEPT( DEPTNO NUMBER(2) not null, DNAME VARCHAR2(14), LOC VARCHAR2(13))tablespace USERS pctfree 10 initrans 1 maxtrans 255 storage ( initial 64K next 1M minextents 1 maxextents unlimited );alter table DEPT add constraint PK_DEPT primary key (DEPTNO) using index tablespace USERS pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K next 1M minextents 1 maxextents unlimited );prompt Creating EMP...create table EMP( EMPNO NUMBER(4) not null, ENAME VARCHAR2(10), JOB VARCHAR2(9), MGR NUMBER(4), HIREDATE DATE, SAL NUMBER(7,2), COMM NUMBER(7,2), DEPTNO NUMBER(2))tablespace USERS pctfree 10 initrans 1 maxtrans 255 storage ( initial 64K next 1M minextents 1 maxextents unlimited );alter table EMP add constraint PK_EMP primary key (EMPNO) using index tablespace USERS pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K next 1M minextents 1 maxextents unlimited );alter table EMP add constraint FK_DEPTNO foreign key (DEPTNO) references DEPT (DEPTNO);create bitmap index INDEX_EMP_JOB on EMP (JOB) tablespace USERS pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K next 1M minextents 1 maxextents unlimited );create index INDEX_EMP_SAL on EMP (SAL) tablespace USERS pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K next 1M minextents 1 maxextents unlimited );create index INDEX_EMP_SAL_JOB on EMP (SAL DESC, JOB) tablespace USERS pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K next 1M minextents 1 maxextents unlimited );prompt Creating SALGRADE...create table SALGRADE( GRADE NUMBER, LOSAL NUMBER, HISAL NUMBER)tablespace USERS pctfree 10 initrans 1 maxtrans 255 storage ( initial 64K next 1M minextents 1 maxextents unlimited );prompt Disabling triggers for BONUS...alter table BONUS disable all triggers;prompt Disabling triggers for DEPT...alter table DEPT disable all triggers;prompt Disabling triggers for EMP...alter table EMP disable all triggers;prompt Disabling triggers for SALGRADE...alter table SALGRADE disable all triggers;prompt Disabling foreign key constraints for EMP...alter table EMP disable constraint FK_DEPTNO;prompt Deleting SALGRADE...delete from SALGRADE;commit;prompt Deleting EMP...delete from EMP;commit;prompt Deleting DEPT...delete from DEPT;commit;prompt Deleting BONUS...delete from BONUS;commit;prompt Loading BONUS...prompt Table is emptyprompt Loading DEPT...insert into DEPT (DEPTNO, DNAME, LOC)values (10, ‘ACCOUNTING‘, ‘NEW YORK‘);insert into DEPT (DEPTNO, DNAME, LOC)values (20, ‘RESEARCH‘, ‘DALLAS‘);insert into DEPT (DEPTNO, DNAME, LOC)values (30, ‘SALES‘, ‘CHICAGO‘);insert into DEPT (DEPTNO, DNAME, LOC)values (40, ‘OPERATIONS‘, ‘BOSTON‘);commit;prompt 4 records loadedprompt Loading EMP...insert into EMP (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)values (7369, ‘SMITH‘, ‘CLERK‘, 7902, to_date(‘17-12-1980‘, ‘dd-mm-yyyy‘), 800, null, 20);insert into EMP (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)values (7499, ‘ALLEN‘, ‘SALESMAN‘, 7698, to_date(‘20-02-1981‘, ‘dd-mm-yyyy‘), 1600, 300, 30);insert into EMP (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)values (7521, ‘WARD‘, ‘SALESMAN‘, 7698, to_date(‘22-02-1981‘, ‘dd-mm-yyyy‘), 1250, 500, 30);insert into EMP (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)values (7566, ‘JONES‘, ‘MANAGER‘, 7839, to_date(‘02-04-1981‘, ‘dd-mm-yyyy‘), 2975, null, 20);insert into EMP (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)values (7654, ‘MARTIN‘, ‘SALESMAN‘, 7698, to_date(‘28-09-1981‘, ‘dd-mm-yyyy‘), 1250, 1400, 30);insert into EMP (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)values (7698, ‘BLAKE‘, ‘MANAGER‘, 7839, to_date(‘01-05-1981‘, ‘dd-mm-yyyy‘), 2850, null, 30);insert into EMP (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)values (7782, ‘CLARK‘, ‘MANAGER‘, 7839, to_date(‘09-06-1981‘, ‘dd-mm-yyyy‘), 2450, null, 10);insert into EMP (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)values (7788, ‘SCOTT‘, ‘ANALYST‘, 7566, to_date(‘19-04-1987‘, ‘dd-mm-yyyy‘), 3000, null, 20);insert into EMP (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)values (7839, ‘KING‘, ‘PRESIDENT‘, null, to_date(‘17-11-1981‘, ‘dd-mm-yyyy‘), 5000, null, 10);insert into EMP (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)values (7844, ‘TURNER‘, ‘SALESMAN‘, 7698, to_date(‘08-09-1981‘, ‘dd-mm-yyyy‘), 1500, 0, 30);insert into EMP (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)values (7876, ‘ADAMS‘, ‘CLERK‘, 7788, to_date(‘23-05-1987‘, ‘dd-mm-yyyy‘), 1100, null, 20);insert into EMP (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)values (7900, ‘JAMES‘, ‘CLERK‘, 7698, to_date(‘03-12-1981‘, ‘dd-mm-yyyy‘), 950, null, 30);insert into EMP (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)values (7902, ‘FORD‘, ‘ANALYST‘, 7566, to_date(‘03-12-1981‘, ‘dd-mm-yyyy‘), 3000, null, 20);insert into EMP (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)values (7934, ‘MILLER‘, ‘CLERK‘, 7782, to_date(‘23-01-1982‘, ‘dd-mm-yyyy‘), 1300, null, 10);commit;prompt 14 records loadedprompt Loading SALGRADE...insert into SALGRADE (GRADE, LOSAL, HISAL)values (1, 700, 1200);insert into SALGRADE (GRADE, LOSAL, HISAL)values (2, 1201, 1400);insert into SALGRADE (GRADE, LOSAL, HISAL)values (3, 1401, 2000);insert into SALGRADE (GRADE, LOSAL, HISAL)values (4, 2001, 3000);insert into SALGRADE (GRADE, LOSAL, HISAL)values (5, 3001, 9999);commit;prompt 5 records loadedprompt Enabling foreign key constraints for EMP...alter table EMP enable constraint FK_DEPTNO;prompt Enabling triggers for BONUS...alter table BONUS enable all triggers;prompt Enabling triggers for DEPT...alter table DEPT enable all triggers;prompt Enabling triggers for EMP...alter table EMP enable all triggers;prompt Enabling triggers for SALGRADE...alter table SALGRADE enable all triggers;set feedback onset define onprompt Done.