码迷,mamicode.com
首页 >  
搜索关键字:tablespace    ( 1117个结果
Oracle数据库应用
01.表空间 我们知道oarcle数据库真正存放数据的是数据文件(data files),Oarcle表空间(tablespaces)实际上是一个逻辑的概念,他在物理上是并不存在的,那么把一组data files 捻在一起就成为一个表空间。 使用该CREATE TABLESPACE语句创建一个表空间 ...
分类:数据库   时间:2017-12-21 16:01:18    阅读次数:173
Oracle数据库,常用SQL语句汇总
--查看表空间名称、数据文件的路径、大小、及使用率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
oracle新建表空间
/*分为四步 */ /*第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
052-149
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
052-147
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
oracle 查看各表空间剩余量
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
052-28
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
oracle数据库数据库表空间查询及扩充
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
oracle表空间转移
--查看表空间下的表 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
1117条   上一页 1 ... 27 28 29 30 31 ... 112 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!