Oracle
 sql >> Baza danych >  >> RDS >> Oracle

Jak znaleźć podstawową nazwę kolumny i tabeli dla widoku Oracle?

Tabele użyte do utworzenia widoku można wybrać za pomocą zapytania:

select 
  name , 
  type , 
  referenced_name , 
  referenced_type
from 
  user_dependencies 
where 
  name = 'VIEW_NAME' and 
  type = 'VIEW' and  
  referenced_type = 'TABLE';

Jeśli kolumny widoku mają tę samą nazwę kolumny tabeli, wypróbuj poniższe zapytanie:

select 
  distinct table_name, column_name 
from 
  all_tab_columns 
where table_name in (select
                        referenced_name
                      from 
                        user_dependencies 
                      where 
                        name = 'VIEW_NAME' and 
                        type = 'VIEW' and  
                        referenced_type = 'TABLE') 
 and column_name in (select 
                        column_name 
                     from 
                        all_tab_columns 
                     where 
                        table_name = 'VIEW_NAME');


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Jak wyświetlić wszystkie tabele w Oracle?

  2. Jaki jest skuteczny sposób śledzenia, identyfikowania i raportowania każdego „komunikatu o błędzie” zgłaszanego przez Twoją aplikację?

  3. Zagnieżdżone kursory w PL/SQL

  4. Oracle ORA-30004 przy użyciu funkcji SYS_CONNECT_BY_PATH,

  5. Dokumentacja MAA dla Oracle Cloud