본문 바로가기

Items

(391)
Oracle/PLSQL: Dump Function Oracle/PLSQL: Dump FunctionIn Oracle/PLSQL, the dump function returns a varchar2 value that includes the datatype code, the length in bytes, and the internal representation of the expression. The syntax for the dump function is: dump( expression, [return_format], [start_position], [length] ) expression is the expression to analyze. return_format is optional. It determines the format of the retur..
V$SQL V$SQLV$SQL lists statistics on shared SQL area without the GROUP BY clause and contains one row for each child of the original SQL text entered. Statistics displayed in V$SQL are normally updated at the end of query execution. However, for long running queries, they are updated every 5 seconds. This makes it easy to see the impact of long running SQL statements while they are still in progress. ..
Oracle Sys Table and View Study 1st week Select Object_Type, count(*) from dba_objects Group by Object_Type order by count(*) desc Select * from dba_objects Where Object_Type = 'TABLE' Select Owner, Cluster_Name, TableSpace_Name, IOT_Name, Table_Name, Partitioned, Blocks, Num_Rows, Avg_Row_Len, Last_Analyzed, dt.* from dba_tables dt Where Owner = 'EJMIS' Order by 7 Desc Select dt.* from dba_tables dt Where Owner = 'EJMIS' Select SID, S..
IETLS TESOL / IELTS / TOEFL / GRE http://www.californiatesol.org/ 8주 IELTS(아이엘츠)는 영국이나 호주, 뉴질랜드 등 영연방 국가에 유학이나 연수, 이민 예정자를 위한 시험으로 인식되었지만 현재는 미국, 캐나다 등지에서 이민,대학교 입학,편입 등 점차 IELTS점수의 통용 범위가 점차 넓어지고 있다. 현재는 세계적인 영어평가 시험으로 이민이나 유학을 선택할 때 필요한 IELTS(International English Language Testing System)에 대한 인지도가 급상승하면서 IELTS(아이엘츠) 시험평가 시스템에 대한 관심도 높아지고 있다. 현재 IELTS(아이엘츠)는 전세계 105개국 230개 기관에서 실시하고 있다. 듣기, 읽기, 쓰기, 말..
dba view study 1 SELECT * FROM v$sort_usage Select * from v$sgastat order by bytes desc Select Pool, Name, Bytes, (Bytes/1000000) MB from v$sgastat where name like '%cache%' order by bytes desc Select * from v$librarycache Select sga.*, lbc.* from v$sgastat sga, (select NameSpace, Gets, GetHits, GetHitRatio, Pins, PinHits, PinHitRatio, Reloads, Invalidations from v$librarycache) lbc Where Upper(sga.Name) = lbc.n..
Pro Oracle SQL (Expert's Voice in Oracle) Editorial Reviews Product Description Pro Oracle SQL unlocks the power of SQL in the Oracle Database—one of the most potent SQL implementations on the market today. To master it requires a three-pronged approach: learn the language features, learn the supporting features that Oracle provides to help use the language effectively, and learn to think and work in sets. Karen Morton and her team help..
원본 10046 트레이스 파일에 담긴 정보의 요약 -- Expert of Oracle p318 정리 -- 원본 10046 트레이스 파일에 담긴 정보의 요약 Oracle 의 10046 확장 트레이스 파일에는 수많은 키워드와 관련 값들이 포함되어 있으며, 사용자는 이 값들을 분석하여 모니터링 대상 세션이 어떤 작업을 했고, 작업을 수행하는 과정에서 어떤 대기 현상에 왜 부딪혔는지 파악할 수 있다. len : SQL 문장에 포함된 문자의 수 dep : 애플리케이션/트리거에서 실행된 SQL 문장의 'depth'. dep=0 은 사용자가 직접 실행한 SQL 문장임을 의미 dep=1 은 해당 문장이 트리거 내에서, Oracle 옵티마이저에 의해서, 또는 내부적인 공간 관리를 위해 자동실행 dep=2 는 일반적으로 트리거 내에서 SQL 문장이 호출되거나 공간 관리를..
SYS_CONNECT_BY_PATH SYS_CONNECT_BY_PATHSyntax Description of the illustration sys_connect_by_path.gif Purpose SYS_CONNECT_BY_PATH is valid only in hierarchical queries. It returns the path of a column value from root to node, with column values separated by char for each row returned byCONNECT BY condition. Both column and char can be any of the data types CHAR, VARCHAR2, NCHAR, or NVARCHAR2. The string returned is..