Cisco Systems Version 1.1 Network Router User Manual


 
B-1
Cisco Carrier Sensitive Routing User Guide
A P P E N D I X
B
Data Schema
This appendix describes the following:
Configuration Data Schema
Dataset Schema
Configuration Data Schema
BEGIN WORK;
SET CONSTRAINTS ALL DEFERRED;
CREATE TABLE ConfigurationData (
ActiveDataset text NOT NULL DEFAULT '_1' CONSTRAINT
ActiveDatasetSuffixInvalid
CHECK (
lower(ActiveDataset) = '_1' OR lower(ActiveDataset) = '_2'
),
LoggingLevel text NOT NULL DEFAULT 'Error' CONSTRAINT
LoggingLevelInvalid
CHECK (
lower(LoggingLevel) = 'error' OR
lower(LoggingLevel) = 'info' OR
lower(LoggingLevel) = 'debug'
),
CSR_ID varchar(64) NOT NULL,
CSR_Version text,
GKTMP_Versioninteger,
Priority integer NOT NULL DEFAULT 1CONSTRAINT
CSRPriorityInvalid
CHECK (Priority >= 1),