赞
踩
可读取数据库配置文件,可对数据文件读写
alter database open;
可读取数据库配置文件,不可对数据文件读写
alter database mount;
select tablespace_name, file_name, status,bytes/1024/1024 from dba_data_files order by 1;
create tablespace TEST datafile '/data/DAMENG/TEST.DBF' size 64;
drop tablespace test;
alter tablespace test online;
alter tablespace test offline;
alter tablespace test rename to test2;
create user TEST identified by "123456" password_policy 0 default tablespace "TEST";
需要指定密码策略password_policy
,可以为以下值,或其任何组合 :
注意:若为其他数字,则表示以上设置值的和,如 3=1+2,表示同时启用第 1 项和第 2 项
策略。当设置为 0 时,表示设置口令没有限制,但总长度不得超过 48 个字节。另外,若不
指定该项,则默认采用系统配置文件中 PWD_POLICY 所设值。
grant PUBLIC to test;
grant RESOURCE to test;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。