01.表空间 我们知道oarcle数据库真正存放数据的是数据文件(data files),Oarcle表空间(tablespaces)实际上是一个逻辑的概念,他在物理上是并不存在的,那么把一组data files 捻在一起就成为一个表空间。 使用该CREATE TABLESPACE语句创建一个表空间 ...
分类:
数据库 时间:
2017-12-21 16:01:18
阅读次数:
173
--查看表空间名称、数据文件的路径、大小、及使用率select b.tablespace_name "表空间名称", b.file_name "数据文件路径", b.bytes/1024/1024 "大小(M)", substr((b.bytes-sum(nvl(a.bytes,0)))/(b.by ...
分类:
数据库 时间:
2017-12-20 18:57:50
阅读次数:
207
/*分为四步 */ /*第1步:创建临时表空间 */ create temporary tablespace slfph_temp tempfile 'D:\oracledata\slfph_temp.dbf' size 50m autoextend on next 50m maxsize 2048... ...
分类:
数据库 时间:
2017-12-16 16:04:34
阅读次数:
228
You executed the following command to create a tablespace called SALES_DATA:SQL> CREATE TABLESPACE sales_data DATAFILE SIZE 100MSEGMENT SPACE MANAGEME ...
分类:
其他好文 时间:
2017-12-14 14:52:58
阅读次数:
114
View the Exhibit. You want to create a tablespace to contain objects with block size 16 KB. But while configuring thestorage you find that the block s ...
分类:
其他好文 时间:
2017-12-14 14:01:41
阅读次数:
164
1、查看所有表空间大小、剩余量: select dbf.tablespace_name,dbf.totalspace "总量(M)",dbf.totalblocks as 总块数,dfs.freespace "剩余总量(M)",dfs.freeblocks "剩余块数",(dfs.freespace ...
分类:
数据库 时间:
2017-12-10 16:58:04
阅读次数:
252
View the Exhibit and examine the undo tablespace attributes. Your database instance is experiencing a large volume of transactions from non-DBA users ...
分类:
其他好文 时间:
2017-12-05 14:55:57
阅读次数:
100
1、查询表空间,及表空间的大小 SELECT t.tablespace_name, round(SUM(bytes / (1024 * 1024)), 0) ts_size FROM dba_tablespaces t, dba_data_files d WHERE t.tablespace_nam ...
分类:
数据库 时间:
2017-12-02 12:59:53
阅读次数:
308
本章节继续介绍:impdp+dblink技术,特性是节省硬盘空间,减少传输时间。 1.试验以HR用户为测试 1)查看主机下HR用户下的信息(实际用户以数据库中用户为准) select USERNAME,DEFAULT_TABLESPACE from dba_users where USERNAME ... ...
分类:
数据库 时间:
2017-11-24 19:02:52
阅读次数:
204
--查看表空间下的表 select t.TABLE_NAME,T.TABLESPACE_NAME from dba_tables t where t.TABLESPACE_NAME = '${spacename}' and owner = '${owner}'; --查看表空间下的索引 select ...
分类:
数据库 时间:
2017-11-22 00:00:51
阅读次数:
215