Comments
Sort by recent activity
Hello,
I see that this posting is very new, but I too would like to see notes added to the diagrams. In particular, I would like to see notes that have text independent of the database documentation.
Thanks,
Jim / comments
Hello,
I see that this posting is very new, but I too would like to see notes added to the diagrams. In particular, I would like to see notes that have text independent of the database documentatio...
Tianjiao_Li said:
It's difficult to troubleshoot if the issue is intermittent. Few questions would help: 1- how many tabs were open when this issue occurred and were all tabs not reconnecting? 2- were the tabs that didn't reconnect from one specific database? 3- do you have this issue with any other version of SSMS? 4- if you restore the Prompt options to default (SQL Prompt ->Options->Restore all defaults), restart SSMS, does it help? 5- do you notice any pattern when this issue occurs?
1) This last time, 28 tabs were reopened, but not connected. 3 of those tabs were reconnected. Most of the unconnected tabs were pointing to the same server/database as the reconnected ones. 2) Mostly one since that is what I am currently focused on right now, but as I mentioned in #1, I did get a couple of reconnects to the same server/database. 3) Not that I remember. If I did, it was a long time ago. 4) Oh! That sounds drastic. OK, I did an Export of all of my settings and then clicked Restore all defaults. I connected a couple of tabs as a test, then restarted SSMS. I noticed that most of my tabs now reconnected with the exception of a couple that used a SQL User/Password to connect, even though I have saved the password in SSMS. 5) The only pattern that I noticed is that I have tabs open and connected, I quit SSMS. I restart SSMS, and most of my tabs are not reconnected. Now I have to try and figure out what all of the settings are that I lost, like all of my custom aliases :-( / comments
Tianjiao_Li said:
It's difficult to troubleshoot if the issue is intermittent. Few questions would help:1- how many tabs were open when this issue occurred and were all tabs not reconnecting?...
@Alex B , I don't have that folder. I do have "%AppData%\Red Gate\" and under that I have "SQL Data Generator", "SQL Multi Script 1", and "SQL Refactor", but not one for the Dependency Tracker. Where else would it be hiding? Thanks, Jim / comments
@Alex B ,I don't have that folder. I do have "%AppData%\Red Gate\" and under that I have "SQL Data Generator", "SQL Multi Script 1", and "SQL Refactor", but not one for the Dependency Tracker.Where...
@bauerju Is there a way of tracking this bug? That is, is there a public facing side to their bug tracking system? This one is a huge issue with me and I would like to keep a close eye on it's fix. If I would have know it existed, I would not have upgraded yet (and it's a pain to downgrade SQL Prompt...) / comments
@bauerju Is there a way of tracking this bug? That is, is there a public facing side to their bug tracking system? This one is a huge issue with me and I would like to keep a close eye on it's fix....
I just upgraded to 9.1.3.4467 today and I can no longer do "Format SQL" for a CREATE or ALTER PROCEDURE. (not sure if other statements cause it to fail). SQL Prompt was unable to complete this operation. Problem areas have been highlighted. Errors during parsing the script: Ln: 1 Col: 1 - Value cannot be null. Parameter name: token
I now see that this issues has been around for a few days. Is there a fix coming out soon?
/ comments
I just upgraded to 9.1.3.4467 today and I can no longer do "Format SQL" for a CREATE or ALTER PROCEDURE. (not sure if other statements cause it to fail). SQL Prompt was unable to complete this o...
Hi Andrei,
Thanks for getting back to me on that. That's very unfortunate that it does not honor the current filter. As far as removing the current item, that is actually what I would expect from the wording of the menu item.
Is there a User Voice item that I need to add my votes to?
Thanks,
Jim
/ comments
Hi Andrei,
Thanks for getting back to me on that. That's very unfortunate that it does not honor the current filter. As far as removing the current item, that is actually what I would expect from ...
Yes, I will create a UserVoice item for it as soon as it sends me my password reset email...
And yes, Off by default, would be just fine. Enjoy your holiday next week, doing something fun, or a staycation (or is that stayholiday in the UK [image] )? / comments
Yes, I will create a UserVoice item for it as soon as it sends me my password reset email...
And yes, Off by default, would be just fine. Enjoy your holiday next week, doing something fun, or a st...
Aaron,
At some point, you mentioned to me that there was a new version of SSMS out that may resolve this issue, and I tried it and replied that it did appear to fix it.
Sadly, I was wrong. I am still at the point where when I reopen SSMS I don't have all of my tabs opened when it starts. I still don't see a pattern, but if and when I do, I will be sure to pass it along.
Jim / comments
Aaron,
At some point, you mentioned to me that there was a new version of SSMS out that may resolve this issue, and I tried it and replied that it did appear to fix it.
Sadly, I was wrong. I am sti...
Thanks Ali,
One more thing (I can open a new thread, if you wish). "GO" seems to always be adding a blank line after it. Is there a way of turning that off? Normally, I wouldn't care, but with things like Stored Procs, UDFs, triggers, etc., I like to keep it clean with no extra space at the top. Now, I would not expect you to conditionally add the new line, so an option to turn that off globally would be fine. Set Ansi_Nulls On
Go
Set Quoted_Identifier On
Go -- I don't want this blank line after the "GO", please!
-- =============================================
-- Author: Jim
-- Create date: 12/15/2015
-- Description: Logs a run-time error message for later tracking
-- =============================================
Alter Procedure dbo.Misc_AddError @UserId varchar(50) = Null,
@MachineName varchar(30) = Null,
@Source varchar(50) = Null,
@Message varchar(Max) = Null
As
Begin
Set NoCount On;
Set Xact_Abort On;
-- Blah, blah, blah...
End
/ comments
Thanks Ali,
One more thing (I can open a new thread, if you wish). "GO" seems to always be adding a blank line after it. Is there a way of turning that off? Normally, I wouldn't care, but with thi...