일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Spring
- PHP
- node.js
- MySQL
- Ajax
- JDOM
- oracle
- JSON
- jsr 296
- rowspan
- dock
- 전자정부프레임워크
- jQuery
- GPS
- Google Map
- 가우스
- Android
- phonegap
- appspresso
- 선택적조인
- Struts
- Eclipse
- swingx
- tomcat
- sencha touch
- ibsheet
- MFC
- PLSQL
- iBATIS
- WebLogic
Archives
- Today
- Total
목록pipeline (2)
Where The Streets Have No Name
Pipelined Table Function 의 용도
http://scidb.tistory.com/entry/Pipelined-Table-Function-의-사용 http://www.oracle-developer.net/display.php?id=207
Developement/DataBase
2009. 1. 11. 01:16
How to write this function using pipelined method?
출처 : http://forums.oracle.com/forums/thread.jspa?threadID=385558 create or replace function fewcols(n in number,t in varchar2) return sys_refcursor is str varchar2(1000); opt sys_refcursor; begin for i in (select column_name from all_tab_cols where table_name = t and column_id select fewcols(4,'EMP') from dual; FEWCOLS(4,'EMP') -------------------- CURSOR STATEMENT : 1 CURSOR STATEMENT : 1 EMPNO..
Developement/DataBase
2008. 1. 19. 22:15