Skip to content

SQL Complete

dbForge SQL Complete is an intellisense add-in for SQL Server Management Studio and Visual Studio with advanced autocompletion and formatting features of T-SQL code.

To consider your idea as soon as possible, follow the guidelines:
  • Describe the goal you want to achieve and what result you want to get
  • If you have a solution, add it to the description
  • Give examples that we can use to implement your ideas
  • Add one suggestion per post. If you have several ideas, share them in separate posts
  • Add comments to the suggestion

http://www.devart.com/dbforge/sql/sqlcomplete/

SQL Complete

Categories

JUMP TO ANOTHER FORUM

275 results found

  1. Example of what you can get currently:
    AND
    (
    old.TestString1 != new.TestString1
    ----OR old.TestString2 != new.TestString2
    ----OR old.TestString3 != new.TestString3
    );

    Example of what I'd like to do:
    AND
    (
    ----old.TestString1 != new.TestString1
    ----OR old.TestString2 != new.TestString2
    ----OR old.TestString3 != new.TestString3
    );

    4 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    0 comments  ·  Features  ·  Admin →
  2. Grid Aggregates Enhancements is a great feature. Here are some additional enhancements you can make:

    1. Add support for the date/time data types to MIN/MAX. Currently, it is not supported giving a message that it is not a number.
    2. Add MIN/MAX String length
    3. Have an option to make Grid Aggregates row permanently visible. It looks a bit funky when it pops-up on selection.
    4 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    completed  ·  0 comments  ·  Admin →
  3. I would like to be able to use a different format for the DATE predefined literals than YYYY-MM-DD. It would be helpful to include one for YYYYMMDD ... or have literals for YEAR, MONTH, and DAY so I could create my own combination from them.

    4 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    completed  ·  1 comment  ·  Features  ·  Admin →
  4. Hi! I have this theme applied to SQL Management Studio https://gist.github.com/605296 (http://studiostyl.es/schemes/jon-erickson-s-ragnarok-grey) but when the suggestion window appear is impossible to read some colours in the white background

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    1 comment  ·  Admin →
  5. When opening a complex stored procedure script, Management Studio hangs, because SQL Complete(v1.0.57) is trying to format the script.When disabling SQL Complete, the stored procedure is opening in less than 5 seconds.

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    1 comment  ·  Admin →
  6. When you paste a large query containing lots of UNION statements, SQLComplete consumes all available CPU (one logical cpu only) and RAM and SSMS has to be killed to recover. I can email a sample query if required.

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
  7. Two ideas here:
    1. Limit the suggestion list (entry in options dialog - "Max count suggestions"
    2. Loading details could be async

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    completed  ·  1 comment  ·  Admin →
  8. Show descriptions of objects on mouse hover or after configurable waiting period.
    You can allow setting property of description of a table (e.g. description).
    For tables columns you can show Description filed that we have in table designer.

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    completed  ·  1 comment  ·  Admin →
  9. For table name, for example, 'tMoneyCashOrder', auto-alias should be like 'tMCO', not "mco" like now. The first letter is often used to determine the type of object (table, view)

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)

    The feature is implemented in SQL Complete v5.0. If the table name is ‘tMoneyCashOrder’, auto-alias will be generated as ‘TMCO’ or ‘tmco’.

  10. Please add the ability to disable the intellisense integration in Visual Studio - I like the formatting options, but prefer the intellisense in VS. Currently, it's an "all or nothing" approach where I have to use SQL Complete Intellisense if I want the formatting.

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    completed  ·  3 comments  ·  Admin →
  11. Currently, the formatting options for DDL are rather limited. I would like to be able to control indentation of columns and braces in table definitions (to align the type declarations of the columns), as well as control over the structure of create index/constraint statements

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    completed  ·  0 comments  ·  Admin →
  12. 3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    completed  ·  0 comments  ·  Admin →
  13. SQL Complete currently formats ON clauses as follows:

    SELECT
    --BarcodeId,
    --LastName,
    --FirstName
    FROM
    --pplpeople
    --INNER JOIN pplclient
    ----ON pplClient.PeopleId = pplPeople.PeopleId
    WHERE
    --BarcodeId = '12345'

    Need to be able to format ON clauses as follows:

    SELECT
    --BarcodeId,
    --LastName,
    --FirstName
    FROM
    --pplpeople
    --INNER JOIN pplclient
    --ON pplClient.PeopleId = pplPeople.PeopleId
    WHERE
    --BarcodeId = '12345'

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    completed  ·  1 comment  ·  Admin →
  14. In 4.0.53 I can't work out how to configure the formatting for a query to be...

    SELECT
    --column1
    --column2
    FROM
    --table1
    JOIN
    --table2
    ----ON 1=1
    ----AND 2=2
    JOIN
    --table3

    etc

    So basically only indenting the predicates not the keywords

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    1 comment  ·  Admin →
  15. It must be also possible to insert a snippet into the currently open editor window by just double-clicking it in the Snippet Editor (left pane)

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    completed  ·  1 comment  ·  Admin →
  16. When using the format selection command (or the entire document) the cursor position is reset to bottom of the document, instead of preserving the users cursor location. This is confusing as an end user. I'd like to recommend preservation of cursor location in the document.

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
  17. Support adding a numeric value next to new line or indent setting so users could add 1-9 new lines or indents.

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    completed  ·  0 comments  ·  Admin →
  18. When creating an UPDATE or DELETE statement and referencing a table alias. It cannot understand these. For example:

    UPDATE A
    SET ID = 5
    FROM Table1 A
    INNER JOIN Table2 B ON A.ID = B.ID

    SQLComplete does not understand the alias 'A' when writing the UPDATE or the SET statement.

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    completed  ·  0 comments  ·  Admin →
  19. 3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    completed  ·  0 comments  ·  Admin →
  20. It would be great if we could have the Oracle style SQL formatting option, where keywords are right justified and the arguments are left justified. Like below:

    select col1, col2, col3
    from dbo.tableName
    where col2 = 123

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    completed  ·  0 comments  ·  Admin →
1 2 5 7 9 13 14
  • Don't see your idea?