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
?/*Visns table doesn't use an autonumbered identity
--Turn on ability to insert identity (primary key)
SET IDENTITY_INSERT seclyr.Visns ON;
GO
*/
INSERT INTO Visns (VisnID, VisnCode, VisnName, [Description], DateInactive, Inactive)
VALUES
(1, N'1', N'VA New England Health Care System', NULL, NULL, 0)
, (2, N'2', N'VA Healthcare Network Upstate New York', NULL, NULL, 0)
, (4, N'4', N'VA Stars & Stripes Healthcare Network', NULL, NULL, 0)
, (5, N'5', N'VA Capitol Health Care Network', NULL, NULL, 0)
, (6, N'6', N'VA Mid-Atlantic Health Care Network', NULL, NULL, 0)
, (7, N'7', N'The Atlanta Network', NULL, NULL, 0)
, (8, N'8', N'VA Sunshine Healthcare Network', NULL, NULL, 0)
, (9, N'9', N'VA Mid South Healthcare Network', NULL, NULL, 0)
, (10, N'10', N'VA Healthcare System of Ohio', NULL, NULL, 0)
, (12, N'12', N'The Great Lakes Health Care System', NULL, NULL, 0)
, (15, N'15', N'VA Heartland Network', NULL, NULL, 0)
, (16, N'16', N'South Central VA Health Care Network', NULL, NULL, 0)
, (17, N'17', N'VA Heart of Texas Health Care Network', NULL, NULL, 0)
, (19, N'19', N'Rocky Mountain Network', NULL, NULL, 0)
, (20, N'20', N'Northwest Network', NULL, NULL, 0)
, (21, N'21', N'Sierra Pacific Network', NULL, NULL, 0)
, (22, N'22', N'Desert Pacific Healthcare Network', NULL, NULL, 0)
, (23, N'23', N'VA Midwest Health Care Network', NULL, NULL, 0)
, (100, N'CO', N'Central Office', NULL, NULL, 0)
/*
--Turn off ability to insert identity (primary key)
SET IDENTITY_INSERT seclyr.Visns OFF;
GO
*/