I have an oracle 11g source which I hae migrated to SQL Server 2008 using SQL Server Migration assistant tool from microsoft. The oracle source had a table that contained a long raw column. The type mapping that was used for migration was long raw -> varbinary(max). When I view the oracle data using SQL developer, the column is only showing RAW in every rows. However in SQL Server, I am able to view the migrated data in string format.
What can I do to validate or crosscheck the data in oracle to that with the data in SQL server, or atleast is validation of long raw column possible?
rawis a binary data type, it seems odd that it was mapped to a character data type; I would have expectedvarbinary(max)instead. I know nothing about SSMA, but this may be a case where you have to migrate the binary data yourself. As for validating it, it depends what the data actually is but I assume you can write a short script to query a few rows and then try opening the binary data in whatever application knows how to read it. - Pondlife