Is there a way to configure the shortcuts etc in SQL Server 2005 / 2008 as per the headline.
When I doubleclick on a table, I typically want to open it to view the information within, not to just access the next level on the explorer. When I do this on a procedure, I usually want to modify it. This question is one year overdue as this issue has bothered me for quite some time.
Is there a way to change the action for a doubleclick on these items? It's less than 1% of the time when I actually have a use for the doubleclick -> go up 1 level on explorer functionality. Which to me seems like an unnecessary inconveni开发者_C百科ence in the usability of said program. :)
Thanks.
Here is a way to get the same result that you want:
- Install SSMS Tools Pack
- In SSMS, go to the SSMS Tools menu > Run Custom Stripts > Options
Add a new custom script "Top 200 rows", and add the following Sql script:
SELECT TOP 200 * FROM |NodeName|
Click "Enabled on..." and select "Table"
精彩评论