一、实例信息
*sysconfig ————> onconfig文件
*sysprofile ————> 服务器统计信息
*syslog ————> 逻辑日志
*sysvpprof ————> 虚拟处理器
create table "sysmaster".sysconfig {服务器配置参数}
(
cf_id integer, {唯一数字标志符 }
cf_name char(1, {onconfig参数名 }
cf_flags integer, {标志,0=在视图中 }
cf_original char(256), {启动时在onconfig中的值 }
cf_effective char(256), {实际使用的值 }
cf_default char(256) {onconfig文件中不指定时默认使用的值 }
);
grant select on sysconfig to public;
create table "sysmaster".sysprofile {服务器概貌信息}
(
name char(13), {概貌元素名 }
value integer {当前值 }
);
grant select on sysprofile to public;
create table "sysmaster".syslogs {逻辑日志信息}
(
number smallint, {日志文件号 }
uniqid integer, {日志文件唯一ID }
size integer, {日志文件页 }
used integer, {日志文件使用的页 }
is_used integer, {1为已用,0为未用 }
is_current integer, {1为当前 }
is_backed_up integer, {1为备份 }
is_new integer, {1为新 }
is_archived integer, {1为存档 }
is_temp integer, {1为临时 }
flags smallint {日志文件标志 }
);
grant select on syslogs to public;
create table "sysmaster".sysvpprof {虚处理器信息与统计}
(
vpid integer, {虚拟处理器 }
class char(50, {虚拟处理器类名(cpu, adm, lio, pio等)}
usercpu float, {用户时间unix秒数 }
syscpu float {系统时间unix秒数 }
);
grant select on sysvpprof to public;