欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

sql_oracle_实用命令 博客分类: oracle

程序员文章站 2024-03-21 21:38:28
...

alter user USERNAME account unlock;
grant connect to USERNAME;

-- 授权人方可收回 授权
sql> grant select/update/delete/all on TABLENAME to USERNAME;
sql> revoke select/update/delete/all on TABLENAME from USERNAME;
-- 查看表结构
sql> desc TABLENAME;
-- 修改sys密码
sql> alter user sys identified by 密码;
-- 创建用户
sql> create user 用户名 identified by 密码;
-- 删除用户
sql> drop user 用户名;
-- 查看用户密码
sql> select   username,password   from   dba_users;
-- 指定scott这个用户最多只能尝试3次登陆,锁定时间为两天
sql> create profile 【lock.account】 limit failed_login_attempts 【3】 password_lock_time 【2】;
sql> alter user 【scott】 profile 【lock_account】;