select num
, substr(max(sys_connect_by_path(''''||data||'''', ', ')), 2) as data
from (
select num
, data
, row_number() over(partition by num order by data) rn
from table
)
start with rn = 1
connect by prior num = num and prior rn = rn - 1
group by num
'ORACLE' 카테고리의 다른 글
Oracle 11g IP 변경 시 EM 실행이 안될 경우 (0) | 2010.09.24 |
---|---|
processes 파라미터 값을 변경하여 접속 session 증가 (0) | 2010.09.24 |
Oracle 11g EM 재설치 (0) | 2010.09.17 |
Oracle 11g EM (Enterprise Manager) 설정 (0) | 2010.09.03 |
Oracle Rollup 팁 (0) | 2010.07.12 |
Oracle 10g 설치 후 접속이 안될 경우 (ORA-12514 에러) (0) | 2009.06.25 |
Oracle 내장함수 (0) | 2009.04.14 |
undo tablespace 사이즈 변경 (0) | 2008.12.03 |
DB Link (0) | 2008.12.03 |
control file 위치 변경 (0) | 2008.12.03 |