Web Listing 2: T-SQL Script to install myPointType USE AdventureWorks; GO --DROP TYPE myPointType --DROP ASSEMBLY myPointType CREATE ASSEMBLY myPointType FROM 'C:\Documents and Settings\Bills\My Documents\Visual Studio 2005\Projects\SqlServerUDT\SqlServerUDT\bin\SQLServerUDT.dll' WITH permission_set = SAFE; GO CREATE TYPE myPointType EXTERNAL NAME [myPointType].[SqlServerUDT.myPointType]; GO