– 查看变量
select
b.tenant_name,
a.tenant_id,
tenant_type,
name,
value,
info,
scope
from
CDB_OB_SYS_VARIABLES a,
DBA_OB_TENANTS b
where
a.tenant_id = b.tenant_id
and name like ‘%_nlj_batching_enabled%’
and tenant_type not in (‘SYS’,‘META’);
– 查看配置项
select
b.tenant_name,
a.tenant_id,
tenant_type,
name,
value,
SECTION,EDIT_LEVEL
from
GV$OB_PARAMETERS a,
DBA_OB_TENANTS b
where
a.TENANT_ID = b.TENANT_ID
and a.name like ‘%_resource_limit_max_session_num%’
and tenant_type not in (‘SYS’,‘META’);