Activity overview
Latest activity by jheidt
Couldn't you just put the value you wanted as the default value for the column, run the synch, remove the default value, and then resynch? / comments
Couldn't you just put the value you wanted as the default value for the column, run the synch, remove the default value, and then resynch?
Synchronization Warnings Report?
I am using the command line tools to process hundreds of databases and generate the sync scripts, however I would like to know of the potential for data loss due to truncation etc for each database...
This is great! I have told the guys here and we will be renewing our license today. Thank you so very much Red Gate, you guys rock! / comments
This is great! I have told the guys here and we will be renewing our license today. Thank you so very much Red Gate, you guys rock!
Does anyone have any feedback for me about this? My support contract and licenses for my red gate products are about to expire, and I'm considering my options for what to renew, as it stands here, if I have to manually edit these files or create a tool to do such I don't think SQL compare will work for what my office needs.
Maybe I just overlooked something? / comments
Does anyone have any feedback for me about this? My support contract and licenses for my red gate products are about to expire, and I'm considering my options for what to renew, as it stands here, ...
David, the new column does have a default value. The old column did not, and allowed nulls.
The insert statement SQL Compare generates when filling the temp table it creates (which has the default value specified) fails because the insert statement doesnt specify what to do if the value is null - this is per the ANSI SQL spec.
What SQL Compare should do is use IsNull([ChangedColumn],<default value>) in its select statement, or give the user the option to do that.
see here for more of what im talking about: http://www.developersdex.com/sql/messag ... &r=6164216 / comments
David, the new column does have a default value. The old column did not, and allowed nulls.
The insert statement SQL Compare generates when filling the temp table it creates (which has the default ...
SQL Compare - changing nullability
I had to hand tune a sql script made by SQL Compare (v 6.2.0.271), the problem was the nullability of a large group of columns in a large amount of tables.
The problem was the INSERT INTO portion o...
Is it possible to exclude specific columns from a comparison
I have an interesting situation, and I figured I would try to get some help here before contacting RG support.
We have what could most easily described a distributed database system, in that system...