Activity overview
Latest activity by kberridge
My plan was to use Red Gate to generate the SQL Scripts to a folder, then do a simple search and replace to update the scripts to ALTERS.
Two things make ALTERS nice:
1. They're easier to make from the CREATE statement
2. They don't screw up SQL's dependency tracking as badly
That said, I could live with IF EXISTS... DROP
Thanks for the reply! / comments
My plan was to use Red Gate to generate the SQL Scripts to a folder, then do a simple search and replace to update the scripts to ALTERS.
Two things make ALTERS nice:
1. They're easier to make from...
SQL Compare ALTER Scripts to Database
I am trying to setup an environment in which I can edit .sql scripts directly and execute them again the database. To make that doable the scripts need to be ALTERs.
But to do this, I also need to...