Sorry about that. Here is the TVDTCREATE TYPE [dbo].[ItemPropertyInt] AS TABLE( [PropertyOwner] [uniqueidentifier] NULL, [PropertyId] [int] NULL, [PropertyValue] [int] NULL, [PropertyName] [nvarchar](128) NULL)
and here is the table i'm updatingCREATE TABLE [dbo].[Items_tblPropertiesInt]( [ID] [int] IDENTITY(1,1) NOT NULL, [OwnerID] [uniqueidentifier] NOT NULL, [PropertyID] [int] NOT NULL, [PropertyValue] [int] NOT NULL, [PropertyName] [nvarchar](128) NULL, CONSTRAINT [PK_Items_tblPropertiesInt] PRIMARY KEY CLUSTERED ( [OwnerID] ASC, [PropertyID] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON))