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
?
--Turn on ability to insert identity (primary key)
SET IDENTITY_INSERT dbo.StatusTypes ON;
GO
INSERT INTO dbo.Statuses (StatusTypeID, StatusName)
VALUES
(1,'*Missing*')
,(2,'*Unknown at this time*')
,(3 ,'ACTIVE')
,(4 ,'CANCELLED')
,(5 ,'COMPLETE')
,(6 ,'DISCONTINUED')
,(7 ,'DISCONTINUED/EDIT')
,(8 ,'EXPIRED')
,(9 ,'LAPSED')
,(10 ,'NO STATUS')
,(11 ,'PARTIAL RESULTS')
,(12 ,'PENDING')
,(13 ,'SCHEDULED')
,(14 ,'UNRELEASED')
--Turn off ability to insert identity (primary key)
SET IDENTITY_INSERT dbo.Statuses OFF;
GO