Quantcast
Channel: Rss Feed - SSMSBoost Add-in discussion board - Forum
Viewing all 823 articles
Browse latest View live

Bring back all the features under the Community License!

$
0
0
I love this extension and as other have said, I too find it's price a bit steep, even if I understand the move.
But my biggest issue if I buy it would be the license being tied to the domain login.

I work with 2 domains, with different logins in both, and I'm pretty sure my company will not buy the license double because of that.
And if I buy the license personally, I don't want it to be tied to 1 of my logins only and especially not "give" it to my employer.

So I guess I'll still use the community, but feel sorry to see it that crippled.
Go to last post

Edit top N rows - not working

$
0
0
This is urgent.

I only bought this tool so I could edit NVARCHAR(MAX) columns with large amounts of text (SQL scripts).Crying Please fix and patch ASAP, or I want my money back.
Is there any temporary workaround available immediately?

Grrrrrrrr.Cursing
Go to last post

SSMS 17.3 : Locate object in Object Explorer not working

$
0
0
After searching, the problem doesn't come from Ssmsboost but from Ssms.

I'm using Sql Server 2005, and since version 17.3 there is a problem with. (For more information)

If I use a newer Sql Server with Ssmsboost the location of objects works.
Go to last post

Create or Alter Procedure Block Auto Replace

$
0
0
I use this auto replace typing "cora" when creating a new stored procedure so that it creates the procedure if it doesn't exist and alters it if it does.


Code:
IF OBJECT_ID('<object name, sysname, dbo. >') IS NULL -- Check if SP Exists
 EXEC('CREATE PROCEDURE <object name, sysname, dbo. > AS SET NOCOUNT ON;')
GO

ALTER PROCEDURE <object name, sysname, dbo. > -- Alter the SP Always 
--PARAMETERS HERE
AS 
BEGIN
SET NOCOUNT ON


END

GO
Go to last post

Auto replace for lastyear

$
0
0
Create an auto replace for "lastyear"
Code:
DATEADD(YY,-1,GETDATE())
Go to last post

Auto replace for creating a merge using 2 table names

$
0
0
Code:
MERGE <targettable, sysname, table>  AS TARGET
USING <sourcetable, sysname, table> AS SOURCE
ON (
 TARGET.<targetjoin, sysname, column> = SOURCE.<sourcejoin, sysname, column>
)
--WHEN MATCHED THEN (OPTIONAL 'AND' STATEMENT BEFORE 'THEN' TO PROVIDE ACTION CRITERIA)

---------------------------------------------------------
--MATCHED ACTION GOES HERE
---------------------------------------------------------

--WHEN NOT MATCHED BY TARGET THEN (OPTIONAL 'AND' STATEMENT BEFORE 'THEN' TO PROVIDE ACTION CRITERIA)

---------------------------------------------------------
--MATCHED ACTION GOES HERE
---------------------------------------------------------

--WHEN NOT MATCHED BY SOURCE THEN (OPTIONAL 'AND' STATEMENT BEFORE 'THEN' TO PROVIDE ACTION CRITERIA)

---------------------------------------------------------
--MATCHED ACTION GOES HERE
---------------------------------------------------------

-- OUTUPUT SECTION
--$action specifies a column of type nvarchar(10) 
--in the OUTPUT clause that returns one of three 
--values for each row: 'INSERT', 'UPDATE', or 'DELETE', 
--according to the action that was performed on that row
OUTPUT $action
--,inserted.-- COLUMN OF CHANGED DATA
--inserted.-- COLUMN OF CHANGED DATA
Go to last post

Insert commented step block for simple coding

$
0
0
I use this to keep my procedural code clean.
If someone has any ideas on making this cleaner, feel free to post a refinement below.

Code:
-- ********************************** Step # *************************************--
/* ******************************* Description ***********************************--

   *******************************************************************************-- */
Go to last post

Auto Replace for complete update statement

$
0
0
Code:
update <tablename, sysname, table> set <columnname, sysname, column> = '#' where <condition, sysname, 1=1> 
Go to last post

Create a new title block for code commenting

