BookmarkSubscribeRSS Feed
OS2Rules
Obsidian | Level 7

Hi All:

I am using SAS/ACCESS ODBC (v9.3) to access an Oracle table.  I would like to execute a stored process but I keep getting an error:

    proc sql;
    connect TO ODBC (datasrc=odbc_name user=myuserid password=XXXX1234 );
    execute (execute AAA_BBB_CCCC.MY.STORED.PROCESS.NAME  ) by ODBC;

ERROR: CLI execute error: [Oracle][ODBC]Syntax error or access violation.

    disconnect from ODBC;
    quit;

NOTE: The SAS System stopped processing this step because of errors.

I have used this same syntax for a SQL Server store process and it works there.

Any help would be appreciated.

5 REPLIES 5
DBailey
Lapis Lazuli | Level 10

Are you sure of the package name?  You're probably obfuscating, but I don't think it can have all of the periods.

OS2Rules
Obsidian | Level 7

Hi:

Just trying to be obtuse....  I messed up the periods - should be AAA_BBB_CCCC.MY_STORED_PROCESS_NAME

But I can run the stored process from SQL + so that shouldn't be an issue.

SASKiwi
PROC Star

Have you tried a semicolon on your EXECUTE statement?

execute (execute AAA_BBB_CCCC.MY_STORED_PROCESS_NAME;  ) by ODBC;

OS2Rules
Obsidian | Level 7

SASKiwi:

That give me a syntax error.....

SASKiwi
PROC Star

I think you are right, semicolons are only required on SELECT statements. Unfortunately I don't have Oracle to test this out on, although I too have a stored procedure running under SQL Server and it works fine.

Have a look at this: 18350 - Calling stored procedures using SAS/ACCESS® Interface to Oracle

And maybe try: execute (execute AAA_BBB_CCCC.MY_STORED_PROCESS_NAME() ) by ODBC; Does your stored proc have any parameters?


Catch up on SAS Innovate 2026

Dive into keynotes, announcements and breakthroughs on demand.

Explore Now →
What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 5 replies
  • 3288 views
  • 1 like
  • 3 in conversation