Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
?/*This isn't DSSBatchName as advertised. Commenting out, because this table script is on a different sql file
--ODS code
CREATE TABLE dbo.CallCenterPrograms
(
--fields
CallCenterProgramID tinyint IDENTITY(1,1) NOT NULL,
CallCenterProgramName varchar (50) NOT NULL,
--primary key
CONSTRAINT PK_CallCenterProgramss PRIMARY KEY CLUSTERED
(
CallCenterProgramID ASC
)
)
ON DefinitionData
WITH (DATA_COMPRESSION = PAGE)
GO
--foreign keys
--indexes
--constraints
--Metadata descriptions for each field
EXECUTE sp_addextendedproperty
N'MS_Description', N'Primary Key',
N'SCHEMA', N'dbo',
N'TABLE', N'CallCenterPrograms',
N'COLUMN', N'CallCenterProgramID'
GO
EXECUTE sp_addextendedproperty
N'MS_Description', N'Name for the call center program',
N'SCHEMA', N'dbo',
N'TABLE', N'CallCenterPrograms',
N'COLUMN', N'CallCenterProgramName'
GO
*/