DEFECT REPORT: Sql Prompt Alias for OPENQUERY in wrong place

njahnckenjahncke Posts: 23
edited March 20, 2012 12:19PM in SQL Prompt Previous Versions
The text entered when hitting tab upon typing 'OPENQ' (to expand the OPENQUERY suggestion) yields the following:
SELECT
	*
FROM
	OPENQUERY AS O

The cursor follows the O alias. It should do the following:
SELECT
	*
FROM
	OPENQUERY() AS O

The cursor should be between the parenthesis.

Comments

Sign In or Register to comment.