ssms-addin

Create custom menu item in Object Explorer

社会主义新天地 提交于 2019-12-11 12:10:07
问题 Basic question is how to create custom menu items in Object Explorer in Sql Server Management Studio ? Actually what I want to implement is create menu item which will perform as: Create CRUD stored procedures for the table on which the user had done right-click. Possibly other stuff like remove duplicate records. The executing module could be external written in C#.NET I have checked SSMS Addins but I think it is different than what I am looking for.. (please correct me if I am wrong) I hope

Re-enable SSMS Addin

帅比萌擦擦* 提交于 2019-12-11 02:11:22
问题 I'm sure this is very simple but I can't seem to find an answer to this at the moment and my googling powers have returned nothing. I previously had an issue with an Addin and SSMS gave me the option to disable it (which I took). I have since reinstalled the plugin but it still does not appear as I previously disabled it. Does anyone know where I can find the 'Add-In Manager' in SSMS 2008 R2 like in Visual studio? 回答1: For 2008 versions of SSMS you have to check this registry key: Key="HKLM

Does the Poor Man's T-SQL formatting add-in for Management Studio 2012 work in Management Studio 2016?

守給你的承諾、 提交于 2019-12-06 07:25:39
问题 Basically the same question as this but now for SSMS 2016. I've installed SSMS 2016 RC3 (alongside SSMS2012 & SSMS2014). I also installed Poor Man's formatter and copied the 11.0 folder as 12.0 and 13.0. When launching SSMS2014 I have the Tools > Format T-SQL Code menu-option. Which I don't have in SSMS106. Am I overlooking something? 回答1: Since RC2, they've moved to using Visual Studio 2015 shell for it. Plugin authors will need to update their plugins to support the newer APIs. - https:/

Does the Poor Man's T-SQL formatting add-in for Management Studio 2012 work in Management Studio 2016?

一个人想着一个人 提交于 2019-12-04 14:54:53
Basically the same question as this but now for SSMS 2016. I've installed SSMS 2016 RC3 (alongside SSMS2012 & SSMS2014). I also installed Poor Man's formatter and copied the 11.0 folder as 12.0 and 13.0. When launching SSMS2014 I have the Tools > Format T-SQL Code menu-option. Which I don't have in SSMS106. Am I overlooking something? Dealdiane Since RC2, they've moved to using Visual Studio 2015 shell for it. Plugin authors will need to update their plugins to support the newer APIs. - https://dba.stackexchange.com/a/134208 Also, take a look at ApexSQL Refactor . It's free and supports code

How to create extension for SQL Server Management Studio 17 in C# in VS2017?

痞子三分冷 提交于 2019-12-03 07:59:27
问题 I followed simple Hello World sample from Create your first extension: Hello World example from the Microsoft Docs to build an extension for SSMS 2017 Created VSIX project from Extensibility project template Changed "Start External Program" in Project > Properties > Debug to C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\Ssms.exe Add -S (localdb)\MSSQLLocalDB -d sampleDB -E in command line arguments as it requires servername/database be specified to run SSMS.exe.

How to Create an Extension for SSMS 2019 (v18)

自闭症网瘾萝莉.ら 提交于 2019-12-01 03:30:50
问题 SQL Server Management Studio 18 RC1 became available March 28, 2018 This question has already been asked for SSMS 17, but there are slight variations when authoring extensions for different releases of SQL Server Management Studio. What are the steps to getting a Hello World application up an running in SSMS 2019? 回答1: Here are the complete steps, adapted from Stefan Timovski's article on How to Create SQL Server Management Studio 18 (SSMS) Extension Install Visual Studio 2017 with Extensions

Is there a way to expand the column list in a SELECT * from #Temp_Table in SSMS?

好久不见. 提交于 2019-11-30 01:58:07
问题 As seen here LINK you can hover over the * in a SELECT * from... and a tooltip will come up with a list of the columns represented by that * . Is there a way to copy the text from the tooltip to the clipboard? I know that you can use the columns folder in the object explorer to generate a list of columns by dragging it into the query editor window, but this cannot work for temp tables as they do not appear in the object explorer. EDIT For completeness sake, the answer below "You can right