Activity overview
Latest activity by Traco
These are the snippets that i can´t live (or at least code SQL without):
They work so that you type something and then use the snippet when standing at the end of the line in Query Analyzer or Management Studio.
e: (execute)
{BS}+{HOME}{F5}
example: select * from Customers e[tab]
ed: (execute and delete statement)
{BS}+{HOME}{F5}{DEL}
example select * from Customers ed[tab]
i: (info sp_help)
sp_help {HOME}+{END}{F5}{DEL}
example: Customers i[tab]
v: (view table)
{BS 2}{HOME}select * from {HOME}+{END}{F5}{DEL}
example: Customers v[tab]
vt: (view top of table)
{BS 2}{HOME}select top 5 * from {HOME}+{END}{F5}{DEL}
example: Customers vt[tab] / comments
These are the snippets that i can´t live (or at least code SQL without):
They work so that you type something and then use the snippet when standing at the end of the line in Query Analyzer or Mana...