Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Package or Function LIST is In INvalid State

Re: Package or Function LIST is In INvalid State

From: Michel Cadot <micadot{at}altern{dot}org>
Date: Fri, 11 Mar 2005 22:13:50 +0100
Message-ID: <423209d1$0$17295$636a15ce@news.free.fr>

"mike" <hillmw_at_charter.net> a écrit dans le message de news:1110575121.765271.284060_at_o13g2000cwo.googlegroups.com...
| I am trying to understand how Oracle Functions work.
|
| I created a function using TOAD like:
|
| create or replace function list ( field1 number )
| blah, blah, blah ......
| return res;
| end list;
|
| I got this In my cfquery result;
|
| ORA-06575: Package or function LIST is in an invalid state
|
| What is up with that?
|
| Mike
|

As i previously said:
- you have some compilation errors
- you have to query user_errors view to see what are the errors

So post the result of:
select * from user_source where name='LIST' order by line; select * from user_errors where name='LIST' order by sequence, line;

Michel Cadot Received on Fri Mar 11 2005 - 15:13:50 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US