Comments
3 comments
-
Thanks for your post.
I am trying to replicate the issue.
But it is working fine for me.
Could you kindly check the detailed version of SQL Prompt you are using?
You can know the detailed version of SQL Prompt by navigating to SQL Prompt 4 --> About SQL Prompt and version number is displayed on bottom right (just above Close button.)?
And also if you could let us know the version of Management studio will be of great help. -
The SQL Prompt 4 detailed version is 4.0.2.27.
SQL Server Management Studio Version is 9.00.3042.00.
Enter the following query in the msdb database in SSMS and then use the Tab key to expand the SELECT statement:SELECT sai.* FROM [dbo].[sqlagent_info] sai
It used to (and should in my opinion) display as follows:SELECT sai.[attribute], sai.[value] FROM [dbo].[sqlagent_info] sai
but instead appears with brackets around the aliases:SELECT [sai].[attribute], [sai].[value] FROM [dbo].[sqlagent_info] sai
Mike -
Many thanks for your explanation.
I have added this issue as a feature request in our internal tracking system.
For your reference its id is SP-2769.
Sorry for any inconvenience caused by this issue.
Add comment
Please sign in to leave a comment.
For Example:
when you use the Tab button to expand the column list to all columns you get this:
instead of this:
SQL Prompt 3.9 did not put brackets around the Aliases in the SELECTs and JOINs.
Mike