Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

[ID] [int] IDENTITY(1,1) NOT NULL,

[RecordID] [nvarchar](100) NOT NULL,

[ServiceProviderID] [varchar](32) NOT NULL,

[Group] [nvarchar](32) NOT NULL,

[Department] [nvarchar](255) NOT NULL,

[UserID] [nvarchar](162) NOT NULL,

[UserNumber] [nvarchar](25) NOT NULL,

[GroupNumber] [nvarchar](25) NOT NULL,

[CallingNumber] [nvarchar](162) NOT NULL,

[CalledNumber] [nvarchar](162) NOT NULL,

[StartTime] [datetime] NOT NULL,

[AnswerTime] [datetime] NOT NULL,

[ReleaseTime] [datetime] NOT NULL,

[DialedDigits] [nvarchar](162) NOT NULL,

[TrunkGroupName] [nvarchar](255) NOT NULL,

[RedirectingNumber] [nvarchar](162) NOT NULL,

[CallDuration] [real] NOT NULL,

[Type] [nvarchar](16) NOT NULL,

[OriginalCalledNumber] [nvarchar](162) NOT NULL,

[AccountCode] [nvarchar](15) NOT NULL,

[AuthorizationCode] [nvarchar](15) NOT NULL,

[RedirectionReason] [nvarchar](40) NOT NULL,

[TerminatingLocation] [nvarchar](255) NOT NULL,

[EngageIPUserName] [nvarchar](255) NOT NULL,

[FileName] [nvarchar](255) NULL,

[RowNumber] [int] NULL,

[AmountRated] [decimal] NULL,

[Classification] [nvarchar](255) NULL,

[Owner] [nvarchar](255) NULL,

[BillingIdentifier] [nvarchar](255) NULL

 

 

All of the fields are populated directly from their corresponding collector services BroadWorks or Sansay. EngageIPUserName was chosen to store the EngageIP user instead of EngageIP UserID so that this table can live in any database without dependence on the main EngageIP database for reporting. Rates are checked for the EngageIP “Fraud” rate plan.

...