How to edit SSMS Script Table How templates?

The table context menu in SQL Server Management Studio has several items under the common Script Table as element:

 SELECT to INSERT to UPDATE to DELETE to .. 

and the same for all objects, for example. stored procedures, functions, etc.

How to edit templates used by these menus?

+4
source share
2 answers

You cannot edit the templates used by SQL Server Management Studio (which would be nice).

You can create your own (parameterized templates) in C:\Users\Username\AppData\Roaming\Microsoft\Microsoft SQL Server\100\Tools\Shell\Templates\Sql (for SQL Server 2008)

+1
source

What do you want to do with this?

Have you seen the SSMS toolkit that adds some right-click options?

+1
source

Source: https://habr.com/ru/post/1336942/


All Articles