Thaks ,, i did just find that one myself ,,but I'm not really sure if I get something useful from it

(new to this sql trace stuff)
However I think this one is causing the problem..
declare @p1 int
set @p1=NULL
exec sp_prepexec @p1 output,N'@P1 int,@P2 int,@P3 nvarchar(12),@P4 int,@P5 nvarchar(3258)',N'INSERT INTO VCI_SCANRESULTS_TARGETS (scanh_id, update_id, target_uid, target_status, oem_patch_info) VALUES (@P1, @P2, @P3, @P4, @P5)',165,854,N'vm-101',0,N'SP2SQL Server 2005 Workgroup Edition0409MSWU-161SQLServer2005-KB934458-x86-ENU.exeSP2SQL Server 2005 Workgroup Edition0409MSWU-161SQLServer2005-KB934459-x86-ENU.exeSP2SQL Server 2005 Workgroup Edition0409MSWU-161SQLServer2005-KB934458-x86-ENU.exeSP2SQL Server 2005 Workgroup Edition0409MSWU-161SQLServer2005-KB934459-x86-ENU.exeSP2SQL Server 2005 Workgroup Edition0409MSWU-161SQLServer2005-KB934458-x86-ENU.exeSP2SQL Server 2005 Workgroup Edition0409MSWU-161SQLServer2005-KB934459-x86-ENU.exeSP2SQL Server 2005 Workgroup Edition0409MSWU-161SQLServer2005-KB934458-x86-ENU.exeSP2SQL Server 2005 Workgroup Edition0409MSWU-161SQLServer2005-KB934459-x86-ENU.exe'
select @p1
The insert string above is about 1630 characters..
The server in question is running 4 instances of SQL server 2005, that's probably why the string formatted this way. Is there some way to work around this?
Please don't tell me to install SQL server on four different servers instead
//EDIT
The above string was incorrectly cut'n'pasted from the trace log,,here's the correct one.
declare @p1 int
set @p1=NULL
exec sp_prepexec @p1 output,N'@P1 int,@P2 int,@P3 nvarchar(12),@P4 int,@P5 nvarchar(3258)',N'INSERT INTO VCI_SCANRESULTS_TARGETS (scanh_id, update_id, target_uid, target_status, oem_patch_info) VALUES (@P1, @P2, @P3, @P4, @P5)',165,854,N'vm-101',0,N'<Patches><Missing><Patch><SP>SP2</SP><Product>SQL Server 2005 Workgroup Edition</Product><LanguageID>0409</LanguageID><BulletinID>MSWU-161</BulletinID><PatchKey>SQLServer2005-KB934458-x86-ENU.exe</PatchKey></Patch><Patch><SP>SP2</SP><Product>SQL Server 2005 Workgroup Edition</Product><LanguageID>0409</LanguageID><BulletinID>MSWU-161</BulletinID><PatchKey>SQLServer2005-KB934459-x86-ENU.exe</PatchKey></Patch><Patch><SP>SP2</SP><Product>SQL Server 2005 Workgroup Edition</Product><LanguageID>0409</LanguageID><BulletinID>MSWU-161</BulletinID><PatchKey>SQLServer2005-KB934458-x86-ENU.exe</PatchKey></Patch><Patch><SP>SP2</SP><Product>SQL Server 2005 Workgroup Edition</Product><LanguageID>0409</LanguageID><BulletinID>MSWU-161</BulletinID><PatchKey>SQLServer2005-KB934459-x86-ENU.exe</PatchKey></Patch><Patch><SP>SP2</SP><Product>SQL Server 2005 Workgroup Edition</Product><LanguageID>0409</LanguageID><BulletinID>MSWU-161</BulletinID><PatchKey>SQLServer2005-KB934458-x86-ENU.exe</PatchKey></Patch><Patch><SP>SP2</SP><Product>SQL Server 2005 Workgroup Edition</Product><LanguageID>0409</LanguageID><BulletinID>MSWU-161</BulletinID><PatchKey>SQLServer2005-KB934459-x86-ENU.exe</PatchKey></Patch><Patch><SP>SP2</SP><Product>SQL Server 2005 Workgroup Edition</Product><LanguageID>0409</LanguageID><BulletinID>MSWU-161</BulletinID><PatchKey>SQLServer2005-KB934458-x86-ENU.exe</PatchKey></Patch><Patch><SP>SP2</SP><Product>SQL Server 2005 Workgroup Edition</Product><LanguageID>0409</LanguageID><BulletinID>MSWU-161</BulletinID><PatchKey>SQLServer2005-KB934459-x86-ENU.exe</PatchKey></Patch></Missing><Installed></Installed></Patches>'
select @p1
//EDIT