存储过程里面有个临时表,我怎么查询这个临时表的数据

存储过程里面有个临时表,我怎么查询这个临时表的数据,第1张

临时表是在一次会话(session)中有效的,退出即自动删除。因此,你要查看临时表的数据的话:》方法1、在存贮过程中SELECT》方法2、使用全局临时表(##表名),然后外面可以看--但要注意及时清理,否则再次执行过程会报错(表已经存在)

select tablespace_name,file_name,bytes/1024/1024 file_size,autoextensible from dba_temp_files

select status,enabled, name, bytes/1024/1024 file_size from v_$tempfile--sys用户查看

2、缩小临时表空间大小

alter database tempfile 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\TELEMT\TEMP01.DBF' resize 100M

3、扩展临时表空间:

方法一、增大临时文件大小:

SQL>alter database tempfile ‘/u01/app/oracle/oradata/orcl/temp01.dbf’ resize 100m

方法二、将临时数据文件设为自动扩展:

SQL>alter database tempfile ‘/u01/app/oracle/oradata/orcl/temp01.dbf’ autoextend on next 5m maxsize unlimited

方法三、向临时表空间中添加数据文件:

SQL>alter tablespace temp add tempfile ‘/u01/app/oracle/oradata/orcl/temp02.dbf’ size 100m

4、创建临时表空间:

SQL>create temporary tablespace temp1 tempfile ‘/u01/app/oracle/oradata/orcl/temp11.dbf’ size 10M

5、更改系统的默认临时表空间:

--查询默认临时表空间

select * from database_properties where property_name='DEFAULT_TEMP_TABLESPACE'

--修改默认临时表空间

alter database default temporary tablespace temp1

所有用户的默认临时表空间都将切换为新的临时表空间:

select username,temporary_tablespace,default_ from dba_users

--更改某一用户的临时表空间:

alter user scott temporary tablespace temp

6、删除临时表空间

删除临时表空间的一个数据文件:

SQL>alter database tempfile ‘/u01/app/oracle/oradata/orcl/temp02.dbf’ drop

删除临时表空间(彻底删除):

SQL>drop tablespace temp1 including contents and datafiles cascade constraints

7、查看临时表空间的使用情况(GV_$TEMP_SPACE_HEADER视图必须在sys用户下才能查询)

GV_$TEMP_SPACE_HEADER视图记录了临时表空间的使用大小与未使用的大小

dba_temp_files视图的bytes字段记录的是临时表空间的总大小

SELECT temp_used.tablespace_name,

total - used as "Free",

total as "Total",

round(nvl(total - used, 0) * 100 / total, 3) "Free percent"

FROM (SELECT tablespace_name, SUM(bytes_used) / 1024 / 1024 used

FROM GV_$TEMP_SPACE_HEADER

GROUP BY tablespace_name) temp_used,

(SELECT tablespace_name, SUM(bytes) / 1024 / 1024 total

FROM dba_temp_files

GROUP BY tablespace_name) temp_total

WHERE temp_used.tablespace_name = temp_total.tablespace_name

ORDER BY B.TABLESPACE, B.SEGFILE#, B.SEGBLK#, B.BLOCKS


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10819937.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-11
下一篇 2023-05-11

发表评论

登录后才能评论

评论列表(0条)

保存