Comments
Sort by recent activity
I guess I'm just looking for some convenience when it comes to the logs as I get them. It's nice to have notification via log file when errors occur, but it if were more finite in it's reporting, it would make it ever better. If it were configurable on some level, so you could decide what type of data you see (i.e. Failures, Successes, both, etc.) then it would allow us to choose what we saw. In my opinion, that could be very useful for us busy DBA's who don't have a lot of time to parse a log file all the way through looking for a single error. / comments
I guess I'm just looking for some convenience when it comes to the logs as I get them. It's nice to have notification via log file when errors occur, but it if were more finite in it's reporting, ...
Here is a line i pulled from the sync script:
INSERT INTO [dbo].[DATA_FLOAT] ([data_float_id], [data_float], [_temp_data_float_id]) VALUES (25555, -97.39872, NULL)
So, as you can see, the sync script is truncating it too. / comments
Here is a line i pulled from the sync script:
INSERT INTO [dbo].[DATA_FLOAT] ([data_float_id], [data_float], [_temp_data_float_id]) VALUES (25555, -97.39872, NULL)
So, as you can see, the sync scri...
Hi,
I played with the options in the UI for a little bit and found an optimum configuration that worked for me.
mappings.Options = new EngineDataCompareOptions(
MappingOptions.IgnoreCase | MappingOptions.IgnoreSpaces |
MappingOptions.IncludeIndexedViews | MappingOptions.IncludeIdentities |
MappingOptions.IncludeTimestamps,
ComparisonOptions.Default,
SqlOptions.DisableKeys| SqlOptions.UseTransactions)
Thanks for your quick response, if I see any other issues, I'll post them here. / comments
Hi,
I played with the options in the UI for a little bit and found an optimum configuration that worked for me.
mappings.Options = new EngineDataCompareOptions(
MappingOptions.IgnoreCase | MappingO...