[Oracle] get all the table names specified table space

select owner||'.'||table_name 

from dba_tables

where tablespace_name='A';

Guess you like

Origin www.cnblogs.com/xiangtunmizu/p/12002732.html