$
0
0
Code:
-- ******************************* Script Information ***************************--
-- ******************************************************************************--
-- ******************************************************************************--
--  
-- ** Name:        <Script Name,sysname,Name>
-- ** Description: <Description,sysname,Description>
-- ** By:          <User Name,sysname,{User}>
-- ** Date:        {Timestamp:MM-dd-yyyy}
-- ** Database:    {Database}
-- ** Server:      {Server}
-- ** Modified:    {Timestamp:MM-dd-yyyy}
-- ********************************** Notes *************************************--
/*

*/
-- ******************************************************************************--
-- ******************************************************************************--
-- ********************************** Start *************************************-- 


#
Go to last post

Bring back all the features under the Community License!

$
0
0
Like many others, I'll be uninstalling SSMSBoost after using it daily for around 3 years. Sure the developers want to be paid for their work and I totally understand that, but the fact of the matter is, this is a plug-in and no one in their right mind is going to pay $170 US for that. Sure, $20, $30 maybe even $40.

Goodbye forever Solutions Crew, good luck with the extortion effort.
Go to last post

VATID issues when buying Pro licneces

$
0
0
I am in the UK and trying to purchase a couple of Pro licences. A UK VAT code is 9 digits long but when entered in the VATID field the site says "Specified VAT ID does not match the country you have selected."

Can you fix this.
Go to last post

SSMS 17.3 : Some functions not working with SQL SERVER 2005 (Solved: due to design of SSMS 17.3)

$
0
0
Thank you for reporting and figuring out.
I have edited a head post title a bit.
If Microsoft is not supporting SQL 2005 fully in SSMS 17.3 anymore maybe it is reasonable to stay with SSMS 2008R2 working with SQL 2005. SSMS 2008R2 is the fastest SSMS and we are still supporting it. SSMS 2012/14 are also great and are also supported by SSMSBoost. Maybe it is reasonable to stay with that versions if you cannot upgrade your SQL Server...
Go to last post

VATID issues when buying Pro licneces

Edit top N rows - not working

$
0
0
I am hearing the sound of crickets chirping in the night. Mad Please indicate availability date or provide a usable workaround ASAP.
Go to last post

Bring back all the features under the Community License!

$
0
0
I totally agree with other guys that $0 useless version or $150 for a very useful but not a live saving tool is a tough choice.
I am writing as one of the people who has bought or otherwise (financially) supported a number of apps/tools that I regularly use, even though they also offer their software as freeware. They differ from SSMS Boost offering in that they offer a version at sub $50 price range.

Maybe you can take a cue from WinRar model.
Go to last post

Connection could not be set

$
0
0
Hi there.
Just would like to report this. The functionality works, but for some reason (this doesn't happen all the time - i haven't figured out the pattern yet) it gives an error of "Connection could not be set. Exception has been thrown by the target of an invocation."
(This is when i use "R-Click > Set as Active Connection" in the Object Explorer or the Registered Servers windows.)

If there are any log files of sorts that might help you investigate this, please let me know.

Since the functionality works, it's not critical, but it is distracting and makes me double check whether or not it set the connection.

I think this might be happening when the cursor focus tries to change back to the text editor after i assign the connection... because i believe every time i saw this error, i had to go click on the text editor first to check whether or not the connection did really change.
Go to last post

Connection could not be set

$
0
0
Looks like it happens when i connect to SQL 2008 and 2012 instances, but with SQL 2005 instances it doesn't give the error. (In case this makes a difference in the bug search)
Go to last post

Bring back all the features under the Community License!

$
0
0
After using this great tool, and telling all of my fellow data-management friends about it, I was sad to see what looked like a bug, turn out to be a "surprise" functionality change. I think the forum has pretty much told you the price that the market is willing to bear here. It sounds like many of us would just pay $50 immediately. $150 is, put simply: unreasonable. I'll use the one, well known free tool that has almost every feature that SSMS boost has (that I care about), and I won't feel much of a difference. Please do communicate with your user-base if you decide to re-think your pricing/licensing model, you're likely to "win back" some customers.
Go to last post

Bring back all the features under the Community License!

$
0
0
Um, $150 to be able to copy headers? Nah, I'll just type them out!
Go to last post

set as active connection - DISABLED ?

Viewing all 823 articles
Browse latest View live