首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

oracle创造用户

2012-07-02 
oracle创建用户oracle里创建用户及分配权限的常用命令:create user ylxcidentified by ylxcdefault tabl

oracle创建用户
oracle里创建用户及分配权限的常用命令:
  create user ylxc
  identified by "ylxc"
  default tablespace USERS
  temporary tablespace TEMP
  profile DEFAULT;

  grant connect to  ylxc;
  grant dba to  ylxc;
  grant resource to ylxc;
  grant unlimited tablespace to ylxc;

热点排行