Activity overview
Latest activity by lguilhou
I've got the same problem (since SQL Compare 5)
In my case, I can reproduce the problem by creating an assembly for System.Web
Script:
---
CREATE ASSEMBLY [System.Drawing]
FROM 'c:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\System.Drawing.dll'
WITH PERMISSION_SET=UNSAFE
GO
CREATE ASSEMBLY [System.Web]
FROM 'c:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\System.Web.dll'
WITH PERMISSION_SET=UNSAFE
GO
---
If only System.Drawing is created, SQL Compare still works. After System.Web, the comparison progress window aborts with 'Index was outside the bounds of the array'
It makes it impossible to use SQL Compare since we can't really drop and recreate all assemblies every time.
(as for referencing System.Web from SQLServer, it's very, very bad, but it's something I inherited from the previous team and I'm stuck with it for the moment...)
If there was a way to skip the assembly comparison, that'd be very useful. / comments
I've got the same problem (since SQL Compare 5)
In my case, I can reproduce the problem by creating an assembly for System.Web
Script:
---
CREATE ASSEMBLY [System.Drawing]
FROM 'c:\WINDOWS\Microsof...