Home > Database > Oracle > body text

How to check which user a table belongs to in Oracle

WBOY
Release: 2022-05-18 18:14:25
Original
14624 people have browsed it

Method: 1. Use the "SELECT * FROM DBA_TABLES WHERE TABLE_NAME='table name'" statement to query; 2. Use the "...WHERE OBJECT_TYPE='TABLE' and OBJECT_NAME='table name'" statement to query .

How to check which user a table belongs to in Oracle

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

How does oracle check which user the table belongs to

Oracle query the user the table belongs to

Method 1:

SELECT * FROM DBA_TABLES WHERE TABLE_NAME='表名';
Copy after login

Method 2:

SELECT * FROM ALL_OBJECTS WHERE OBJECT_TYPE='TABLE' and OBJECT_NAME='表名'
Copy after login

Expand knowledge:

Oracle query view belongs to the user

Method one:

SELECT * FROM ALL_VIEWS WHERE VIEW_NAME='视图名';
Copy after login

Method two:

SELECT * FROM ALL_OBJECTS WHERE OBJECT_TYPE='VIEW' and OBJECT_NAME='视图名'
Copy after login

Oracle query the user to whom the stored procedure belongs

SELECT * FROM ALL_OBJECTS WHERE OBJECT_TYPE='PROCEDURE' and OBJECT_NAME='存储过程名'
Copy after login

Recommended tutorial: "Oracle Video tutorial

The above is the detailed content of How to check which user a table belongs to 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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!