Answers for "oracle find table name like"

SQL
5

show all tables in oracle

SELECT * FROM ALL_TABLES;
Posted by: Guest on November-20-2020
3

SELECT table_name FROM user_tables;

SELECT
  table_name, owner
FROM
  all_tables
ORDER BY
  owner, table_name
Posted by: Guest on March-07-2020
4

oracle list tables

SELECT * FROM USER_TABLES;		-- Tables from connected schema
SELECT * FROM ALL_TABLES;		-- Tables available to connected schema
	SELECT * FROM ALL_TABLES WHERE OWNER = 'SCHEMA_NAME';
	SELECT * FROM ALL_TABLES WHERE TABLES_NAME = 'TABLE_NAME';
SELECT * FROM DBA_TABLES;		-- All Tables
Posted by: Guest on January-31-2021
1

SELECT table_name FROM user_tables;

SELECT
  table_name, owner
FROM
  user_tables
ORDER BY
  owner, table_name
Posted by: Guest on March-07-2020

Code answers related to "oracle find table name like"

Code answers related to "SQL"

Browse Popular Code Answers by Language