272 results found
-
Automatic Formatting of "TableName.Value AS Alias"
If you have a field name "Value" then automatic formatting mis-interprets this if it has an alias.
Formatting:
SELECT TableName.Value AS Alias
FROM TableNameBecomes:
SELECT TableName.Valueas Alias
FROM TableNameInstead of
SELECT TableName.[Value] AS Alias
FROM TableName1 vote -
copy to code
After I create a query in Sql Management Studio, what I usually do is copy the sql to code. I'm programming in c# and when I copy the sql to code, I must add parentheses at the start and the end of each line with also a '+' character to tells compiler to combine line.
A very beautiful feature would be to add a shortcut to copy the sql into the clipboard but with these parentheses and '+' character. After that, I just simply have to paste it without error directly into my code.
Another very beautiful feature would be…
14 votes -
Ability to clear results of Output window
It would be nice to be able to clear the results of the output window
1 vote -
Navigating to errors on formatting from Output window
When running format document and there are syntax errors, it would be great if you could double click the error in the output window and it would take you to the error.
1 vote -
Auto parsing and delimiting IN clause values
Auto parsing and delimiting IN clause values. As an app developer, many a times I find myself dealing with lengthy IN statements and would have to first paste my IN values in excel, run a script to add single quotes when values are strings and delimit each with a comma, then paste the result back into Management Studio and Enterprise Manager....e.g select * from table where col IN ('A', 'B',...)...basically your add-in with format the data once I paste into the IN...if column before the IN is string value, then it add quotes to the values and delimit and add…
1 vote -
Option to reorganize FROM clause so that inner join and left join stay the same, and right join changes to left join
the original sql statment:
SELECT *
FROM T1 RIGHT JOIN T2 ON T1.ID1=T2.ID1after reorganize
SELECT *
FROM T2 LEFT JOIN T1 ON T2.ID1=T1.ID13 votes -
Select from table popup command
When I click right mouse button over table or view identifier in some query, I'd like to see a command 'Execute a query for the table in new document'.
1 vote -
For any new subquery nesting level I would also suggest increment the indent from the previous query, not all at same level.
For any new subquery nesting level I would also suggest increment the indent from the previous query or subquery level, not all at same level.
1 vote -
Goto Type/Database Object
Resharper, a popular addon for visual studio has a nifty feature where you can hit ctrl+t to open a compact search window where you can type part of a type name, and a list of clickable suggestions is presented as you type.
http://www.jetbrains.com/resharper/features/navigation_search.html#Go_to_Type
It would be quite handy to have something similar for Management Studio.
Clicking any of the matches could open a new query window with an ALTER statement prepared.133 votes -
DO NOT SHOW intellisense popup after "," typed and SHOW after ENTER pressed
Guys,
The main idea is following:
When people enumerate column names between SELECT...FROM most of them can be separated on two behavioral groups:
1) People who enumerates columns on a single line
2) People who enumerates columns on a new line each.
Both of these goups after previous, already typed, column name and before typing next type "," (comma) first and then " " (space - first group of people) or ENTER (second group).
No one type next column name immidiately after comma.
So really intellisense popup needed after SPACE or ENTER but not after COMMA.
Please. disable displaying of…
1 vote -
alias second table reference
Automatically alias a second reference to a table even if "generate alias on commit" is not enabled
4 votes -
Pivot Columnar / Vertical Tables to Tradiational Row-type tables
I have looked high and low for product that will meet a need that I often have; from the number of posts that I find on the net many others have as well.
More and more, with the increase in the amount of data being collected and queried, data warehouses, BI software, using columnar tables (sometimes referred to as a vertical data structure) makes more since. Vertica DB and Terri Data use this structure natively.
However, it often is necessary to convert (or pivot) the data to a traditional horizontal, row-based format. In SQL Server as well as Oracle, and…
12 votes
- Don't see your idea?