v_DIM_INSTALLMENT

Contains information about an installment.

Fields

Field Field Type Null Description
INSTALLMENTDIMID int BBDW.[DIM_INSTALLMENT].[INSTALLMENTDIMID]
INSTALLMENTSYSTEMID uniqueidentifier yes BBDW.[DIM_INSTALLMENT].[INSTALLMENTSYSTEMID]
INSTALLMENTSEQUENCE int yes BBDW.[DIM_INSTALLMENT].[INSTALLMENTSEQUENCE]

Definition

Copy

create view [BBDW].[v_DIM_INSTALLMENT] as 
  select 
    [INSTALLMENTDIMID],
    [INSTALLMENTSYSTEMID],
    [INSTALLMENTSEQUENCE]
  from [BBDW].[DIM_INSTALLMENT];