Hi,When I try to create a following SP in a new server, it says the error - Msg 6528, Level 16, State 1, Procedure usp_BulkCopy, Line 3Assembly 'SqlBulkCopy' was not found in the SQL catalog of database 'master'.USE [master]GO/****** Object: StoredProcedure [dbo].[usp_BulkCopy] Script Date: 08/22/2012 23:32:59 ******/CREATE PROCEDURE [dbo].[usp_BulkCopy] @sourceServer [nvarchar](255), @sourceDatabase [nvarchar](255), @sourceSelectQuery [nvarchar](4000), @destinationServer [nvarchar](255), @destinationDatabase [nvarchar](255), @destinationTable [nvarchar](255), @FlagKeepIdentity [bit], @throwExceptionOnErrors [bit], @SourceTrusted [bit], @DestTrusted [bit], @SourceUser [nvarchar](255), @SourcePass [nvarchar](255), @DestUser [nvarchar](255), @DestPass [nvarchar](255)WITH EXECUTE AS CALLERASEXTERNAL NAME [SqlBulkCopy].[StoredProcedures].[usp_BulkCopy]GO
How do I overcome this? I am not sure what an assembly is and if it is indeed a real issue.Thanks for your time..