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、

相关文章:

  • 2021-06-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-23
  • 2021-09-05
  • 2022-12-23
  • 2022-01-10
  • 2021-07-13
  • 2021-09-17
相关资源
相似解决方案