1、创建用户 create user test identified by test
2、授权 grant connect, resource to test
3、复制表结构与数据
create table NEW_EMP as select * from EMP
4、创建索引
普通索引 create index emp_index on emp(empno,ename,mgr)
唯一索引 create unique index emp_index on emp(empno,ename,mgr)
5、