Home > Database > Mysql Tutorial > body text

Oracle 脚本之查看压缩表格

WBOY
Release: 2016-06-07 17:45:49
Original
1266 people have browsed it

1、查询内是否有压缩表格存在

  引用

  SELECT u.name AS owner,

  o.name AS table_name

  FROM sys.tab$ t,sys.obj$ o,sys.user$ u

  WHERE BITAND (t.spare1, 131072) = 131072

  AND o.obj# = t.obj#

  AND o.owner# = u.user#;

  2、以下查询表空间是否压缩

  引用

  SELECT name

  FROM sys.ts$

  WHERE BITAND (flags, 64) = 64;

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!