在PL/SQL中查看表空間的方法通常是通過數據字典視圖來實現。以下是一些常用的數據字典視圖和查詢語句:
SELECT tablespace_name, status, contents, extent_management, allocation_type
FROM dba_tablespaces;
SELECT tablespace_name, file_name, bytes
FROM dba_data_files;
SELECT table_name, tablespace_name
FROM user_tables;
請注意,要查詢這些數據字典視圖,您可能需要具有相應的權限(如 SELECT 權限)才能訪問表空間信息。