2 Star 0 Fork 0

mirrors_ReneNyffenegger/fatdba-Oracle-Database-Scripts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
file_block.sql 747 Bytes
一键复制 编辑 原始数据 按行查看 历史
Prashant Dixit 提交于 2022-03-05 22:32 . Create file_block.sql
undef file_id
undef block_id
undef tsname
col ts_name new_value tsname
select ts.name ts_name
from v$tablespace ts
,v$datafile df
where file# = &&file_id
and ts.ts# = df.ts#
;
set termout on
set heading off
col a format a77 fold_after
select 'File number : '||&&file_id a
,'Block number : '||&&block_id a
,'Owner : '||owner a
,'segment name : '||segment_name a
,'Segment type : '||segment_type a
,'Partition name: '||partition_name a
,'Tablespace : '||e.tablespace_name a
,'File name : '||f.file_name a
from dba_extents e
,dba_data_files f
where e.file_id = f.file_id
and e.file_id = &&file_id
and e.block_id <= &&block_id
and e.block_id + e.blocks > &&block_id
and e.tablespace_name = '&&tsname'
;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_ReneNyffenegger/fatdba-Oracle-Database-Scripts.git
git@gitee.com:mirrors_ReneNyffenegger/fatdba-Oracle-Database-Scripts.git
mirrors_ReneNyffenegger
fatdba-Oracle-Database-Scripts
fatdba-Oracle-Database-Scripts
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385