Table names not suggested
MikeyC
Posts: 249 Bronze 3
Given this code:
DECLARE
@tStart_Date DATETIME,
@tEnd_Date DATETIME
SET @tStart_Date='11/17/05';
SET @tEnd_Date='12/31/05';
TRUNCATE TABLE <cursor>
there are no table names in the suggestions that pop up when I hit ctrl-space. (No auto suggestions are popped up at that point, or as I start to type a table name.)
DECLARE
@tStart_Date DATETIME,
@tEnd_Date DATETIME
SET @tStart_Date='11/17/05';
SET @tEnd_Date='12/31/05';
TRUNCATE TABLE <cursor>
there are no table names in the suggestions that pop up when I hit ctrl-space. (No auto suggestions are popped up at that point, or as I start to type a table name.)
Comments
Michael
1. typing TR... won't prompt "TRUNCATE" keyword
2. It doesn't prompt for table candidates after TRUNCATE TABLE
Note. It does CAPITALIZE the keywords into TRUNCATE TABLE
Tried to add TRUNCATE or TRUNCATE TABLE to Triggering Words, no good either; it'd be nice to add it
DBA, MCITP