블로그 이미지
바나나맛딸기우유

Tag

Notice

Recent Post

Recent Comment

Recent Trackback

Archive

calendar

1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
  • total
  • today
  • yesterday

'DB/Oracle'에 해당되는 글 1건

  1. 2019.02.21 Oracle 오브젝트/테이블/프로시져 조회
2019. 2. 21. 14:29 DB/Oracle

▣ 오브젝트 조회

select *

  from ALL_OBJECTS


▣ 테이블 조회

select *

  from ALL_TABLES


▣ 테이블 컬럼 정보

select *

  from ALL_TABLE_COLUMNS


▣ 테이블 인덱스 정보

select *

  from ALL_IND_COLUMNS


▣ 테이블 COMMENT 쿼리

select *

  from ALL_TABLE_COMMENTS


▣ 컬럼 COMMENT 쿼리

select *

  from ALL_COL_COMMENTS


▣ PROCEDURE 조회

select *

  from ALL_PROCEDURES


posted by 바나나맛딸기우유