码迷,mamicode.com
首页 >  
搜索关键字:tablespace    ( 1117个结果
sql分析常用查询
--表信息-- select owner, table_name, tablespace_name, num_rows,/*表数据量*/ temporary,/*是否是临时表*/ degree,/*并行度*/ blocks,/*快的数量*/ empty_blocks,/*空块的数量*/ last_a ...
分类:数据库   时间:2020-01-22 10:44:41    阅读次数:138
Oracle新建数据库
create tablespace HNNW logging datafile '\app\oratable_space\HNNW_20200114.dbf' size 50m autoextend on next 50m maxsize 20480m extent management local ...
分类:数据库   时间:2020-01-14 11:35:16    阅读次数:109
ORACLE下回收TEMP表空间
释放临时表空间 alter tablespace temp shrink space; --确定TEMP表空间的ts# SELECT TS#, NAME FROM SYS.TS$; --执行清理操作 temp表空间的TS# 为 3*, So TS#+ 1= 4 BEGIN FOR CUR IN 1 ...
分类:数据库   时间:2020-01-10 00:48:01    阅读次数:102
brtool 日常工作应用
扩张表空间 brspace -c force -function tscreate -tablespace PSAPES750X -class none -data both -size 8000 -compress yes -autoextend no brspace -c force -func ...
分类:其他好文   时间:2020-01-09 19:15:30    阅读次数:116
Oracle 数据库创建表空间、创建用户
创建表空间 create temporary tablespace user_name_temp tempfile '/oradata/ORA11G/user_name_temp.dbf' size 50m autoextend on next 50m maxsize unlimited --max ...
分类:数据库   时间:2020-01-05 22:07:01    阅读次数:104
DBA数据库信息查询常用SQL
常用DBA脚本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 ...
分类:数据库   时间:2020-01-05 00:25:52    阅读次数:123
DBA常用SQL之表空间与数据文件
select t.tablespace_name, round(sum(bytes / (1024 * 1024)), 0) ts_size from dba_tablespaces t, dba_data_files d where t.tablespace_name = d.tablespace ...
分类:数据库   时间:2020-01-05 00:19:49    阅读次数:101
oracle查询表空间的空间占用情况
select a.tablespace_name,a.bytes bytes_used,b.largest,round(((a.bytes - b.bytes)/a.bytes)*100,2) percent_used from (select tablespace_name,sum(bytes) ...
分类:数据库   时间:2020-01-05 00:17:23    阅读次数:104
Oracle和可视化视图工具教程
Oracle数据库安装教程 作者:黑小子-余 Qq:2931445528 微信:Y2931445528 可以找我,我有Oracle数据库安装包及工具 命令: Sqlplus /nolog Conn / as sysdba 创建表空间:(文件目录路径要核对) Create tablespace DAT ...
分类:数据库   时间:2019-12-29 21:55:42    阅读次数:118
ORA-01950: no privileges on tablespace 'USERS'
问题描述:对一张新增的表进行insert操作,提示没有操作权限,简单的记录一下 解决方案:grant resource to username grant resource to username 时 自动获得了有unlimited tablespace的系统权限 SQL> create table ...
分类:其他好文   时间:2019-12-25 16:18:51    阅读次数:113
1117条   上一页 1 ... 6 7 8 9 10 ... 112 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!