Settings and activity
2 results found
-
1 vote
An error occurred while saving the comment -
27 votes
For now, you may be able to use a batch file that executes SQL and drops the objects you want re-created before using the SQL Compare Command Line API. Since the objects are dropped, the synch script will generate CREATE scripts instead of alter.
If you wanted to create everything from scratch, you could drop and recreate the database, which would generate all CREATE scripts.
I hope this helps for now.
pmiskell supported this idea ·
In my case, this is caused by "DEFAULT" being passed in as a parameter of the function. Example below:
Before: fnMySQLFunction(CustomerID, DEFAULT, DEFAULT)
After: fnMySQLFunction(CustomerID,,)
Thanks