oracle中方案的创建

来源:互联网 发布:畅璇网络棋牌 编辑:程序博客网 时间:2024/05/22 10:37
oracle中方案的创建 :
第一步:创建用户
create user wsl
identified by kmust.net
default tablespace wsl
temporary tablespace temp;
第二步:赋予用户相应的权限
  grant connect,resource to aa;
第三步:以该用户登录
  connect wsl/kmust.net@oracle
第四步:创建方案
  create schema authorization wsl--创建名为wsl的方案
  create table tab1(a number)
  create table tab2(b number,c varchar2(10));
原创粉丝点击