I am a C# developer, and would rather use VS 15 and SSDT than SSMS.
However, I don't understand how I should be doing an "Alter Trigger..." script.
For example, In Sql Object Explorer, I select Design, and the Designer opens. I then click on the trigger on the right hand side, and it displays a create script for the trigger.
However, I don't want to create it, I want to alter the existing one. So I change "create" to "alter", thinking that should run. However, an error is thrown:
This statement is not recognized in this context.
Should I be using SSMS for this type of activity?
The only workaround I could come up with is changing the name of the existing trigger, and then running the create statement instead of an alter statement.
I am just wondering what the workflow is supposed to be on this.