Activity overview
Latest activity by alex_sefrin
Putting the old version of System.threading.dll in the GAC solved the Problem. / comments
Putting the old version of System.threading.dll in the GAC solved the Problem.
Hi Eddie,
the problem is, that the RedGate.SQLDataCompare.Engine needs the old version of System.Threading.Dll (1.0.2856.102) in the same directory, on a machine with .Net Framework 4.0. I'm not sure if .Net Framework 3.5 had this old dll.
For my local tests I found a workaround. I create an app.config <?xml version="1.0" encoding="utf-8" ?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.0.2856.102" newVersion="4.0.30319.34209" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.0.2856.102" newVersion="4.0.30319.34209" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
For the tests which are started by a nightly build, this solution didn't work because the app.config is disregarded by the build.
Best regard,
Alex / comments
Hi Eddie,
the problem is, that the RedGate.SQLDataCompare.Engine needs the old version of System.Threading.Dll (1.0.2856.102) in the same directory, on a machine with .Net Framework 4.0. I'm not su...
SQLDataCompare.Engine needs System.Threading.dll
We're currently using RedGate.SQLDataCompare.Engine 10.7. for our nightly VisualStudio tests (v13 update 4, .NET framework 4.0) to compare tables.
After upgrading to 10.7 and Framework 4.0 we sudd...
you'll get them in a few minutes... / comments
you'll get them in a few minutes...
Extended Properties
I just installed the new version and suddenly getting lots of different objects.
New:
EXEC sp_addextendedproperty N'MS_Description', 'Auswertegruppennummer', 'SCHEMA', N'dbo', 'TABLE', N'Auswertegr...
Thanks, that will solve my problems! / comments
Thanks, that will solve my problems!
Hi Matthew,
my tables have some delete triggers and they fire if I try to delete them in the wrong order.
Kind regards,
Alex / comments
Hi Matthew,
my tables have some delete triggers and they fire if I try to delete them in the wrong order.
Kind regards,
Alex
Orderd Data Compare?
Hi,
is there a way to tell the synchronization in which table order it should delete/insert rows? I can‘t synchronize my databases because referential integrity problems.
Thanks,
Alex