第一步:创建用户
create user wsl
identified by kmust.net
default tablespace wsl
temporary tablespace temp;
第二步:赋予用户相应的权限
  grant connect,resource to aa;
第三步:以该用户登录
  connect wsl/kmust.net@oracle
第四步:创建schema
  create schema authorization wsl--创建名为wsl的方案
  create table tab1(a number)
  create table tab2(b number,c varchar2(10));

相关文章:

  • 2021-12-31
  • 2022-12-23
  • 2021-09-15
猜你喜欢
  • 2021-08-03
  • 2022-01-06
  • 2022-01-06
  • 2021-05-26
  • 2021-10-18
相关资源
相似解决方案