Search
Submit a request
Sign in
How can we help you today?
Categories
Submit a request
Submit a request
Sign in
Support
Community
SQL Prompt 3 Beta
Prefix is duplicating
New post
If I type:
select o.[ORDERID], o.[FINALPRODUCTID], o.HEEL
from [dbo].[ORDERSDETAIL] o
I get:
select o.[ORDERID], o.[FINALPRODUCTID],
o.o.
[HEEL]
from [dbo].[ORDERSDETAIL] o
Notice the duplicated prefix.
This is from Query Analyzer.
DaveTheWave
September 01, 2006 13:56
-
0
+
Comments
2 comments
Sort by
Date
Votes
I've noticed that SQL Prompt completly ignores the fact that I've already specified a table by typing 'o.' and then invoking canidate completion.
DaveTheWave
September 01, 2006 14:08
-
0
+
Thanks for the feedback. I have entered it into our bug tracking system. This will definatly get fixed in the final version as is most anoying.
Lionel
Lionel
September 04, 2006 10:26
-
0
+
Add comment
Please
sign in
to leave a comment.
select o.[ORDERID], o.[FINALPRODUCTID], o.HEEL
from [dbo].[ORDERSDETAIL] o
I get:
select o.[ORDERID], o.[FINALPRODUCTID], o.o.[HEEL]
from [dbo].[ORDERSDETAIL] o
Notice the duplicated prefix.
This is from Query Analyzer.