Posts
Sort by recent activity
Why is renaming a tab so difficult?
Hello,I'm just trying to rename a closed tab in Tab History. I can get to the Rename mode and type in the new name, but it doesn't "stick" no matter what I try and do. I have tried tabbing away, pr...
Tabs are no longer reconnecting when SSMS starts up
I have started to notice that when I start up SSMS my tabs are opening, but not always reconnecting. I have confirmed that I do indeed have "Automatically reconnect restored tabs" checked. All of ...
Using SQL Dependency Tracker from SSMS—TMI
I would like to know if I am missing a setting somewhere for the SQL Dependency Tracker.I would like to use Dependency Tracker from inside of SSMS, but at it works now, it's too noisy. I would like...
SQL Tab History - "Remove tabs older than this"
Hello,
Background: I am looking at getting rid from my tab history changes that I have made to stored procedures as they are now saved in the database. I can do this by searching for things like "...
latest upgrade crashed--badly
I just did the latest upgrade today and had a very rude surprise! I was told that the installation of 7.3 failed
Service 'Redgate Client' (RedGateClient) could not be stopped. Verify that you hav...
Have Refresh Suggestions also refresh SSMS IntelliSense
Would it be possible when SQL Prompt's Refresh Suggestions is run it can also refresh SSMS's IntelliSense cache (equivalent of the menu Edit/IntelliSense/Refresh Local Cache or Edit.RefreshLocalCac...
Formatting in 7.3.0.535
If I format the following
Select *
From Person.Address As a
Where a.AddressID In ( - 1, -2, -3 )
You will notice that there is a space between the negative sign and the 1 (-[space]1), but the rest...
Formatting in 7.3.0.522: Why is it wrapping like this?
I created a restore script for someone to use, then formatted the SQL. FYI, my wrapping is set to 200.
Use master
Alter Database ABitLongerDatabaseName
Set Single_User
With Rollback Immediate
Res...
Problem with Tab History in 7.3.x beta
Hello,
I have noticed a problem with Tab History in the new round of 7.3.x betas, including the latest 7.3.0.460. The problems is that not all of my tabs are re-opening after I restart SSMS--some, ...
Issues with comments in 7.3.0.450
If you take this...
Begin
/*
* Should look like this
*/
Select 1
End
and run "Format SQL", it looks like this... (Hint: The /* got moved up after the Begin)
Begin /*
* Should look like ...