일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- hadoop
- Python
- table
- plugin
- Express
- Kotlin
- SPC
- window
- SSL
- mybatis
- NPM
- Spring
- IntelliJ
- 공정능력
- Sqoop
- SQL
- Android
- Java
- R
- JavaScript
- 보조정렬
- xPlatform
- react
- Eclipse
- vaadin
- GIT
- tomcat
- es6
- MSSQL
- mapreduce
- Today
- Total
목록분류 전체보기 (655)
DBILITY
초기페이지에서 plugin설치로 분기시 적용해 봐야겠다.11이하는 기존의 activex설치 방식으로 처리, 이외는 신규런처 설치로 var agent = navigator.userAgent.toLowerCase();if( ( agent.indexOf('msie') == -1 && agent.indexOf('trident') == -1 ) || agent.indexOf('edge') > -1 ) {document.write("익스아님");} else {document.write("익스임");}
관리 툴 없이 TABLESPACE부터 생성하려니 몇 번의 명령어 오류를 경험하게 되었다. CREATE TABLESPACE TS_DEV DATAFILE 'D:\TOOLS\ORACLESTD1\ORADATA\ORA1\TS_DEV01.DBF' SIZE 500M AUTOEXTEND ON NEXT 100M; CREATE TABLESPACE IX_DEV DATAFILE 'D:\TOOLS\ORACLESTD1\ORADATA\ORA1\IX_DEV01.DBF' SIZE 200M AUTOEXTEND ON NEXT 100M; CREATE USER DEV IDENTIFIED BY ****** DEFAULT TABLESPACE TS_DEV TEMPORARY TABLESPACE TEMP QUOTA UNLIMITED ON TS_DEV..
http://ibmsystemsmag.com/CMSTemplates/IBMSystemsMag/Print.aspx?path=/ibmi/administrator/db2/SQL-Arrays-in-DB2-for-i-7-1 언젠가 사용할 지 몰라 붙여뒀다. Historically, to pass a list of values to or from an SQL procedure, you'd had a few options Use a long list of input and output parameters. Over time, the procedure's parameter list can become unbearably long and difficult to understand. Concatenate all the v..
NULL로 처리시 NULLIF(컬럼,0)
db2 for i series v7.1에 og4odbc를 통해 db link로 사용중 오류가 발생했다. 다른쪽에선 간혹 나는 것이었는데,그때는 정말 lock상태였다. 이번엔 host상에선 SHRRD로 나오는 걸 보니 짐작으론 shared 상태인 거 같은데. db2 같으면 for read only나 for fetch only를 쓸 수 있으나, oracle local과 db2 remote table을 join(oracle gateway)한 상태인데,저런게 될리는 없고. odbc에서 select only check가 되어 있다. 마침 sql구문상에서 db2쪽을 inline view로 바꿔 혹시나하고 with read only.뿅~~하고 이상없이 되었다. create view 에서나 사용하는 옵션인데,어쩌다 이..