Appeindix B - Users Table T-SQL

Applies To: Windows Server 2008, Windows Server 2008 R2

The following is the T-SQL code for creating the ADMTHelper table.

USE [UserSidTracking]
GO

/****** Object:  Table [dbo].[Users]    Script Date: 07/14/2009 16:34:06 ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

CREATE TABLE [dbo].[Users](
[EmpID] [nchar](10) NULL,
[FirstName] [nchar](10) NULL,
[LastName] [nchar](30) NULL,
[SidHistoryPresent] [char](1) NULL
) ON [PRIMARY]

GO