SQL Server 2012 came up with many new features and enhancements. Insert Snippet is one of the new features introduced in it. This feature reduces the development time and increases productivity. How ? It basically generates the code snippet for the most frequently used objects in SQL Server instantly (with few clicks or key strokes). But it is not limited to the frequently used objects, custom code snippet template can also be added in it and can generate it at any point of time, to make life easier. How to create custom code snippet will be demonstrated in my up coming article.
Given below are the object’s code snippet available in SQL Server as a standard template :
- Function
- Index
- Login
- Role
- Schema
- Stored Procedure
- Synonym
- Table
- Trigger
- User
- User Defined Data Type
- User Defined Table Type
- User Defined Type
- View
Let me insert a Create Table code snippet step by step using Insert snippet .
Step 1:
Open a new query window in the Database Engine and place the cursor where the code snippet has to be inserted.
Step 2:
In this step, launch snippet picker to insert Snippet. It can be done using three different methods. Given below are the details of these methods.
Method 1:
Press CTRL+K, CTRL+X to launch snippet picker.
Method 2:
Go to the Edit Menu then point to IntelliSense and then select Insert Snippet to launch snippet picker as shown in the picture below .
Method 3:
Right click and select Insert Snippet to launch snippet picker as shown in the picture below.
Step 3:
Once the snippet picker is launched, select table from the list as shown in the picture below.
Step 4:
After selecting the Table press TAB or Enter key to proceed as shown in the picture below.
Step 5:
After selecting the Create Table script as show in the above picture then again press TAB or Enter key to generate the code snippet as shown below.
Step 6:
Notice that the create table code snippet in the above image has been generated. Now just change the highlighted area to create desired customized table. Additional columns as well can be added.
Conclusion :
Insert Snippet is a very nice feature introduced in SQL Server 2012. Time saving tool. The example discussed above took less than 10 seconds to create it. Also it is not limited to create table code snippet alone, any object code snippet can be created in less than 10 seconds.
Will post how to create the customized code snippet in my upcoming post.
Reblogged this on Sutoprise Avenue, A SutoCom Source.
[…] my earlier article, I wrote about the new feature of SQL Server 2012 namely Insert Snippet. This is quite a handy feature which can save a lot of your time. This feature is shipped with a […]
[…] my earlier articles, I wrote about how to insert buit-in code snippet in SQL Server script. But sometimes due to the requirements, we need to create our own custom snippet. Once you create […]
[…] we can create the Sequence object snippet, as shown in the script below. Just copy the given below script and save as “Create […]