일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Kotlin
- SPC
- Eclipse
- SSL
- hadoop
- IntelliJ
- Python
- MSSQL
- Sqoop
- Android
- table
- mapreduce
- 보조정렬
- xPlatform
- Java
- JavaScript
- es6
- vaadin
- SQL
- R
- NPM
- tomcat
- react
- GIT
- plugin
- mybatis
- Spring
- Express
- window
- 공정능력
- Today
- Total
목록database (62)
DBILITY
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 에서나 사용하는 옵션인데,어쩌다 이..
가끔 특정 위치에 컬럼 추가 등 CTAS로 백업해 두고 진행하는데 대용량 테이블일 경우 수행속도가 많이 느린 경우가 있다. LOGGING을 제거하고 사용한다면 훨씬 빠른 속도로 작업을 마칠 수 있다. CREATE TABLE TABLE_BACKUP UNRECOVERABLE AS SELECT column_1,column_2,column_N FROM TABLE;
UTL_FILE Package 중 FREMOVE(PATH,FILE_NM) 를 사용해 봅니다. 아마 9i r2부턴가 지원된다고 합니다. C:\Users\Administrator>sqlplus /nolog SQL*Plus: Release 11.2.0.1.0 Production on Wed Jun 28 14:51:02 2017 Copyright (c) 1982, 2010, Oracle. All rights reserved. SQL> conn /as sysdba Connected. SQL> CREATE DIRECTORY TEST_DIR AS 'D:\\oracle_files'; Directory created. SQL> GRANT READ,WRITE ON DIRECTORY TEST_DIR TO 사용자; Grant..