Use Access module in SQL view

  • Thread starter Thread starter SF
  • Start date Start date
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.
 
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.
 
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
 
Back
Top