- Posts: 56
- Thank you received: 1
Calling Oracle procedure
12 years 6 months ago #2010
by rudolfsun
Calling Oracle procedure was created by rudolfsun
Hi
I am connected to an Oracle database via ODBC and I am trying to use the SQL scripts to call a pocedure with in a package
the code I am using is
execute schema_name.Package_name.procedure_name;
However the procedure does not fire. I have called the procedure from within Oracle and all works fine.
Any ideas on what could be wrong, or is this not possible
Thanks
Emile
I am connected to an Oracle database via ODBC and I am trying to use the SQL scripts to call a pocedure with in a package
the code I am using is
execute schema_name.Package_name.procedure_name;
However the procedure does not fire. I have called the procedure from within Oracle and all works fine.
Any ideas on what could be wrong, or is this not possible
Thanks
Emile
Please Log in or Create an account to join the conversation.
12 years 6 months ago #2012
by admin
Mike
ETL Architect
Replied by admin on topic Re: Calling Oracle procedure
if you run it from sql editor by pressing green arrow does it work?
I believe it should be
begin
procedurename;
end;
Read this as well
www.dbsoftlab.com/forum/how-to-get-help-today.html
Mike
I believe it should be
begin
procedurename;
end;
Read this as well
www.dbsoftlab.com/forum/how-to-get-help-today.html
Mike
Mike
ETL Architect
Please Log in or Create an account to join the conversation.
12 years 6 months ago #2013
by rudolfsun
Replied by rudolfsun on topic Re: Calling Oracle procedure
Hi
No it doesnt run when just clicking the green arrow, I created a batch file that solved the issue anyway
your link was very educational
thanks
Emile
No it doesnt run when just clicking the green arrow, I created a batch file that solved the issue anyway
your link was very educational
thanks
Emile
Please Log in or Create an account to join the conversation.
12 years 6 months ago #2015
by admin
Mike
ETL Architect
Replied by admin on topic Re: Calling Oracle procedure
We really would like to help you with this problem so other users will benefit
Can you have a look at the attached screen shot and post simular
Can you have a look at the attached screen shot and post simular
Mike
ETL Architect
Attachments:
Please Log in or Create an account to join the conversation.
12 years 6 months ago - 12 years 6 months ago #2016
by rudolfsun
Replied by rudolfsun on topic Re: Calling Oracle procedure
I have ommited the package names as I dont want them to be visible to people
thanks
begin
schema.package.procedire;
end;
Following Error happened:
ORA-01861: literal does not match format string
ORA-06512: at "schema.package", line 414
ORA-06512: at "schema.package", line 160
ORA-06512: at line 2
thanks
begin
schema.package.procedire;
end;
Following Error happened:
ORA-01861: literal does not match format string
ORA-06512: at "schema.package", line 414
ORA-06512: at "schema.package", line 160
ORA-06512: at line 2
Last edit: 12 years 6 months ago by rudolfsun.
Please Log in or Create an account to join the conversation.