Home > Database > Oracle > body text

How to view stored procedures in oracle

WBOY
Release: 2022-01-06 15:29:32
Original
45819 people have browsed it

Method: 1. Use the "SELECT text FROM user_source WHERE NAME = 'stored procedure name' ORDER BY line" statement to view; 2. Use pl/sql third-party tools to view, find the corresponding stored procedure and click to view Can.

How to view stored procedures in oracle

The operating environment of this tutorial: Windows 10 system, Oracle 11g version, Dell G3 computer.

How to view stored procedures in oracle

You can view them with statements or use third-party tools.

1. Statement viewing method:

1. Execute statement:

SELECT text
    FROM user_source
   WHERE NAME = 'Procedure Name'
ORDER BY line;--其中Procedure Name为存储过程名字,需要全部用大写英文。
Copy after login

2. If you want to check the stored procedure of P_TEST:

SELECT text
    FROM user_source
   WHERE NAME = 'P_TEST'
ORDER BY line;
Copy after login

3. Content As follows:

How to view stored procedures in oracle

2. Tool view:

1. Log in to the specified database with a third-party tool (such as pl/sql).

How to view stored procedures in oracle

#2. Find Procedures in the tree on the left, and then find the corresponding stored procedure.

How to view stored procedures in oracle

#3. Right-click the stored procedure and select "View". Then you can see it.

How to view stored procedures in oracle

Recommended tutorial: "Oracle Tutorial"

The above is the detailed content of How to view stored procedures in oracle. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template