This error occurs when you are trying to define a Decimal field with precision more than 38. If you would require more precission, please use any of the following:
[Sales Price] [Numeric](50,2) NULL,
[Quantity] [int](50) NULL,
[Amount] [Numeric](50,2) NULL,
Money
Float
CREATE TABLE [dbo].[Transact.Details](
[Store ID] [varchar](50) NULL,
[Customer ID] [varchar](50) NULL,
[Transaction ID] [varchar](50) NULL,
[Transaction Date] [varchar](50) NULL,
[Category ID] [varchar](50) NULL,
[Item ID] [varchar](50) NULL,
[Sales Price] [Numeric](38,2) NULL,
[Quantity] [int] NULL,
[Amount] [Numeric](38,2) NULL,
) ON [PRIMARY]
No comments:
Post a Comment