Use Access module in SQL view

  • Thread starter Thread starter SF
  • Start date Start date
S

SF

Hi,

How can I use access function in SQL view or SP (like in access query)?

SF
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top