hi with r2
change the create sql scirpt with
CREATE TABLE [dbo].[DimSpecialOffer](
[SpecialOfferKey] [int] IDENTITY(1,1) NOT NULL
CONSTRAINT [PK_SpecialOffer_SpecialOfferKey] PRIMARY KEY CLUSTERED ,
[SpecialOfferAlternateKey] [int] NULL,
[SpecialOfferDescription] [nvarchar](255) NULL,
[DiscountPct] [
smallmoney] NULL,
.... othw you would not see the DiscountPct in the slowing changing dimension wizard... becuase of the incompatibile types in r2...
Mario
