Author |
Message |
judahr
Joined: 09 Mar 2007 Posts: 319 Country: United States |
|
Set should allow UDFs |
|
v5.1.40
 |
 |
Declare @DT datetime
Set @DT = |
I don't use Set very often (I prefer select or inline assignment) but to be technically correct, after the '=' I should have a list of scalar UDF's. Currently, I only get tables, which isn't valid.
|
|
Fri Nov 19, 2010 12:19 pm |
|
 |
SysOp
Site Admin
Joined: 26 Nov 2006 Posts: 7951
|
|
|
|
Hello,
There should be no prompt of any kind displayed after "Set @DT =" Iintellisense is not currently implemented for this case. You can still use forced prompt by pressing Ctrl+Space, which should list all objects available in the current database, scalar functions and tables among them.
|
|
Fri Nov 19, 2010 8:33 pm |
|
 |
judahr
Joined: 09 Mar 2007 Posts: 319 Country: United States |
|
|
|
Actually it depends on where you are. For example, after an Insert...Values... or Select statement it shows you column names. After an Insert...Select... you get table names and function names.
|
|
Mon Nov 22, 2010 11:46 am |
|
 |
|