Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to favorite or star frequently-used tables in SSMS 2012?

80-90% of the time I spend in SQL Server Management Studio is spent dealing with the same 5 or 6 tables/views/stored procedures, out of the 100+ in some databases.

It would be wonderfully helpful if there were a quick way to access those few through the GUI, instead of having to scroll all around and toggle the Tables/Views/Programmability folders day in and day out.

In my mind, I'm picturing a favorites or starred tables feature or section, or maybe just a recent tables menu would be a great timesaver.

Is this a feature buried somewhere in SSMS or available in a plug-in?

like image 724
friggle Avatar asked Feb 13 '14 18:02

friggle


People also ask

How do I get suggestions in Microsoft SQL Server Management Studio?

How to Enable IntelliSense Feature in SSMS. Open SSMS, click Tools -> Options -> Expand Text Editor -> Expand Transact-SQL and click on IntelliSense as shown in the snippet below. Under Transact-SQL IntelliSense Settings ensure “Enable IntelliSense” checkbox is enabled.

How do I get a list of tables in SSMS?

First, enable Object Explorer Details going to View > Object Explorer Details or by pressing F7 buton. Now, select Tables element in your database in Object Explorer. List of tables with details will show in in the right pane in Object Explorer Details tab.

How do I pin tabs in SSMS?

At the top of the each query window, there is an icon to pin the tab, and once the tab in pinned it will always present in the left side of the SSMS, as shown below. There is another option to highlight the pinned tab as well.


1 Answers

I can think of two ways that may help get you to the right objects in the SSMS Object Explorer. Both are SSMS addins.

1) Use the free SQL Search - when you need to locate an object, press Ctrl-Alt-D, type the name of the object, arrow down until you highlight the object, and press Enter. I will suggest to the SQL Search project team the idea to have a "recently used" list of objects as I think this could be a nice addition to the tool.

2) Use SQL Treeo to create your own custom folders in the Object Explorer tree. You can create a folder to put the objects you use most frequently, which could help avoid scrolling through a large list of irrelevant objects.

like image 159
David Atkinson Avatar answered Sep 29 '22 18:09

David Atkinson