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

Home -> Community -> Mailing Lists -> Oracle-L -> Using ALL_CONS_COLUMN view inside a function

Using ALL_CONS_COLUMN view inside a function

From: Brett Hammerlindl <hammerl_at_telusplanet.net>
Date: Mon, 27 Aug 2007 20:32:05 -0600
Message-ID: <1188268325.46d389251cdb8@webmail.telusplanet.net>


I hope someone can help me sort out something that makes no sense to me.

I have written an Oracle function that returns a VARCHAR2 (see below) You can see it has a cursor for a select of rows from the ALL_CONS_COLUMN view.

The function works fine when I run with p_owner set to the current user, but I have hit a snag when I put in other owners.

Here is an example when I run my function with parameters of 'SYS' and 'REGISTRY_PK', it returns a NULL string because no rows are found. BUT when I run this select, I get 2 rows returned.   Select * from ALL_CONS_COLUMNS
   Where owner = 'SYS' and constraint_name = 'REGISTRY_PK'

When I hit this problem, I looked for the simplest case I could find that had a problem. It is based on the statement.   select count(*) cc from all_tables where owner = 'SYS'

The value returned inside a function is 27 while the query returns 703.

This is an Oracle 10g database. I am only using example with SYS as owner since others can see if they get the same results. I had this problem with p_owner set other users as well.

Does anyone know what is going on?

How do I get a function to return a VARCHAR2 list the column names?

Thank you for the help, Brett

--
http://www.freelists.org/webpage/oracle-l
Received on Mon Aug 27 2007 - 21:32:05 CDT

Original text of this message

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