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

Home -> Community -> Mailing Lists -> Oracle-L -> Re: Verify Piipe Exists

Re: Verify Piipe Exists

From: Mladen Gogala <mgogala_at_allegientsystems.com>
Date: Mon, 10 Jan 2005 13:27:14 -0500
Message-ID: <41E2C902.9040306@allegientsystems.com>


Freeman, Donald wrote:

>I am trying to install a vendor application with an Oracle repository =
>and not making much progress. The install has failed and the cleanup =
>requires that the pipe be purged and removed or the database be bounced. =
>I've been through this four times since Friday afternoon. I can't find =
>any way to view whether or not a pipe exists. I know its not a =
>conventional database object and that its some sort of memory structure. =
> Is there a way to do this? Where do I look?
>
>
>

You can call a plumber or take a look into v$DB_PIPES. It looks like this:
SQL> desc v$db_pipes

 Name                                      Null?    Type
 ----------------------------------------- -------- 
----------------------------
 OWNERID                                            NUMBER
 NAME                                               VARCHAR2(1000)
 TYPE                                               VARCHAR2(7)
 PIPE_SIZE                                          NUMBER

SQL> That should reveal the intricate details of the plumbing in your database, so
that you can then use DBMS_PIPE to obliterate the pipe.

-- 
Mladen Gogala
Oracle DBA
Ext. 121


--
http://www.freelists.org/webpage/oracle-l
Received on Mon Jan 10 2005 - 12:29:03 CST

Original text of this message

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