How to get the list of external tables in oracle schema 11g

user3488855

I want to get the list of only external tables in oracle. i tried to get the list using Select * from tab . But it return list of all the table including actual and external . But i only want list of external tables

a_horse_with_no_name

Use

select *
from all_external_tables;

to see all external tables your user as access to. To see them for a specific schema/user:

select *
from all_external_tables
where owner = 'ARTHUR';

If you only want to see the ones owned by your current user, use

select *
from user_external_tables;

To see all table that are not external tables use this:

select ut.table_name
from user_tables ut
where not exists (select 42
                  from user_external_tables uet
                  where uet.table_Name = ut.table_name);

More details in the manual:

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to correctly SELF JOIN tables in oracle 11g?

From Dev

oracle 11g resultSet how to get the table name

From Dev

Filtering Oracle 11g Hierarchical Tables

From Dev

how to left join two tables in a single row (oracle 11g or standard sql)

From Dev

oracle 11g get regex submatches

From Dev

Get list of all possible dates based on particular days [oracle 11g]

From Dev

How to create a table in Oracle 11g with the list of language codes based on util_i18n?

From Dev

How to get Queue using context.lookup() in oracle 11g

From Dev

How to get database table data(oracle 11g) as an Json object & to display that Json object in Android?

From Java

Get list of all tables in Oracle?

From Dev

How do I list all tables in a schema having specific column in oracle sql?

From Dev

How do I list all tables in a schema having specific column in oracle sql?

From Dev

In Oracle, how to list all the tables in *my* schema that *I* created (without having DBA privileges)

From Dev

Oracle 11g temporary list object from query

From Dev

Oracle forms 11g get windows user login

From Dev

Oracle 11g - How to call a function with DML inside of it?

From Dev

How to Execute a Stored Procedure in Oracle 11g

From Dev

How to add offset in a "select" query in Oracle 11g?

From Dev

How to select top five or 'N' rows in Oracle 11g

From Dev

Oracle 11g - How to optimize slow parallel insert select?

From Dev

Oracle 11g, how to speed up an 'in' query

From Dev

How to create new database in oracle 11g express edition?

From Dev

how to separate comma separated values in oracle 11G

From Dev

How to code lowercase query oracle 11g in C#?

From Dev

How to enable Partitioning in oracle 11g (windows 8)?

From Dev

How to set sysdba password in Oracle 11G

From Dev

How to transpose column into row in oracle sql 11G

From Dev

How to LIMIT query results in Oracle 11g?

From Dev

How to insert Indian Rupee symbol in oracle 11g?

Related Related

  1. 1

    How to correctly SELF JOIN tables in oracle 11g?

  2. 2

    oracle 11g resultSet how to get the table name

  3. 3

    Filtering Oracle 11g Hierarchical Tables

  4. 4

    how to left join two tables in a single row (oracle 11g or standard sql)

  5. 5

    oracle 11g get regex submatches

  6. 6

    Get list of all possible dates based on particular days [oracle 11g]

  7. 7

    How to create a table in Oracle 11g with the list of language codes based on util_i18n?

  8. 8

    How to get Queue using context.lookup() in oracle 11g

  9. 9

    How to get database table data(oracle 11g) as an Json object & to display that Json object in Android?

  10. 10

    Get list of all tables in Oracle?

  11. 11

    How do I list all tables in a schema having specific column in oracle sql?

  12. 12

    How do I list all tables in a schema having specific column in oracle sql?

  13. 13

    In Oracle, how to list all the tables in *my* schema that *I* created (without having DBA privileges)

  14. 14

    Oracle 11g temporary list object from query

  15. 15

    Oracle forms 11g get windows user login

  16. 16

    Oracle 11g - How to call a function with DML inside of it?

  17. 17

    How to Execute a Stored Procedure in Oracle 11g

  18. 18

    How to add offset in a "select" query in Oracle 11g?

  19. 19

    How to select top five or 'N' rows in Oracle 11g

  20. 20

    Oracle 11g - How to optimize slow parallel insert select?

  21. 21

    Oracle 11g, how to speed up an 'in' query

  22. 22

    How to create new database in oracle 11g express edition?

  23. 23

    how to separate comma separated values in oracle 11G

  24. 24

    How to code lowercase query oracle 11g in C#?

  25. 25

    How to enable Partitioning in oracle 11g (windows 8)?

  26. 26

    How to set sysdba password in Oracle 11G

  27. 27

    How to transpose column into row in oracle sql 11G

  28. 28

    How to LIMIT query results in Oracle 11g?

  29. 29

    How to insert Indian Rupee symbol in oracle 11g?

HotTag

Archive