You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -180,7 +182,7 @@ This behavior can be disabled in SSMS: go to `Tools > Options > Text Editor > Al
180
182
181
183
<aid="8"></a>
182
184
## Client Statistics
183
-
When you enable that option for your session, SQL Server Management Studio will give you more information about the client side processing of your query.
185
+
When you enable that option for your session (`Ctrl + Alt + S`), SQL Server Management Studio will give you more information about the client side processing of your query.
184
186
185
187
The Network Statistics shows you the following information:
186
188
- Number of Server Roundtrips
@@ -381,6 +383,14 @@ My favorite regex: replace `\t` on `\n, `. It useful in many cases when you have
381
383
382
384
<aid="24"></a>
383
385
## Changing what SSMS opens on startup
386
+
The more interesting way to look at this shortcut is to check the various options available with SSMS command line parameters.
387
+
To check them, use the following command:
388
+
```
389
+
C:\> ssms /?
390
+
``
391
+
392
+

393
+
384
394
You can customize SSMS startup behavior in `Tools -> Options -> Environment -> Startup` and hide system objects in Object Explore:
385
395
386
396

@@ -399,7 +409,7 @@ It is useful to create a solution of commonly used SQL scripts to always load at
399
409
5. Open Windows explorer and browse to the location of your solution. Copy file location address to your clipboard.
400
410
Go back to your SSMS shortcut properties and add within double quotes the location and file name of your solution before the "-nosplash".
401
411
402
-
This is the complete text within my shortcut properties:
412
+
This is the complete text of shortcut properties:
403
413
404
414
```
405
415
"C:\Program Files (x86)\Microsoft SQL Server\140\Tools\Binn\ManagementStudio\Ssms.exe" "C:\Users\taranov\Documents\SQL Server Management Studio\Projects\MySQLServerScripts.ssmssln" -nosplash
@@ -561,6 +571,21 @@ In SSMS 17.2, appear the ability to search table name, index name or column name
561
571
More details here: [New in SSMS: Searching in Showplan]
562
572
563
573
574
+
<a id="32"></a>
575
+
## Object Explore Details
576
+
To bring up the Object Explorer Details pane, use the `F7` shortcut or it can be accessed from `Toolbar -> View -> Object -> Explorer Details`.
0 commit comments