2025-01-02 17:32 기간계산 수정
This commit is contained in:
parent
10a7b0acad
commit
3629a5dde0
@ -0,0 +1,275 @@
|
|||||||
|
[CLIP report Server - Report Key 00c0cbe58df248c184b3e683f244a752 Thread 157. | INFO 2025-01-02 12:51:39] : Report Read Time : TimeMillis : 363ms, HH:MM:SS : 00:00:00
|
||||||
|
[CLIP report Server - Report Key 00c0cbe58df248c184b3e683f244a752 Thread 157. | INFO CODE=10 | 2025-01-02 12:51:40] : 리포트 생성을 시작합니다.
|
||||||
|
[CLIP report Server - Report Key 00c0cbe58df248c184b3e683f244a752 Thread 157. | DEBUG CODE=10100 | 2025-01-02 12:51:40] : [SQLDS3] Data Query : SELECT
|
||||||
|
|
||||||
|
(
|
||||||
|
|
||||||
|
CASE WHEN RESPONDENT_GUBUN ='1302000000'
|
||||||
|
|
||||||
|
THEN RESPONDENT_COMPANY
|
||||||
|
|
||||||
|
ELSE RESPONDENT_CEO
|
||||||
|
|
||||||
|
END
|
||||||
|
|
||||||
|
)AS RESPONDENT_CEO,
|
||||||
|
|
||||||
|
(
|
||||||
|
|
||||||
|
CASE WHEN APPLCNT_GUBUN = '1302000000'
|
||||||
|
|
||||||
|
THEN APPLCNT_COMPANY
|
||||||
|
|
||||||
|
ELSE COMPANY_CEO
|
||||||
|
|
||||||
|
END
|
||||||
|
|
||||||
|
)AS APPLCNT_NAME,
|
||||||
|
|
||||||
|
ROWNUM RNUM,
|
||||||
|
|
||||||
|
CASE_NO,
|
||||||
|
|
||||||
|
COMPANY_CEO,
|
||||||
|
|
||||||
|
APPLCNT_COMPANY,
|
||||||
|
|
||||||
|
RESPONDENT_COMPANY,
|
||||||
|
|
||||||
|
RESPONDENT_ADDR,
|
||||||
|
|
||||||
|
ADDR_ORDER,
|
||||||
|
|
||||||
|
MEDIATION_BIG,
|
||||||
|
|
||||||
|
MEDIATION_SMALL,
|
||||||
|
|
||||||
|
BIG_ORDER,
|
||||||
|
|
||||||
|
OTHER_CODE
|
||||||
|
|
||||||
|
FROM (
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
|
||||||
|
RESPONDENT_GUBUN,
|
||||||
|
|
||||||
|
CASE_NO,
|
||||||
|
|
||||||
|
COMPANY_CEO,
|
||||||
|
|
||||||
|
APPLCNT_COMPANY,
|
||||||
|
|
||||||
|
APPLCNT_GUBUN,
|
||||||
|
|
||||||
|
RESPONDENT_CEO,
|
||||||
|
|
||||||
|
RESPONDENT_COMPANY,
|
||||||
|
|
||||||
|
RESPONDENT_ADDR,
|
||||||
|
|
||||||
|
DECODE(RESPONDENT_ADDR, '서울', 1, '대전', 2, '대구', 3, '광주', 4, '부산', 5) AS ADDR_ORDER,
|
||||||
|
|
||||||
|
MEDIATION_BIG,
|
||||||
|
|
||||||
|
MEDIATION_SMALL,
|
||||||
|
|
||||||
|
DECODE(MEDIATION_BIG, '성립', 1, '불성립', 2, '중지', 3, '심의', 1) AS BIG_ORDER,
|
||||||
|
|
||||||
|
OTHER_CODE
|
||||||
|
|
||||||
|
FROM
|
||||||
|
|
||||||
|
(
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
|
||||||
|
(SELECT RESPONDENT_GUBUN FROM C_CASERESPONDENT C WHERE C.CASE_NO = A.CASE_NO AND ROWNUM = 1) AS RESPONDENT_GUBUN,
|
||||||
|
|
||||||
|
CASE_NO,
|
||||||
|
|
||||||
|
(SELECT COMPANY_CEO FROM C_CASEAPPLCNT B WHERE B.CASE_NO = A.CASE_NO AND ROWNUM = 1) AS COMPANY_CEO,
|
||||||
|
|
||||||
|
(SELECT APPLCNT_COMPANY FROM C_CASEAPPLCNT B WHERE B.CASE_NO = A.CASE_NO AND ROWNUM = 1) AS APPLCNT_COMPANY,
|
||||||
|
|
||||||
|
(SELECT COMPANY_GUBUN FROM C_CASEAPPLCNT B WHERE B.CASE_NO = A.CASE_NO AND ROWNUM = 1) AS APPLCNT_GUBUN,
|
||||||
|
|
||||||
|
(SELECT RESPONDENT_CEO FROM C_CASERESPONDENT C WHERE C.CASE_NO = A.CASE_NO AND ROWNUM = 1) AS RESPONDENT_CEO,
|
||||||
|
|
||||||
|
(SELECT RESPONDENT_COMPANY FROM C_CASERESPONDENT C WHERE C.CASE_NO = A.CASE_NO AND ROWNUM = 1) AS RESPONDENT_COMPANY,
|
||||||
|
|
||||||
|
(SELECT OTHER_CODE FROM C_CASERCEPT CR WHERE CR.CASE_NO = A.CASE_NO) AS OTHER_CODE,
|
||||||
|
|
||||||
|
(SELECT
|
||||||
|
|
||||||
|
DECODE(SUBSTR(ADDR1, 0, INSTR(ADDR1, ' ')-1),
|
||||||
|
|
||||||
|
'서울특별시', '서울',
|
||||||
|
|
||||||
|
'인천광역시', '서울',
|
||||||
|
|
||||||
|
'경기도', '서울',
|
||||||
|
|
||||||
|
'강원도', '서울',
|
||||||
|
|
||||||
|
'대전광역시', '대전',
|
||||||
|
|
||||||
|
'충청북도', '대전',
|
||||||
|
|
||||||
|
'충청남도', '대전',
|
||||||
|
|
||||||
|
'세종특별자치시', '대전',
|
||||||
|
|
||||||
|
'대구광역시', '대구',
|
||||||
|
|
||||||
|
'경상북도', '대구',
|
||||||
|
|
||||||
|
'광주광역시', '광주',
|
||||||
|
|
||||||
|
'전라북도', '광주',
|
||||||
|
|
||||||
|
'전라남도', '광주',
|
||||||
|
|
||||||
|
'제주특별자치도', '광주',
|
||||||
|
|
||||||
|
'부산광역시', '부산',
|
||||||
|
|
||||||
|
'경상남도', '부산',
|
||||||
|
|
||||||
|
'울산광역시', '부산')
|
||||||
|
|
||||||
|
FROM C_CASERESPONDENT C WHERE C.CASE_NO = A.CASE_NO AND ROWNUM = 1) AS RESPONDENT_ADDR,
|
||||||
|
|
||||||
|
(SELECT
|
||||||
|
|
||||||
|
(SELECT CODE_NAME FROM C_CODE WHERE CODE_IDXS = MEDIATION_BIG) AS MEDIATION_BIG
|
||||||
|
|
||||||
|
FROM C_DLBRTMTR
|
||||||
|
|
||||||
|
WHERE CASE_NO = A.CASE_NO
|
||||||
|
|
||||||
|
AND CFRNC_NO = '5'
|
||||||
|
|
||||||
|
UNION ALL
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
|
||||||
|
(SELECT CODE_NAME FROM C_CODE WHERE CODE_IDXS = MEDIATION_BIG) AS MEDIATION_BIG
|
||||||
|
|
||||||
|
FROM C_ENDMTR
|
||||||
|
|
||||||
|
WHERE CASE_NO = A.CASE_NO
|
||||||
|
|
||||||
|
AND CFRNC_NO = '5'
|
||||||
|
|
||||||
|
) AS MEDIATION_BIG,
|
||||||
|
|
||||||
|
(SELECT
|
||||||
|
|
||||||
|
(SELECT CODE_NAME FROM C_CODE WHERE CODE_IDXS = MEDIATION_SMALL) AS MEDIATION_SMALL
|
||||||
|
|
||||||
|
FROM C_DLBRTMTR
|
||||||
|
|
||||||
|
WHERE CASE_NO = A.CASE_NO
|
||||||
|
|
||||||
|
AND CFRNC_NO = '5'
|
||||||
|
|
||||||
|
UNION ALL
|
||||||
|
|
||||||
|
SELECT
|
||||||
|
|
||||||
|
(SELECT CODE_NAME FROM C_CODE WHERE CODE_IDXS = MEDIATION_SMALL) AS MEDIATION_SMALL
|
||||||
|
|
||||||
|
FROM C_ENDMTR
|
||||||
|
|
||||||
|
WHERE CASE_NO = A.CASE_NO
|
||||||
|
|
||||||
|
AND CFRNC_NO = '5'
|
||||||
|
|
||||||
|
) AS MEDIATION_SMALL
|
||||||
|
|
||||||
|
FROM C_MASTER A
|
||||||
|
|
||||||
|
WHERE CASE_NO IN ((SELECT
|
||||||
|
|
||||||
|
CASE_NO
|
||||||
|
|
||||||
|
FROM C_DLBRTMTR
|
||||||
|
|
||||||
|
WHERE MEDIATION_BIG NOT IN ('0616010000', '0617010000', '0618010000')
|
||||||
|
|
||||||
|
AND MEDIATION_SMALL NOT IN ('0616000000', '0617000000', '0618000000') AND CFRNC_NO = '5'
|
||||||
|
|
||||||
|
UNION ALL
|
||||||
|
|
||||||
|
SELECT CASE_NO
|
||||||
|
|
||||||
|
FROM C_ENDMTR
|
||||||
|
|
||||||
|
WHERE MEDIATION_BIG NOT IN ('0616010000', '0617010000', '0618010000')
|
||||||
|
|
||||||
|
AND MEDIATION_SMALL NOT IN ('0616000000', '0617000000', '0618000000') AND CFRNC_NO = '5'))
|
||||||
|
|
||||||
|
)
|
||||||
|
|
||||||
|
ORDER BY ADDR_ORDER, BIG_ORDER, CASE_NO ASC
|
||||||
|
|
||||||
|
)
|
||||||
|
[CLIP report Server - Report Key 00c0cbe58df248c184b3e683f244a752 Thread 157. | ERROR CODE=6102 | 2025-01-02 12:52:10] : [SQLDS3] JDBC 연결에 실패하였습니다.
|
||||||
|
Exception : java.sql.SQLRecoverableException: ORA-17002: IO 오류: 현재 연결은 원격 호스트에 의해 강제로 끊겼습니다, connect lapse 30004 ms., Authentication lapse 0 ms.
|
||||||
|
at oracle.jdbc.driver.T4CConnection.handleLogonIOException(T4CConnection.java:1126)
|
||||||
|
at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:866)
|
||||||
|
at oracle.jdbc.driver.PhysicalConnection.connect(PhysicalConnection.java:1101)
|
||||||
|
at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:104)
|
||||||
|
at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:837)
|
||||||
|
at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:664)
|
||||||
|
at java.sql.DriverManager.getConnection(Unknown Source)
|
||||||
|
at java.sql.DriverManager.getConnection(Unknown Source)
|
||||||
|
at com.clipsoft.clipreport.common.util.data.jdbc.DBConnectionJDBC.connection(DBConnectionJDBC.java:101)
|
||||||
|
at com.clipsoft.clipreport.common.util.data.jdbc.DBConnectionJDBC.connection(DBConnectionJDBC.java:81)
|
||||||
|
at com.clipsoft.clipreport.common.util.data.DataConnectionManager.connectionJDBC(DataConnectionManager.java:148)
|
||||||
|
at com.clipsoft.clipreport.common.util.data.DataConnectionManager.connection(DataConnectionManager.java:80)
|
||||||
|
at com.clipsoft.clipreport.engine.context.recordsetview.builder.recordset.RecordSetCreator.createDataToRecordSetBySQL(RecordSetCreator.java:325)
|
||||||
|
at com.clipsoft.clipreport.engine.context.recordsetview.builder.recordset.RecordSetCreator.createDataToRecordSet(RecordSetCreator.java:367)
|
||||||
|
at com.clipsoft.clipreport.engine.context.recordsetview.builder.recordset.RecordSetCreator.createRecordSet(RecordSetCreator.java:117)
|
||||||
|
at com.clipsoft.clipreport.engine.context.recordsetview.RecordSetViewManager.getRecordList(RecordSetViewManager.java:202)
|
||||||
|
at com.clipsoft.clipreport.engine.context.recordsetview.RecordSetViewManager.setReportData(RecordSetViewManager.java:147)
|
||||||
|
at com.clipsoft.clipreport.engine.context.Context.startReport(Context.java:209)
|
||||||
|
at com.clipsoft.clipreport.engine.builder.Builder.build(Builder.java:64)
|
||||||
|
at com.clipsoft.clipreport.engine.Engine.buildReportFile(Engine.java:499)
|
||||||
|
at com.clipsoft.clipreport.engine.Engine.buildReportFiles(Engine.java:488)
|
||||||
|
at com.clipsoft.clipreport.engine.Engine.buildReport(Engine.java:190)
|
||||||
|
at com.clipsoft.clipreport.FileSaveRunable.run(FileSaveRunable.java:44)
|
||||||
|
at java.lang.Thread.run(Unknown Source)
|
||||||
|
Caused by: java.io.IOException: 현재 연결은 원격 호스트에 의해 강제로 끊겼습니다, connect lapse 30004 ms., Authentication lapse 0 ms.
|
||||||
|
at oracle.jdbc.driver.T4CConnection.handleLogonIOException(T4CConnection.java:1121)
|
||||||
|
... 23 more
|
||||||
|
Caused by: java.io.IOException: 현재 연결은 원격 호스트에 의해 강제로 끊겼습니다, connect lapse 30004 ms.
|
||||||
|
at oracle.net.ns.NSProtocolNIO.negotiateConnection(NSProtocolNIO.java:256)
|
||||||
|
at oracle.net.ns.NSProtocol.connect(NSProtocol.java:327)
|
||||||
|
at oracle.jdbc.driver.T4CConnection.connectSession(T4CConnection.java:2645)
|
||||||
|
at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:795)
|
||||||
|
... 22 more
|
||||||
|
Caused by: java.io.IOException: 현재 연결은 원격 호스트에 의해 강제로 끊겼습니다
|
||||||
|
at sun.nio.ch.SocketDispatcher.read0(Native Method)
|
||||||
|
at sun.nio.ch.SocketDispatcher.read(Unknown Source)
|
||||||
|
at sun.nio.ch.IOUtil.readIntoNativeBuffer(Unknown Source)
|
||||||
|
at sun.nio.ch.IOUtil.read(Unknown Source)
|
||||||
|
at sun.nio.ch.SocketChannelImpl.read(Unknown Source)
|
||||||
|
at oracle.net.nt.TimeoutSocketChannel.readFromSocket(TimeoutSocketChannel.java:743)
|
||||||
|
at oracle.net.nt.TimeoutSocketChannel.doSelectForRead(TimeoutSocketChannel.java:604)
|
||||||
|
at oracle.net.nt.TimeoutSocketChannel.read(TimeoutSocketChannel.java:501)
|
||||||
|
at oracle.net.ns.NSProtocolNIO.doSocketRead(NSProtocolNIO.java:1222)
|
||||||
|
at oracle.net.ns.NIOPacket.readNIOPacket(NIOPacket.java:435)
|
||||||
|
at oracle.net.ns.NSProtocolNIO.negotiateConnection(NSProtocolNIO.java:210)
|
||||||
|
... 25 more
|
||||||
|
|
||||||
|
[CLIP report Server - Report Key 00c0cbe58df248c184b3e683f244a752 Thread 157. | INFO 2025-01-02 12:52:10] : [SQLDS3] Connection Time : TimeMillis : 30034ms, HH:MM:SS : 00:00:30
|
||||||
|
[CLIP report Server - Report Key 00c0cbe58df248c184b3e683f244a752 Thread 157. | DEBUG 2025-01-02 12:52:10] : [SQLDS3] JDBC Connection Failed
|
||||||
|
[CLIP report Server - Report Key 00c0cbe58df248c184b3e683f244a752 Thread 157. | WARNING CODE=3152 | 2025-01-02 12:52:10] : [SQLDS3] Database Data가 없습니다.
|
||||||
|
[CLIP report Server - Report Key 00c0cbe58df248c184b3e683f244a752 Thread 157. | INFO CODE=11 | 2025-01-02 12:52:10] : 리포트 생성이 끝났습니다.
|
||||||
|
[CLIP report Server - Report Key 00c0cbe58df248c184b3e683f244a752 Thread 157. | INFO 2025-01-02 12:52:10] : Report Build Time : TimeMillis : 30286ms, HH:MM:SS : 00:00:30
|
||||||
|
[CLIP report Server - Report Key 00c0cbe58df248c184b3e683f244a752 Thread 157. | INFO 2025-01-02 12:52:10] : Total Page Count saved!
|
||||||
|
[CLIP report Server - Report Key 00c0cbe58df248c184b3e683f244a752 Thread 157. | INFO 2025-01-02 12:52:10] : Last Document saved!
|
||||||
|
[CLIP report Server - Report Key 00c0cbe58df248c184b3e683f244a752 Thread 157. | INFO 2025-01-02 12:52:10] : Database Connection Close Start
|
||||||
|
[CLIP report Server - Report Key 00c0cbe58df248c184b3e683f244a752 Thread 157. | INFO 2025-01-02 12:52:10] : Database Connection Close End : TimeMillis : 0ms, HH:MM:SS : 00:00:00
|
||||||
@ -1 +0,0 @@
|
|||||||
{"count":2533,"endReport":true,"error":false}
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user