摘要:
user_tables -- 查询当前用户有哪些表 user_table_columns –表字段信息 alter table table_name add column_name varchar2(10);--增加字段 alter table table_name modify column_na 阅读全文
摘要:
1、用户 create user user_name identified by pwd ;--创建用户 alter user user_name identified by newpwd;--修改用户密码 上面创建好的用户还不能登录数据库,必须给一个create session系统权限 2、特权 阅读全文
摘要:
管理员用户(sys、system)下的dbms_flashback包 1.给用户(以scott为例)授权操作dbms_flashback包:sqlplus用sys登录,执行命令:grant execute on sys.dbms_flashback to scott; 方式一:按照时间闪回: 用Sc 阅读全文