Thanks. For now, if you want, edit NotSupportedByAzureFile.Config and go to line 29. You should see this:
<NotSupported Text="([,\s]|\()+(ALLOW_(ROW|PAGE)_LOCKS|PAD_INDEX)\s*=\s*(ON|OFF)" ReplaceWith="" SeverityLevel="0" ReplaceString="true" DisplayWarning="false" DefaultMessage="true" WarningMessage="" />
Add this line after line 29:
<NotSupported Text="([,\s]|\()+DATA_COMPRESSION\s*=\s*ROW" ReplaceWith="" SeverityLevel="0" ReplaceString="true" DisplayWarning="false" DefaultMessage="true" WarningMessage="" />
This will remove DATA_COMPRESSION = ROW from the create index statement. If you want, you can turn on DisplayWarning (true) and turn DefaultMessage off (false) and then type in your own WarningMessage. Anyway, it is just something fun to play with.
I will include this in my next release.
Thanks,
George
|