You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey all,
Thanks for creating this handy tool to script and compare databases. I just started using it and ran into a problem while comparing databases.
The v1.4 current version generated scripts in form of:
"ALTER TABLE [table-name] ADD CREATE NONCLUSTERED INDEX [index-name] ON [table-name] (....)"
which is giving syntax error with SQL Server 2014 that I'm using. I believe it should be:
CREATE NONCLUSTERED INDEX [index-name] ON [table-name] (....)"
It might be a little similar to #117 might be able to use a similar fix.
Thanks!
The text was updated successfully, but these errors were encountered:
Hey all,
Thanks for creating this handy tool to script and compare databases. I just started using it and ran into a problem while comparing databases.
The v1.4 current version generated scripts in form of:
"ALTER TABLE [table-name] ADD CREATE NONCLUSTERED INDEX [index-name] ON [table-name] (....)"
which is giving syntax error with SQL Server 2014 that I'm using. I believe it should be:
CREATE NONCLUSTERED INDEX [index-name] ON [table-name] (....)"
It might be a little similar to #117 might be able to use a similar fix.
Thanks!
The text was updated successfully, but these errors were encountered: