日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

oracle 查看表属主和表空间sql

發布時間:2025/4/5 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 oracle 查看表属主和表空间sql 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

查看表空間

select * from user_tablespaces?where table_name = 'TableName'

查看表屬主

select ?Owner? from all_tab_columns where table_name = 'TableName'

?

附錄:

A?tablespace?is a storage location where the actual data underlying?database?objects can be kept. It provides a layer of abstraction between physical and logical data,[1]?and serves to allocate storage for all?DBMS?managed segments. (A database segment is a database object which occupies physical space such astable?data and?indexes.) Once created, a tablespace can be referred to by name when creating database segments.

Tablespaces specify only the database storage locations, not the logical database structure, or?database schema. For instance, different objects in the same schema may have different underlying tablespaces. Similarly, a tablespace may service segments for more than one schema. Sometimes it can be used to specify schema as to form a bond between logical and physical data.

By using tablespaces, an administrator can control the disk layout of an installation. A common use of tablespaces is to optimize performance. For example, a heavily used index can be placed on a fast?SCSI?disk. On the other hand, a database table which contains archived data that is rarely accessed could be stored on a less expensive but slower?IDE?disk.

While it is common for tablespaces to store their data in a filesystem file, a single file must be part of a single tablespace. Some?database management systemsallow tablespaces to be configured directly over operating-system device entries, called?raw devices, providing better performance by avoiding the OS filesystem overheads.

Oracle?stores data logically in tablespaces and physically in datafiles associated with the corresponding tablespace.

reference:http://en.wikipedia.org/wiki/Tablespace

?

轉載于:https://www.cnblogs.com/davidwang456/p/3745921.html

總結

以上是生活随笔為你收集整理的oracle 查看表属主和表空间sql的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。