These tables contain configuration information for the PCI and the PCA/JVM.
Stores the directives that configure the PCI Bridge.
Located in sybpcidb. The columns for pci_directives are:
Name |
Datatype |
Description |
---|---|---|
pci_directives_index |
int |
The index of the directive. |
pci_directives_name |
varchar(255) |
The name of the directive. |
pci_directives_description |
varchar(255) |
A description of the directive. |
pci_directives_enabled |
int |
Values are:
|
pci_directives_status |
int |
Reserved for future use. |
Unique clustered index on pci_directives_name
Unique nonclustered index on pci_directives_index
Stores information that defines each of the arguments used to configure the PCI Bridge.
Located in sybpcidb. The columns for pci_arguments are:
Name |
Datatype |
Description |
---|---|---|
pci_args_directive_index |
int |
The index of the directive to which the argument belongs. |
pci_args_name |
varchar(255) |
The name of the argument. |
pci_args_units |
varchar(255) |
The units type. Values are:
|
pci_args_number_value |
int |
When units=number, the value of number. If units=switch, the value is zero (0). |
pci_args_string_value |
varchar(255) |
Reserved for future use. |
pci_args_description |
varchar(255) |
Brief text description of the argument and its purpose. |
pci_args_enabled |
int |
Values are:
|
pci_args_status |
int |
Reserved for future use. |
Unique clustered index on pci_args_directive_index, pci_args_name
Contains information describing each slot, including table names for the slot’s directives and arguments.
Located in sybpcidb. The columns for pci_slotinfo are:
Name |
Datatype |
Description |
---|---|---|
slot_number |
int |
The number of the slot. |
slot_name |
varchar(255) |
The name of the slot, such as JVM. |
slot_pca_directives_table_name |
varchar(255 |
The name of the PCA directives table, such as pca_jre_directives. |
slot_pca_arguments_table_name |
varchar(255 |
The name of the PCA arguments table, such as pca_jre_arguments. |
slot_status |
varchar(255) |
Reserved for future use. |
Unique clustered index on slot_name
Unique nonclustered index on slot_number
Located in sybpcidb. The columns for pci_slot_syscalls are:
Name |
Datatype |
Description |
---|---|---|
syscall_slot_number |
int |
The slot number associated with the system call. |
syscall_system_call |
varchar(255) |
The name of the system call. |
syscall_dispatch_name |
varchar(255) |
The name of the dispatch function for the system call. |
syscall_enabled |
int |
Values are:
|
syscall_status |
int |
Reserved for future use. |
Unique clustered index on syscall_slot_number, syscall_system_call
Stores information about the directives used to configure the PCA/JVM.
Located in sybpcidb. The columns for pca_jre_directives are:
Name |
Datatype |
Description |
---|---|---|
jre_directives_index |
int |
The index of the directive. |
jre_directives_name |
varchar(255) |
The name of the directive. |
jre_directives_description |
varchar(255 |
A text description of the directive. |
jre_directives_enabled |
int |
Values are:
|
jre_directives_status |
int |
Reserved for future use. |
Unique clustered index on jre_directives_name.
Unique nonclustered index on jre_directives_index.
Stores information about the arguments used to configure the PCA/JVM plug-in.
Located in sybpcidb. The columns for pca_jre_arguments are:
Name |
Datatype |
Description |
---|---|---|
jre_args_directive_index |
int |
The index of the directive to which the argument belongs. |
jre_args_name |
varchar(255) |
The name of the argument. |
jre_args_units |
varchar(255) |
The argument type. Values are:
|
jre_args_number_value |
int |
If units=number, holds the number associated with the argument. |
jre_args_string_value |
varchar(255) |
If units=string or units=array, holds the string value associated with the argument. |
jre_args_description |
varchar(255) |
A brief text description of the argument. |
jre_args_enabled |
int |
Values are:
|
jre_args_status |
int |
Reserved for future use. |
Unique clustered index on jre_args_directive_index, jre_args_name, jre_args_string_value