oracle中方案的创建

第一步:创建用户
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));

你可能感兴趣的:(oracle)