Hello,
I'm trying to do a
left join without mapping java object (relation one-to-many in hibernate-mapping).
And I don't found any issue...
- I try to use specific operators: =* and (+)=
- I try "select ... from Table1 t1
left join Table2 t2
on t1.property=t2.property"
- I try "select ... from Table1 t1
left join Table2 t2
with t1.property=t2.property"
The last one seem to be the proper one but I found another unsolvable problem, probably cause of my lack of knoledge.
I'm turning crazy so if someone could help me...
Thanks a lot.
Hibernate version: 3
Mapping documents:
Code:
<hibernate-mapping package="caam.dao.idee.hibernate.impl.orderpf">
<class name="OrderPf" table="ID_ORDR_PF">
<composite-id>
<key-property name="ordrNum" column="ORDR_NUM" />
<key-property name="pfCod" column="PF_COD" />
</composite-id>
<property name="qtyRequested" column="QTY_REQUESTED" />
<property name="custodianCod" column="CUSTODIAN_COD" />
<property name="amtRequested" column="AMT_REQUESTED" />
</class>
</hibernate-mapping>
Code:
<hibernate-mapping
package="caam.dao.idee.hibernate.impl.orderpfstrat">
<class name="OrderPfStrat" table="CA_ORDR_PF_STRAT">
<composite-id>
<key-property name="ordrNum" column="ORDR_NUM" />
<key-property name="pfCod" column="PF_COD" />
</composite-id>
<property name="strategyCod" column="STRATEGY_COD" />
<property name="qtyRequested" column="QTY_REQUESTED" />
</class>
</hibernate-mapping>
Code:
<hibernate-mapping package="caam.dao.idee.hibernate.impl.order">
<class name="Order" table="ID_ORDER">
<id name="ordrNum" type="long" column="ORDR_NUM">
<generator class="org.hibernate.id.TableHiLoGenerator">
<param name="table">ID_ORDR_NUM</param>
<param name="column">ORDR_NUM</param>
</generator>
</id>
<property name="instNum" column="INST_NUM" />
<property name="instShNam" column="INST_SH_NAM" />
<property name="ordrValidDat" column="ORDR_VALID_DAT" />
<property name="ordrCreMgrDat" column="ORDR_CRE_MGR_DAT" />
<property name="ordrCreTraDat" column="ORDR_CRE_TRA_DAT" />
<property name="ordrCreMgrTim" column="ORDR_CRE_MGR_TIM" />
<property name="ordrCreTraTim" column="ORDR_CRE_TRA_TIM" />
<property name="traNam" column="TRA_NAM" />
<property name="xactSign" column="XACT_SIGN" />
<property name="xactTyp" column="XACT_TYP" />
<property name="ordrTyp" column="ORDR_TYP" />
<property name="limitPrice" column="LIMIT_PRICE" />
<property name="curCod" column="CUR_COD" />
<property name="brokerCod" column="BROKER_COD" />
<property name="qtyTot" column="QTY_TOT" />
<property name="qtyXact" column="QTY_XACT" />
<property name="qtyReturned" column="QTY_RETURNED" />
<property name="stockCtrl" column="STOCK_CTRL" />
<property name="receptStat" column="RECEPT_STAT" />
<property name="ordrCanMgrNam" column="ORDR_CAN_MGR_NAM" />
<property name="ordrCanMgrDat" column="ORDR_CAN_MGR_DAT" />
<property name="ordrCanMgrTim" column="ORDR_CAN_MGR_TIM" />
<property name="ordrStat" column="ORDR_STAT" />
<property name="instCod" column="INST_COD" />
<property name="instAcr" column="INST_ACR" />
<property name="qtyExpr" column="QTY_EXPR" />
<property name="quoteFrac" column="QUOTE_FRAC" />
<property name="maxPrice" column="MAX_PRICE" />
<property name="minPrice" column="MIN_PRICE" />
<property name="ordrModMgrNam" column="ORDR_MOD_MGR_NAM" />
<property name="ordrModMgrDat" column="ORDR_MOD_MGR_DAT" />
<property name="ordrModMgrTim" column="ORDR_MOD_MGR_TIM" />
<property name="ordrCreMgrNam" column="ORDR_CRE_MGR_NAM" />
<property name="gerDesk" column="GER_DESK" />
<property name="ordrBlock" column="ORDR_BLOCK" />
<property name="instReqTyp" column="INST_REQ_TYP" />
<property name="mktLocCod" column="MKT_LOC_COD" />
<property name="mktLocNam" column="MKT_LOC_NAM" />
<property name="quoteMod" column="QUOTE_MOD" />
<property name="busNum" column="BUS_NUM" />
<property name="busProcNum" column="BUS_PROC_NUM" />
<property name="extRef" column="EXT_REF" />
<property name="busState" column="BUS_STATE" />
<property name="ordrBlockPf" column="ORDR_BLOCK_PF" />
<property name="routeCod" column="ROUTE_COD" />
<property name="commentCod" column="COMMENT_COD" />
<property name="yield" column="YIELD" />
<property name="settlCurCod" column="SETTL_CUR_COD" />
<property name="fxFlg" column="FX_FLG" />
<property name="ordrGenFlg" column="ORDR_GEN_FLG" />
<property name="directedFlg" column="DIRECTED_FLG" />
<property name="ordrNumOrig" column="ORDR_NUM_ORIG" />
<property name="ordrOrig" column="ORDR_ORIG" />
<property name="ordrModel" column="ORDR_MODEL" />
<property name="contStartDat" column="CONT_START_DAT" />
<property name="contEndDat" column="CONT_END_DAT" />
<property name="contPriceSpot" column="CONT_PRICE_SPOT" />
<property name="contTyp" column="CONT_TYP" />
<property name="contBasis" column="CONT_BASIS" />
<property name="irFlg" column="IR_FLG" />
<property name="fxComment" column="FX_COMMENT" />
<property name="ordrSndMgrNam" column="ORDR_SND_MGR_NAM" />
<property name="ordrSndMgrDat" column="ORDR_SND_MGR_DAT" />
<property name="ordrSndMgrTim" column="ORDR_SND_MGR_TIM" />
<property name="deskId" column="DESK_ID" />
<property name="amtTot" column="AMT_TOT" />
<property name="ordrQtyOrigFace" column="ORDR_QTY_ORIG_FACE" />
<property name="amtTotCur" column="AMT_TOT_CUR" />
<property name="amtFlg" column="AMT_FLG" />
<property name="ordrCanMgrGmtTim" column="ORDR_CAN_MGR_GMT_TIM" />
<property name="ordrCanMgrGmtDat" column="ORDR_CAN_MGR_GMT_DAT" />
<property name="ordrCanMgrTz" column="ORDR_CAN_MGR_TZ" />
<property name="ordrCreMgrGmtTim" column="ORDR_CRE_MGR_GMT_TIM" />
<property name="ordrCreMgrGmtDat" column="ORDR_CRE_MGR_GMT_DAT" />
<property name="ordrCreMgrTz" column="ORDR_CRE_MGR_TZ" />
<property name="ordrModMgrGmtTim" column="ORDR_MOD_MGR_GMT_TIM" />
<property name="ordrModMgrGmtDat" column="ORDR_MOD_MGR_GMT_DAT" />
<property name="ordrModMgrTz" column="ORDR_MOD_MGR_TZ" />
<property name="ordrSndMgrGmtTim" column="ORDR_SND_MGR_GMT_TIM" />
<property name="ordrSndMgrGmtDat" column="ORDR_SND_MGR_GMT_DAT" />
<property name="ordrSndMgrTz" column="ORDR_SND_MGR_TZ" />
<property name="ordrCreTraGmtTim" column="ORDR_CRE_TRA_GMT_TIM" />
<property name="ordrCreTraGmtDat" column="ORDR_CRE_TRA_GMT_DAT" />
<property name="ordrCreTraTz" column="ORDR_CRE_TRA_TZ" />
<property name="custodianCod" column="CUSTODIAN_COD" />
<property name="settleDat" column="SETTLE_DAT" />
<property name="ordrValidTim" column="ORDR_VALID_TIM" />
<property name="uvaloSite" column="UVALO_SITE" />
<property name="settlDatFlg" column="SETTL_DAT_FLG" />
</class>
</hibernate-mapping>
Code between sessionFactory.openSession() and session.close():Code:
StringBuffer FOREX_SENT_NOTEXECUTED_NOTMATCHED_TOFINISH = new StringBuffer(
"select new caam.london.extraction.forex.ForexTradeBean(o.ordrCreMgrNam,opf.pfCod,o.xactSign,opf.qtyRequested,o.instAcr,o.curCod,o.fxFlg,o.contTyp,o.ordrCreMgrDat,")
.append("o.contStartDat,o.contEndDat,o.contPriceSpot,o.contBasis,'opstrat.strategyCod','Sent - Not executed - Not matched',o.ordrNum)")
.append(" from OrderPf as opf, Order as o left join OrderPfStrat as opstrat with opstrat.ORDR_NUM=o.ordNum ")
.append(" where o.busState in ('OR','ORS','ORR')")
.append(" and o.contTyp in ('SPOT','TERME')")
.append(" and opf.ordrNum = o.ordrNum")
.append(" and o.ordrValidDat >= :dateMin")
.append(" and not exists (select 1 from Execution e where e.ordrNum = o.ordrNum)");
Query hqlQuery = currentSession.createQuery(FOREX_SENT_NOTEXECUTED_NOTMATCHED_TOFINISH.toString());
hqlQuery.setDate("dateMin", sdf.parse("10/07/2007"));
List<ForexTradeBean> forexTradeList = hqlQuery.list();
for (ForexTradeBean forexTradeBean : forexTradeList) {
logger.info(forexTradeBean.toString());
}
Full stack trace of any exception that occurs:Code:
SessionFactoryImpl.java: 353 - Checking 0 named HQL queries
SessionFactoryImpl.java: 373 - Checking 0 named SQL queries
ErrorCounter.java: 33 - Path expected for join!
org.hibernate.hql.ast.QuerySyntaxException: Path expected for join! [select new caam.london.extraction.forex.ForexTradeBean(o.ordrCreMgrNam,opf.pfCod,o.xactSign,opf.qtyRequested,o.instAcr,o.curCod,o.fxFlg,o.contTyp,o.ordrCreMgrDat,o.contStartDat,o.contEndDat,o.contPriceSpot,o.contBasis,'opstrat.strategyCod','Sent - Not executed - Not matched',o.ordrNum) from caam.dao.idee.hibernate.impl.orderpf.OrderPf as opf, caam.dao.idee.hibernate.impl.order.Order as o left join OrderPfStrat as opstrat with opstrat.ORDR_NUM=o.ordNum where o.busState in ('OR','ORS','ORR') and o.contTyp in ('SPOT','TERME') and opf.ordrNum = o.ordrNum and o.ordrValidDat >= :dateMin and not exists (select 1 from caam.dao.idee.hibernate.impl.execution.Execution e where e.ordrNum = o.ordrNum)]
at org.hibernate.hql.ast.ErrorCounter.throwQueryException(ErrorCounter.java:59)
at org.hibernate.hql.ast.QueryTranslatorImpl.analyze(QueryTranslatorImpl.java:225)
at org.hibernate.hql.ast.QueryTranslatorImpl.doCompile(QueryTranslatorImpl.java:158)
at org.hibernate.hql.ast.QueryTranslatorImpl.compile(QueryTranslatorImpl.java:105)
at org.hibernate.engine.query.HQLQueryPlan.<init>(HQLQueryPlan.java:74)
at org.hibernate.engine.query.HQLQueryPlan.<init>(HQLQueryPlan.java:53)
at org.hibernate.engine.query.QueryPlanCache.getHQLQueryPlan(QueryPlanCache.java:71)
at org.hibernate.impl.AbstractSessionImpl.getHQLQueryPlan(AbstractSessionImpl.java:108)
at org.hibernate.impl.AbstractSessionImpl.createQuery(AbstractSessionImpl.java:88)
at org.hibernate.impl.SessionImpl.createQuery(SessionImpl.java:1540)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.hibernate.context.ThreadLocalSessionContext$TransactionProtectionWrapper.invoke(ThreadLocalSessionContext.java:292)
at $Proxy0.createQuery(Unknown Source)
at caam.london.extraction.forex.ForexTradeExtractBatch.execute(ForexTradeExtractBatch.java:57)
at caam.london.extraction.forex.ForexTradeExtractBatch.main(ForexTradeExtractBatch.java:70)
Caused by: Path expected for join!
at org.hibernate.hql.ast.HqlSqlWalker.createFromJoinElement(HqlSqlWalker.java:305)
at org.hibernate.hql.antlr.HqlSqlBaseWalker.joinElement(HqlSqlBaseWalker.java:3258)
at org.hibernate.hql.antlr.HqlSqlBaseWalker.fromElement(HqlSqlBaseWalker.java:3050)
at org.hibernate.hql.antlr.HqlSqlBaseWalker.fromElementList(HqlSqlBaseWalker.java:2928)
at org.hibernate.hql.antlr.HqlSqlBaseWalker.fromClause(HqlSqlBaseWalker.java:686)
at org.hibernate.hql.antlr.HqlSqlBaseWalker.query(HqlSqlBaseWalker.java:542)
at org.hibernate.hql.antlr.HqlSqlBaseWalker.selectStatement(HqlSqlBaseWalker.java:279)
at org.hibernate.hql.antlr.HqlSqlBaseWalker.statement(HqlSqlBaseWalker.java:227)
at org.hibernate.hql.ast.QueryTranslatorImpl.analyze(QueryTranslatorImpl.java:218)
... 16 more
Name and version of the database you are using:
Sybase 12.0
The generated SQL (show_sql=true):
There is no sql, the exception occures during sql generation.
Debug level Hibernate log excerpt:
[code] 25/07/2007 15:22 - INFO (caam.sits.gp.commons.hibernate.HibernateSessionFactory: 92) - Fichier de configuration d'une session hibernate absent: hibernate.perfsigp.cfg.xml
25/07/2007 15:22 - INFO (caam.sits.gp.commons.hibernate.HibernateSessionFactory: 92) - Fichier de configuration d'une session hibernate absent: hibernate.sigp.cfg.xml
25/07/2007 15:22 - INFO (caam.sits.gp.commons.hibernate.HibernateSessionFactory: 92) - Fichier de configuration d'une session hibernate absent: hibernate.refgp.cfg.xml
25/07/2007 15:22 - INFO (caam.sits.gp.commons.hibernate.HibernateSessionFactory: 92) - Fichier de configuration d'une session hibernate absent: hibernate.bip.cfg.xml
25/07/2007 15:22 - INFO (caam.sits.gp.commons.hibernate.HibernateSessionFactory: 86) - Configuration d'une session hibernate: hibernate.idee.cfg.xml
25/07/2007 15:22 - INFO (org.hibernate.cfg.Environment: 479) - Hibernate 3.1
25/07/2007 15:22 - INFO (org.hibernate.cfg.Environment: 479) - Hibernate 3.1
25/07/2007 15:22 - INFO (org.hibernate.cfg.Environment: 509) - hibernate.properties not found
25/07/2007 15:22 - INFO (org.hibernate.cfg.Environment: 509) - hibernate.properties not found
25/07/2007 15:22 - INFO (org.hibernate.cfg.Environment: 525) - using CGLIB reflection optimizer
25/07/2007 15:22 - INFO (org.hibernate.cfg.Environment: 525) - using CGLIB reflection optimizer
25/07/2007 15:22 - INFO (org.hibernate.cfg.Environment: 555) - using JDK 1.4 java.sql.Timestamp handling
25/07/2007 15:22 - INFO (org.hibernate.cfg.Environment: 555) - using JDK 1.4 java.sql.Timestamp handling
25/07/2007 15:22 - INFO (org.hibernate.cfg.Configuration:1320) - configuring from file: hibernate.idee.cfg.xml
25/07/2007 15:22 - INFO (org.hibernate.cfg.Configuration:1320) - configuring from file: hibernate.idee.cfg.xml
25/07/2007 15:22 - DEBUG (org.hibernate.util.DTDEntityResolver: 42) - trying to locate http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd in classpath under org/hibernate/
25/07/2007 15:22 - DEBUG (org.hibernate.util.DTDEntityResolver: 42) - trying to locate http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd in classpath under org/hibernate/
25/07/2007 15:22 - DEBUG (org.hibernate.util.DTDEntityResolver: 56) - found http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd in classpath
25/07/2007 15:22 - DEBUG (org.hibernate.util.DTDEntityResolver: 56) - found http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd in classpath
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.connection.driver_class=com.sybase.jdbc3.jdbc.SybDriver
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.connection.driver_class=com.sybase.jdbc3.jdbc.SybDriver
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.connection.url=jdbc:sybase:Tds:v880d-02:5220
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.connection.url=jdbc:sybase:Tds:v880d-02:5220
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.connection.username=etmgf
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.connection.username=etmgf
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.connection.password=etgespor
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.connection.password=etgespor
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.dialect=org.hibernate.dialect.SybaseDialect
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.dialect=org.hibernate.dialect.SybaseDialect
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.c3p0.min_size=5
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.c3p0.min_size=5
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.c3p0.max_size=20
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.c3p0.max_size=20
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.c3p0.timeout=1800
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.c3p0.timeout=1800
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.c3p0.max_statements=50
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.c3p0.max_statements=50
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - show_sql=true
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - show_sql=true
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - current_session_context_class=thread
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - current_session_context_class=thread
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.jdbc.batch_size=1000
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1247) - hibernate.jdbc.batch_size=1000
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1442) - idee<-org.dom4j.tree.DefaultAttribute@116471f [Attribute: name resource value "caam/dao/idee/hibernate/mapping/Contract.hbm.xml"]
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1442) - idee<-org.dom4j.tree.DefaultAttribute@116471f [Attribute: name resource value "caam/dao/idee/hibernate/mapping/Contract.hbm.xml"]
25/07/2007 15:22 - INFO (org.hibernate.cfg.Configuration: 468) - Reading mappings from resource: caam/dao/idee/hibernate/mapping/Contract.hbm.xml
25/07/2007 15:22 - INFO (org.hibernate.cfg.Configuration: 468) - Reading mappings from resource: caam/dao/idee/hibernate/mapping/Contract.hbm.xml
25/07/2007 15:22 - DEBUG (org.hibernate.util.DTDEntityResolver: 42) - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
25/07/2007 15:22 - DEBUG (org.hibernate.util.DTDEntityResolver: 42) - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
25/07/2007 15:22 - DEBUG (org.hibernate.util.DTDEntityResolver: 56) - found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
25/07/2007 15:22 - DEBUG (org.hibernate.util.DTDEntityResolver: 56) - found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
25/07/2007 15:22 - INFO (org.hibernate.cfg.HbmBinder: 265) - Mapping class: caam.dao.idee.hibernate.impl.contract.Contract -> ID_CONT
25/07/2007 15:22 - INFO (org.hibernate.cfg.HbmBinder: 265) - Mapping class: caam.dao.idee.hibernate.impl.contract.Contract -> ID_CONT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contNum -> CONT_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contNum -> CONT_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contNam -> CONT_NAM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contNam -> CONT_NAM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: posTyp -> POS_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: posTyp -> POS_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: status -> STATUS
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: status -> STATUS
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contStartDat -> CONT_START_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contStartDat -> CONT_START_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contEndDat -> CONT_END_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contEndDat -> CONT_END_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: freq -> FREQ
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: freq -> FREQ
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: undrlygInstNum -> UNDRLYG_INST_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: undrlygInstNum -> UNDRLYG_INST_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: undrlygQty -> UNDRLYG_QTY
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: undrlygQty -> UNDRLYG_QTY
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contAmt -> CONT_AMT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contAmt -> CONT_AMT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: curCod -> CUR_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: curCod -> CUR_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: intCalcMod -> INT_CALC_MOD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: intCalcMod -> INT_CALC_MOD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: valoMod -> VALO_MOD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: valoMod -> VALO_MOD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: rate -> RATE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: rate -> RATE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: rateTyp -> RATE_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: rateTyp -> RATE_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: idxCod -> IDX_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: idxCod -> IDX_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: marginAdd -> MARGIN_ADD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: marginAdd -> MARGIN_ADD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: marginMult -> MARGIN_MULT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: marginMult -> MARGIN_MULT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: basis -> BASIS
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: basis -> BASIS
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: pledgeFlag -> PLEDGE_FLAG
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: pledgeFlag -> PLEDGE_FLAG
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: pledgeAmt -> PLEDGE_AMT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: pledgeAmt -> PLEDGE_AMT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: pledgeInstCod -> PLEDGE_INST_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: pledgeInstCod -> PLEDGE_INST_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: pledgeQty -> PLEDGE_QTY
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: pledgeQty -> PLEDGE_QTY
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contReducedAmt -> CONT_REDUCED_AMT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contReducedAmt -> CONT_REDUCED_AMT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contIndemnRate -> CONT_INDEMN_RATE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contIndemnRate -> CONT_INDEMN_RATE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contForexTyp -> CONT_FOREX_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contForexTyp -> CONT_FOREX_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: xactForexTyp -> XACT_FOREX_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: xactForexTyp -> XACT_FOREX_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: priceSpot -> PRICE_SPOT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: priceSpot -> PRICE_SPOT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: priceFuture -> PRICE_FUTURE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: priceFuture -> PRICE_FUTURE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contMargin -> CONT_MARGIN
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contMargin -> CONT_MARGIN
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: instLotsize -> INST_LOTSIZE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: instLotsize -> INST_LOTSIZE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contRefNum -> CONT_REF_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contRefNum -> CONT_REF_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: pfCod -> PF_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: pfCod -> PF_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contTyp -> CONT_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contTyp -> CONT_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recCreOrig -> REC_CRE_ORIG
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recCreOrig -> REC_CRE_ORIG
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recCreDat -> REC_CRE_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recCreDat -> REC_CRE_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recCreUsr -> REC_CRE_USR
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recCreUsr -> REC_CRE_USR
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recModOrig -> REC_MOD_ORIG
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recModOrig -> REC_MOD_ORIG
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recModDat -> REC_MOD_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recModDat -> REC_MOD_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recModUsr -> REC_MOD_USR
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recModUsr -> REC_MOD_USR
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: accrInt -> ACCR_INT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: accrInt -> ACCR_INT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: brokerCod -> BROKER_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: brokerCod -> BROKER_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: cntrptyCod -> CNTRPTY_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: cntrptyCod -> CNTRPTY_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: custodianCod -> CUSTODIAN_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: custodianCod -> CUSTODIAN_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contDat -> CONT_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contDat -> CONT_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: extRef -> EXT_REF
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: extRef -> EXT_REF
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recCreTim -> REC_CRE_TIM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recCreTim -> REC_CRE_TIM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recModTim -> REC_MOD_TIM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recModTim -> REC_MOD_TIM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: strategyCod -> STRATEGY_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: strategyCod -> STRATEGY_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: noticeTim -> NOTICE_TIM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: noticeTim -> NOTICE_TIM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: redemptionPrice -> REDEMPTION_PRICE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: redemptionPrice -> REDEMPTION_PRICE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: renewal -> RENEWAL
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: renewal -> RENEWAL
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: quoteClose -> QUOTE_CLOSE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: quoteClose -> QUOTE_CLOSE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: sensitivity -> SENSITIVITY
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: sensitivity -> SENSITIVITY
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: quoteDat -> QUOTE_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: quoteDat -> QUOTE_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: quoteOpen -> QUOTE_OPEN
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: quoteOpen -> QUOTE_OPEN
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: duration -> DURATION
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: duration -> DURATION
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: lastPricingDat -> LAST_PRICING_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: lastPricingDat -> LAST_PRICING_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contAllocNum -> CONT_ALLOC_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contAllocNum -> CONT_ALLOC_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execNum -> EXEC_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execNum -> EXEC_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: fwdPrice -> FWD_PRICE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: fwdPrice -> FWD_PRICE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: fwdAccrInt -> FWD_ACCR_INT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: fwdAccrInt -> FWD_ACCR_INT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: undrlygInstNum2 -> UNDRLYG_INST_NUM2
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: undrlygInstNum2 -> UNDRLYG_INST_NUM2
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: shiftDays -> SHIFT_DAYS
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: shiftDays -> SHIFT_DAYS
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: shiftDaysTyp -> SHIFT_DAYS_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: shiftDaysTyp -> SHIFT_DAYS_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recCreGmtTim -> REC_CRE_GMT_TIM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recCreGmtTim -> REC_CRE_GMT_TIM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recCreGmtDat -> REC_CRE_GMT_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recCreGmtDat -> REC_CRE_GMT_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recCreTz -> REC_CRE_TZ
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recCreTz -> REC_CRE_TZ
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recModGmtTim -> REC_MOD_GMT_TIM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recModGmtTim -> REC_MOD_GMT_TIM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recModGmtDat -> REC_MOD_GMT_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recModGmtDat -> REC_MOD_GMT_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recModTz -> REC_MOD_TZ
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: recModTz -> REC_MOD_TZ
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1442) - idee<-org.dom4j.tree.DefaultAttribute@82701e [Attribute: name resource value "caam/dao/idee/hibernate/mapping/Execution.hbm.xml"]
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.Configuration:1442) - idee<-org.dom4j.tree.DefaultAttribute@82701e [Attribute: name resource value "caam/dao/idee/hibernate/mapping/Execution.hbm.xml"]
25/07/2007 15:22 - INFO (org.hibernate.cfg.Configuration: 468) - Reading mappings from resource: caam/dao/idee/hibernate/mapping/Execution.hbm.xml
25/07/2007 15:22 - INFO (org.hibernate.cfg.Configuration: 468) - Reading mappings from resource: caam/dao/idee/hibernate/mapping/Execution.hbm.xml
25/07/2007 15:22 - DEBUG (org.hibernate.util.DTDEntityResolver: 42) - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
25/07/2007 15:22 - DEBUG (org.hibernate.util.DTDEntityResolver: 42) - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath under org/hibernate/
25/07/2007 15:22 - DEBUG (org.hibernate.util.DTDEntityResolver: 56) - found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
25/07/2007 15:22 - DEBUG (org.hibernate.util.DTDEntityResolver: 56) - found http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd in classpath
25/07/2007 15:22 - INFO (org.hibernate.cfg.HbmBinder: 265) - Mapping class: caam.dao.idee.hibernate.impl.execution.Execution -> ID_EXEC
25/07/2007 15:22 - INFO (org.hibernate.cfg.HbmBinder: 265) - Mapping class: caam.dao.idee.hibernate.impl.execution.Execution -> ID_EXEC
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execNum -> EXEC_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execNum -> EXEC_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: ordrNum -> ORDR_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: ordrNum -> ORDR_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: instNum -> INST_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: instNum -> INST_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: instShNam -> INST_SH_NAM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: instShNam -> INST_SH_NAM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execDat -> EXEC_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execDat -> EXEC_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: realDat -> REAL_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: realDat -> REAL_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCreDat -> EXEC_CRE_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCreDat -> EXEC_CRE_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCreTim -> EXEC_CRE_TIM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCreTim -> EXEC_CRE_TIM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: mgrNam -> MGR_NAM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: mgrNam -> MGR_NAM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: traNam -> TRA_NAM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: traNam -> TRA_NAM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: xactSign -> XACT_SIGN
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: xactSign -> XACT_SIGN
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: xactTyp -> XACT_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: xactTyp -> XACT_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: instPrice -> INST_PRICE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: instPrice -> INST_PRICE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: accrInt -> ACCR_INT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: accrInt -> ACCR_INT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: brokerCod -> BROKER_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: brokerCod -> BROKER_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: cntrptyCod -> CNTRPTY_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: cntrptyCod -> CNTRPTY_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: qtyTot -> QTY_TOT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: qtyTot -> QTY_TOT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtGrossPf -> AMT_GROSS_PF
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtGrossPf -> AMT_GROSS_PF
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtNetPf -> AMT_NET_PF
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtNetPf -> AMT_NET_PF
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: curCod -> CUR_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: curCod -> CUR_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: xactCurRate -> XACT_CUR_RATE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: xactCurRate -> XACT_CUR_RATE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtBroker -> AMT_BROKER
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtBroker -> AMT_BROKER
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtVat -> AMT_VAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtVat -> AMT_VAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtTaxes -> AMT_TAXES
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtTaxes -> AMT_TAXES
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: scaleFreeCod -> SCALE_FREE_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: scaleFreeCod -> SCALE_FREE_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtOtherPfCur -> AMT_OTHER_PF_CUR
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtOtherPfCur -> AMT_OTHER_PF_CUR
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtFees -> AMT_FEES
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtFees -> AMT_FEES
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: instCod -> INST_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: instCod -> INST_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: instAcr -> INST_ACR
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: instAcr -> INST_ACR
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: qtyExpr -> QTY_EXPR
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: qtyExpr -> QTY_EXPR
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: scaleBrokerCod -> SCALE_BROKER_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: scaleBrokerCod -> SCALE_BROKER_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: scaleTaxCod -> SCALE_TAX_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: scaleTaxCod -> SCALE_TAX_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: scaleVatCod -> SCALE_VAT_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: scaleVatCod -> SCALE_VAT_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: scaleFeeCod -> SCALE_FEE_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: scaleFeeCod -> SCALE_FEE_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: quoteFrac -> QUOTE_FRAC
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: quoteFrac -> QUOTE_FRAC
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: settleDat -> SETTLE_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: settleDat -> SETTLE_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: cpnSettleDat -> CPN_SETTLE_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: cpnSettleDat -> CPN_SETTLE_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execStat -> EXEC_STAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execStat -> EXEC_STAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: mktLocCod -> MKT_LOC_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: mktLocCod -> MKT_LOC_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: mktLocNam -> MKT_LOC_NAM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: mktLocNam -> MKT_LOC_NAM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtGrossXact -> AMT_GROSS_XACT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtGrossXact -> AMT_GROSS_XACT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtNetXact -> AMT_NET_XACT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: amtNetXact -> AMT_NET_XACT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: settleCur -> SETTLE_CUR
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: settleCur -> SETTLE_CUR
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: settleCurRate -> SETTLE_CUR_RATE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: settleCurRate -> SETTLE_CUR_RATE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execModTraNam -> EXEC_MOD_TRA_NAM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execModTraNam -> EXEC_MOD_TRA_NAM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execModDat -> EXEC_MOD_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execModDat -> EXEC_MOD_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: heurModifExec -> HEUR_MODIF_EXEC
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: heurModifExec -> HEUR_MODIF_EXEC
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCanTraNam -> EXEC_CAN_TRA_NAM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCanTraNam -> EXEC_CAN_TRA_NAM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCanDat -> EXEC_CAN_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCanDat -> EXEC_CAN_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCanTim -> EXEC_CAN_TIM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCanTim -> EXEC_CAN_TIM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: accrIntDays -> ACCR_INT_DAYS
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: accrIntDays -> ACCR_INT_DAYS
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: quoteTyp -> QUOTE_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: quoteTyp -> QUOTE_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: err3Dat -> ERR_3_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: err3Dat -> ERR_3_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: busNum -> BUS_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: busNum -> BUS_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: busProcNum -> BUS_PROC_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: busProcNum -> BUS_PROC_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: extRef -> EXT_REF
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: extRef -> EXT_REF
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: busState -> BUS_STATE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: busState -> BUS_STATE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: openOrdrNum -> OPEN_ORDR_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: openOrdrNum -> OPEN_ORDR_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: commentCod -> COMMENT_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: commentCod -> COMMENT_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: reasonFlg -> REASON_FLG
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: reasonFlg -> REASON_FLG
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: cstrBroken -> CSTR_BROKEN
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: cstrBroken -> CSTR_BROKEN
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: custodianCod -> CUSTODIAN_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: custodianCod -> CUSTODIAN_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: netPrice -> NET_PRICE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: netPrice -> NET_PRICE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: flgIsNet -> FLG_IS_NET
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: flgIsNet -> FLG_IS_NET
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: princCod -> PRINC_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: princCod -> PRINC_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: whtAmt -> WHT_AMT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: whtAmt -> WHT_AMT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: whtRate -> WHT_RATE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: whtRate -> WHT_RATE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: benchInstNum -> BENCH_INST_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: benchInstNum -> BENCH_INST_NUM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: rdyFlg -> RDY_FLG
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: rdyFlg -> RDY_FLG
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contStartDat -> CONT_START_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contStartDat -> CONT_START_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contEndDat -> CONT_END_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contEndDat -> CONT_END_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contPriceSpot -> CONT_PRICE_SPOT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contPriceSpot -> CONT_PRICE_SPOT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: brokerCurCod -> BROKER_CUR_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: brokerCurCod -> BROKER_CUR_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: feesCurCod -> FEES_CUR_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: feesCurCod -> FEES_CUR_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: taxesCurCod -> TAXES_CUR_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: taxesCurCod -> TAXES_CUR_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: strategyCod -> STRATEGY_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: strategyCod -> STRATEGY_COD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contTyp -> CONT_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contTyp -> CONT_TYP
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: fxFlg -> FX_FLG
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: fxFlg -> FX_FLG
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contBasis -> CONT_BASIS
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: contBasis -> CONT_BASIS
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: xactYield -> XACT_YIELD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: xactYield -> XACT_YIELD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: xactSpread -> XACT_SPREAD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: xactSpread -> XACT_SPREAD
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: instQtyOrigFace -> INST_QTY_ORIG_FACE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: instQtyOrigFace -> INST_QTY_ORIG_FACE
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCreGmtTim -> EXEC_CRE_GMT_TIM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCreGmtTim -> EXEC_CRE_GMT_TIM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCreGmtDat -> EXEC_CRE_GMT_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCreGmtDat -> EXEC_CRE_GMT_DAT
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCreTz -> EXEC_CRE_TZ
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCreTz -> EXEC_CRE_TZ
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCanGmtTim -> EXEC_CAN_GMT_TIM
25/07/2007 15:22 - DEBUG (org.hibernate.cfg.HbmBinder:1196) - Mapped property: execCanGmtTim -> EXEC_CAN_GMT_TIM
25/07/20