摘要: 首先以DBA连接到数据库:sqlplus / as sysdba;--创建表空间 create tablespace test_tablespace datafile 'D:\developer\oracle\product\10.2.0\oradata\orcl\test.dbf' size 1024M;--创建用户 create user test identified by test default tablespace test_tablespace;--授权 grant dba,connect,resource to test;--删除用户 drop user tes 阅读全文
posted @ 2014-03-27 18:19 于辰 阅读(263) 评论(0) 推荐(0) 编辑