Database/Oracle

오라클 임시 테이블 조회

ZEROMI 2021. 12. 6. 11:20
728x90
SELECT table_name 테이블명
      ,temporary  임시테이블유무
      ,duration   세션_data_유지기간
  FROM user_tables
 WHERE temporary = 'Y';

 

728x90