Tables [dbo].[SHAgentDetailHistory]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapTrue
Row Count (~)0
Created1:00:40 AM Thursday, March 21, 2019
Last Modified1:00:40 AM Thursday, March 21, 2019
NameData TypeMax Length (Bytes)Allow NullsIdentity
AgentDetailHistoryIDint4
False
1 - 1
AgentIDint4
False
PostitionStartDatedatetime8
False
PostitionEndDatedatetime8
False
Titlevarchar(50)50
True
ManagerIDint4
False
ClassIDint4
False
AllocateServicedecimal(16,5)9
False
AllocateSalesdecimal(16,5)9
False
AllocateSupplydecimal(16,5)9
False
AllocateAdmindecimal(16,5)9
False
AllocateOtherdecimal(16,5)9
False
Descriptionvarchar(255)255
True
CreateDatedatetime8
False
CreatorIDchar(8)8
False
LastUpdatedatetime8
False
UpdatorIDchar(8)8
False
TerminationIDint4
False
CREATE TABLE [dbo].[SHAgentDetailHistory]
(
[AgentDetailHistoryID] [int] NOT NULL IDENTITY(1, 1),
[AgentID] [int] NOT NULL,
[PostitionStartDate] [datetime] NOT NULL,
[PostitionEndDate] [datetime] NOT NULL,
[Title] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[ManagerID] [int] NOT NULL,
[ClassID] [int] NOT NULL,
[AllocateService] [decimal] (16, 5) NOT NULL,
[AllocateSales] [decimal] (16, 5) NOT NULL,
[AllocateSupply] [decimal] (16, 5) NOT NULL,
[AllocateAdmin] [decimal] (16, 5) NOT NULL,
[AllocateOther] [decimal] (16, 5) NOT NULL,
[Description] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[CreateDate] [datetime] NOT NULL,
[CreatorID] [char] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[LastUpdate] [datetime] NOT NULL,
[UpdatorID] [char] (8) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[TerminationID] [int] NOT NULL
) ON [PRIMARY]
GO