Posts
Sort by recent activity
Missing Formatting when pressing <TAB> after typing SELECT *
In Prompt SQL 1.x there was a way to set the formatting when pressing <TAB> after typing "SELECT *". Now it just fills in the columns in a long row, which becomes unwieldy quickly for large tables...
Variables and Parameters not appearing in list
Variables and parameters do not appear in the list anymore (it did in version 1.4). Also, typing @<CTRL-SPACE> used to bring up the list of variables and parameters, but does not now.
UPDATE: T...
Pressing Tab after a Keyword messes up the formatting
We format our code as follows:
SELECT
<TAB>table1.column1
<TAB>, table1.column 2
FROM
<TAB>table1
JOIN
<TAB>table2
ON
<TAB>table1.column1 = table2.column1
WHERE
<TAB>table1.column2 = 'xyz'
.
.
.
et...
Stored Procedures Not Appearing in List
Stored procedures do not appear in the list. I am using SQL Server Management Studio Express pointing to a SQL 2000 database. What do I need to do to get them to appear?
UPDATE: It seems to work ...