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

oracle 创造表空间,用户,授权

2013-01-21 
oracle 创建表空间,用户,授权1.创建表空间SQL create tablespace uadp datafile F:\oracle\product\10.2

oracle 创建表空间,用户,授权
1.创建表空间
SQL> create tablespace uadp datafile 'F:\oracle\product\10.2.0\oradata\orcl\test.dbf' size 200m autoextend on next 10m maxsize unlimited;

2.创建用户
SQL> create user hym identified by hympassword default tablespace hym;

3. 授权
SQL> grant connect, resource, dba to hym;

热点排行