Data Base Oracle 常用命令
Data Base Oracle 常用命令
1.登录:(不需要密码,属于管理员权限)
conn /as sysdba;
2.查看数据库存储位置:
select name from v$datafile;
3.创建表空间:
语法:create tablespace 表空间名称 datafile '数据文件的路径' size 大小;
示例:create tablespace test_db datafile 'D:\ORACLE\ORADATA\ORCL\test_db.dbf' size 3000m;
删除表空间:
--删除空的表空间,但是不包含物理文件
drop tablespace tablespace_name;
--删除非空表空间,但是不包含物理文件
drop tablespace tablespace_name including contents;
--删除空表空间,包含物理文件
drop tablespace tablespace_name including datafiles;
--删除非空表空间,包含物理文件
drop tablespace tablespace_name including contents and datafiles;
--如果其他表空间中的表有外键等约束关联到了本表空间中的表的字段,就要加上CASCADE CONSTRAINTS
drop tablespace tablespace_name including contents and datafiles CASCADE CONSTRAINTS;
4.创建用户:
语法:create user 用户名 identified by 密码 default tablespace 用户默认使用哪一个表空间;
示例:create user test_db identified by test_db default tablespace test_db;
删除用户:
drop user username cascade
5.修改密码:
语法:alter user 用户名 identified by 新密码;
示例:alter user scott identified by tiger;
6.解锁:
语法:alter user 用户名 account unlock;
示例:alter user test account unlock;
7.加锁:
语法:alter user 用户名 account lock;
示例:alter user test account lock;
8.授权:
语法:grant 角色1,角色2 to 用户名;
示例:grant dba, connect to test_db;
9.连接远程oracle:
sqlplus username/
password
@//host:port/sid