在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 权限)才能访问表空间信息。