Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Empty tablespace name in dba_tables and dba_tab_partitions for no temporary table?

spanish_inquisitionSep 14 2014 — edited Sep 25 2014

Hi All;

I found table for which I cannot find tablespace in dba_tables, dba_tab_partitions and same (nothing) in dba_segments - below queries:

Query(dba_tables):

SELECT table_name, tablespace_name, temporary

  FROM dba_tables

  WHERE table_name = 'SOP_HIST';

Results:

Table name, Tablespace name, Temporary

SOP_HIST (null) N

Query(dba_tab_partitions):

SELECT table_name, partition_name, tablespace_name, subpartition_count

  FROM dba_tab_partitions

  WHERE table_name = 'SOP_HIST';

Results:

table_name, partition_name, tablespace_name, subpartition_count

SOP_HIST MO201208 (null)  0

SOP_HIST MO201209 (null)  0

SOP_HIST MO201210 (null)  0

SOP_HIST MO201211 (null)  0

SOP_HIST MO201212 (null)  0

SOP_HIST MO201301 (null)  0

SOP_HIST MO201302 (null)  0

SOP_HIST MO201303 (null)  0

SOP_HIST MO201304 (null)  0

SOP_HIST MO201305 (null)  0

SOP_HIST MO201306 (null)  0

SOP_HIST MO201307 (null)  0

SOP_HIST MO201308 (null)  0

SOP_HIST MO201309 (null)  0

SOP_HIST MO201310 (null)  0

SOP_HIST MO201311 (null)  0

SOP_HIST MO201312 (null)  0

SOP_HIST MO201401 (null)  0

SOP_HIST MO201402 (null)  0

SOP_HIST MO201403 (null)  0

SOP_HIST MO201404 (null)  0

SOP_HIST MO201405 (null)  0

SOP_HIST MO201406 (null)  0

SOP_HIST MO201407 (null)  0

SOP_HIST MO201408 (null)  0

SOP_HIST MO201409 (null)  0

SOP_HIST MO201410 (null)  0

SOP_HIST MO201411 (null)  0

SOP_HIST MO201412 (null)  0

Query (dba_segments):

SELECT *

  FROM dba_segments

  WHERE table_name = 'SOP_HIST';

Results:

No rows selected

Thanks for advise.

Regards,

Bolo

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 23 2014
Added on Sep 14 2014
6 comments
1,182 views