달력

12

« 2024/12 »

  • 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

'프로그래밍'에 해당되는 글 394

  1. 2010.04.01 '10.02.05 story
2010. 4. 1. 13:27

'10.02.05 story DataBase이야기2010. 4. 1. 13:27

dbms_sql.describe_columns

(c=>l_theCursor, col_cnt =>l_colcnt, desc_t=>l_desctbl);

 

각 열에 대한 메타데이터를 l_desctbl에 넘겨준다.

col_cnt 변수는 열의 수를 읽어오는 변수이다.

for i in 1.. l_colcnt

loop--각열에 대해서

dbms_output.put_line(l_desctbl.col_max_len);

dbms_output.put_line(l_Desctbl.col_type);

dbms_output.put_line(l_desctbl.col_precision);

....

end loop

-- 배열 처리를 사용하면 대량의 삽입을 빠르게 할 수 있다.

TKPROF사용하기

select a.spid

from v$process a, v$session b

where a.addr = b.paddr

and b.audsid = userenv('sessionid');

위 문장을 실행해서 추적파일번호을 알아낸다.

cmd에서 udump디렉토리로 이동한다.

명령줄에 tkprof orcl_ora_[세션번호].trc report.txt

명령줄을 치면 udump 폴더에 report.txt파일이 생성

 

'DataBase이야기' 카테고리의 다른 글

'03.03.05 story  (0) 2010.04.01
'10.03.03 story  (0) 2010.04.01
'10.03.02 story  (0) 2010.04.01
'10.02.06 story  (0) 2010.04.01
'10.02.04 story  (0) 2010.04.01
:
Posted by НooпeУ


Code Start Code End