进入Oracle用户
1 |
|
以dba身份进入sql语句
1 |
|
启动数据库相关命令
启动数据库
1 |
|
启动监听(关闭监听的命令lsnrctl stop),退出sql编写界面
1 |
|
关闭数据库服务,在sql编写界面
1 |
|
常看当前连接用户的信息
1 |
|
查看数据库的启动状态 (查看进程里面有没 有Oracle数据库这个进程)
1 |
|
表空间相关命令
Sql语句执行的时候要加上分号
创建表空间:
SQL> create tablespace test_work2 datafile'/u01/app/oracle/oradata/abc.dbf'3 size 10M AUTOEXTEND ON;
查询当前所有的表空间:
1 |
|
分类别查看当前的表空间:
1 2 3 4 5 |
|
删除相应的表空间
drop tablespace xxx including contents and datafiles;
查看详细数据文件:
SQL> select file_name,tablespace_name from dba_data_files;
扩展表空间
1 |
|
查看表空间的名字及文件所在位置
select tablespace_name,
file_id,
file_name,
round(bytes / (1024 * 1024), 0) total_spacefrom sys.dba_data_files
order by tablespace_name
-查询当前表空间下使用情况
select a.tablespace_name,
a.bytes / 1024 / 1024 "sum MB",
(a.bytes - b.bytes) / 1024 / 1024 "used MB",
b.bytes / 1024 / 1024 "free MB",
round(((a.bytes - b.bytes) / a.bytes) * 100, 2) "used%"from (select tablespace_name, sum(bytes) bytesfrom dba_data_files
group by tablespace_name) a,
(select tablespace_name, sum(bytes) bytes, max(bytes) largestfrom dba_free_space
group by tablespace_name) bwhere a.tablespace_name = b.tablespace_name
order by ((a.bytes - b.bytes) / a.bytes) desc;