Use Access module in SQL view

D

Douglas J. Steele

You can't. SQL doesn't know anything about VBA.

Depending on what version of SQL Server you're using, you can create your
own functions there in T-SQL Take a look in BOL starting under CREATE
FUNCTION.
 
S

SF

Thanks.

SF
Douglas J. Steele said:
You can't. SQL doesn't know anything about VBA.

Depending on what version of SQL Server you're using, you can create your
own functions there in T-SQL Take a look in BOL starting under CREATE
FUNCTION.
 
G

Guest

Please tell us what you're trying to do.

There are pretty straight-forward replacements in most sitations.

like instead of using IIF, you use SELECT CASE, etc
 
Top