Bixfliz
Results
2
comments of
Bixfliz
I see now that my problem was with the 'decimal' type for a user defined type.
``` --FeeVolume_UDT USE [PDS] GO /****** Object: UserDefinedDataType [dbo].[FeeVolume_UDT] Script Date: 6/5/2023 12:08:28 PM ******/ CREATE TYPE [dbo].[FeeVolume_UDT] FROM [decimal](12, 6) NULL GO USE [PDS] GO --Table using the FeeVolume_UDT...