Comments
Sort by recent activity
IMHO. It should be an option to turn off automatic candidate list pop up and give an ability to call candidate list manually ONLY by pressing CTRL+SPACE. / comments
IMHO. It should be an option to turn off automatic candidate list pop up and give an ability to call candidate list manually ONLY by pressing CTRL+SPACE.
Bart Read wrote:
Actually that's already in there.
WOW, cool. Sorry, I didn't see it. Now I've found the option and will use it! Thanks! / comments
Bart Read wrote:
Actually that's already in there.
WOW, cool. Sorry, I didn't see it. Now I've found the option and will use it! Thanks!
I wants "Same JOINs & ONs indent formating" too
SELECT *
FROM dbo.t1
INNER JOIN
dbo.t2
ON dbo.t1.id = dbo.t2.id
INNER JOIN
dbo.t3
INNER JOIN
dbo.t4
ON dbo.t3.id = dbo.t4.id
ON dbo.t2.t4_id = dbo.t4.id
/ comments
I wants "Same JOINs & ONs indent formating" too
SELECT *
FROM dbo.t1
INNER JOIN
dbo.t2
ON dbo.t1.id = dbo.t2.id
INNER JOIN
dbo.t3
...
And I have a suggestion to include SmartRename button into Summary context menu. / comments
And I have a suggestion to include SmartRename button into Summary context menu.
SmartRename doesn't work with objects named on Russian language.
Example, this work:
CREATE TABLE dbo.testSmartRename (id int IDENTITY(1,1), Col1 varchar(50), Col2 varchar(50))
GO
CREATE PROCEDURE dbo.testSmartRename_p
AS
SELECT * FROM dbo.testSmartRename
GO When I use SmartRename to rename a table "testSmartRename" into "SmartRenameTest" I get:
CREATE TABLE dbo.SmartRenameTest (id int IDENTITY(1,1), Col1 varchar(50), Col2 varchar(50))
GO
CREATE PROCEDURE dbo.testSmartRename_p
AS
SELECT * FROM dbo.SmartRenameTest
GO It's OK, but if there is russian words in sysname:
CREATE TABLE dbo.тест (id int IDENTITY(1,1), Col1 varchar(50), Col2 varchar(50))
GO
CREATE PROCEDURE dbo.тест_p
AS
SELECT * FROM dbo.тест
GO SmartRenaming "тест" into "test" gives:
CREATE TABLE dbo.test (id int IDENTITY(1,1), Col1 varchar(50), Col2 varchar(50))
GO
CREATE PROCEDURE dbo.тест_p
AS
SELECT * FROM dbo.тест
GO Table in the proc have been not renamed. / comments
SmartRename doesn't work with objects named on Russian language.
Example, this work:
CREATE TABLE dbo.testSmartRename (id int IDENTITY(1,1), Col1 varchar(50), Col2 varchar(50))
GO
CREATE PROCEDUR...