Oracle 基本命令
登陆:
sqlplus /nolog
系统用户登陆:
conn /as sysdba
# 建立用户
create user ats identified by ats;
建立了用户:ats,密码为:ats
# 对用户授权
grant connect,resource to ats;
对用户angeos授予了连接数据库和访问资源的权限
# 对用户授权
grant create session,dba to ats;
CREATE SESSION是一个系统特权,它可以为用户提供连接数据库的能力。
删除用户的所有对象:
drop user ats cascade
修改用户密码:
alter user sys identified by "sys"
解锁用户:
alter user system account unlock
查看用户有什么表:
select table_name from user_tables;
查看表结构:
desc tablename
导出:
exp ats/ats@ats file="d:\pcisv6201226.dmp" full=y
导入:
imp ats/ats@ats file="D:\数据库备份\2day.dmp" full=y
断电:
shutdown abort
startup nomount
startup
alter system set control_files='D:\ORACLE\ORADATA\ORCL\USERS01.DBF' scope=spfile;