Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何查询 Oracle 10g 数据库以确定表的并行度?我的搜索被证明是徒劳的。我预计它是这样的:
select degree from table_metadata
table_metadata关于我的表的元数据在哪里。
table_metadata
由于并行性似乎是未知的,请考虑以下语句:
create table foo ... parallel (8);
这里parallel (8)设置并行度为8
parallel (8)
SELECT degree FROM user_tables WHERE table_name = <<some table name>>
假设您拥有这张桌子,它将起作用。否则,根据您的权限,使用ALL_TABLES或DBA_TABLES而不是在列USER_TABLES上添加谓词。OWNER
ALL_TABLES
DBA_TABLES
USER_TABLES
OWNER