| Oracle9i Supplied PL/SQL Packages and Types Reference Release 1 (9.0.1) Part Number A89852-02 |
|
DBMS_PIPE , 8 of 11
This function removes explicitly-created pipes.
Pipes created implicitly by SEND_MESSAGE are automatically removed when empty. However, pipes created explicitly by CREATE_PIPE are removed only by calling REMOVE_PIPE, or by shutting down the instance. All unconsumed records in the pipe are removed before the pipe is deleted.
This is similar to calling PURGE on an implicitly-created pipe.
DBMS_PIPE.REMOVE_PIPE ( pipename IN VARCHAR2) RETURN INTEGER;
pragma restrict_references(remove_pipe,WNDS,RNDS);
| Parameter | Description |
|---|---|
pipename |
Name of pipe that you want to remove. |
| Exception | Description |
|---|---|
|
Null pipe name |
Permission error: Insufficient privilege to remove pipe. The pipe was created and is owned by someone else. |
|
|
![]() Copyright © 1996-2001, Oracle Corporation. All Rights Reserved. |
|