-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 
Author Message
 Post subject: unsaved transient instance - inserts in wrong order
PostPosted: Wed Feb 16, 2005 12:01 pm 
Newbie

Joined: Thu Dec 09, 2004 12:29 pm
Posts: 10
Hi

I have a problem with what appears to be hibernate updating tow files in the wrong order, resulting in this error:

object references an unsaved transient instance - save the transient instance before flushing: net.targetgroup.broker.correspondent.Correspondent

My object model is as follows:

An application can have many consolidations (set on application)
A consolidation has a many to one relationship with a correspondent

I am trying to save the application and its large underlying object model. What is happening is that when the consolidation is being saved it tries to reference a correspondent with an unsaved identifier value (-1) so it throws the unsaved transient instance exception. At the time it throws the exception the consolidation already has its identifier assigned, so my guess it is doing the save the wrong way around.

I'm sure my mapping file is wrong, but I've tried so many combinations now I am truly confused !

Hibernate version:

2.1.6 (normally use 2.1.8 but happen to have the source code for 2.1.6 available for debugging)

Mapping documents:

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 2.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd" >

<hibernate-mapping>
<!--
Created by the Middlegen Hibernate plugin

http://boss.bekk.no/boss/middlegen/
http://hibernate.sourceforge.net/
-->

<class name="net.targetgroup.broker.correspondent.UnTypedCorrespondent" table="CORRESPOND">

<id name="identifier" type="int" column="CUSTID" unsaved-value="-1">
<generator class="native" />
</id>
<timestamp name="timeStamp" column="DATETIME" />
<property name="title" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="TITLE" length="10" />
<property name="firstName" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="FIRSTNAME" length="20" />
<property name="secondName" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="SECONDNAME" length="64" />
<property name="lastName" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="LASTNAME" length="20" />
<property name="userStamp" type="java.lang.String" column="USERSTAMP" length="10" />
<property name="preferredName" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="PREFNAME" length="20" />
<property name="emailAddress" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="EMAILADDR" length="80" />
<property name="organization" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="ORGANIZATION" length="40" />
<property name="previousTitle" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="PREVIOUSTITLE" length="10" />
<property name="mailList" type="java.lang.String" column="MAILLIST" length="1" />
<property name="previousForename1" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="PREVIOUSFORENAME1" length="20" />
<property name="previousForename2" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="PREVIOUSFORENAME2" length="20" />
<property name="previousLastname" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="PREVIOUSLASTNAME" length="20" />



<set name="addresses" lazy="false" inverse="true" cascade="all" table="CORR_ADDR" order-by="MOVEDIN DESC">
<key>
<column name="CUSTID" />
</key>
<one-to-many class="net.targetgroup.broker.customer.CustomerAddress" />
</set>

<!-- bi-directional one-to-many association to Telephone -->

<set name="telephones" lazy="false" inverse="false" cascade="all">
<key>
<column name="CUSTID" />
</key>
<one-to-many class="net.targetgroup.broker.correspondent.Telephone" />
</set>

<!-- bi-directional one-to-many association to Consolidation -->

<set name="consolidations" lazy="false" inverse="true" cascade="none" >
<key>
<column name="CUSTID" />
</key>
<one-to-many class="net.targetgroup.broker.application.Consolidation" />
</set>

<!-- bi-directional one-to-one association to Contact -->
<one-to-one name="contactPreference" class="net.targetgroup.broker.correspondent.ContactPreference" outer-join="auto" cascade="all" />


<joined-subclass name="net.targetgroup.broker.correspondent.Correspondent" table="CUSTLINK">
<key column="CUSTID" />
<property name="type" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="RELATION" />
</joined-subclass>

<joined-subclass name="net.targetgroup.broker.customer.Customer" table="CUSTOMER">
<key column="CUSTID" />

<property name="userStamp" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="USERSTAMP" length="10" />
<property name="birthDate" type="java.sql.Timestamp" column="CUSBRTHDT" length="19" />
<property name="timeStamp" type="java.sql.Timestamp" column="DATETIME" length="19" />
<property name="birthPlace" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="CUSBRTHPL" length="30" />
<property name="passWord" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="CUSPSSWRD" length="30" />
<property name="gender" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="CUSGENDER" length="10" />
<property name="maritalStatus" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="CUSMARTSTS" length="30" />
<property name="numberOfDependantsAtHome" type="net.targetgroup.util.datatypes.CustomIntType" column="NODEPSHOME" length="2" />
<property name="numberOfDependants" type="net.targetgroup.util.datatypes.CustomIntType" column="CUSNODEPS" length="2" />
<property name="dependantsAges" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="DEPAGES" length="30" />
<property name="homeOwner" type="net.targetgroup.util.datatypes.CustomBooleanType" column="CUSHOMOWNR" length="1" />
<property name="mortgageArrears" type="java.math.BigDecimal" column="CUSMRTARRS" length="3" />
<property name="bankrupt" type="net.targetgroup.util.datatypes.CustomBooleanType" column="CUSBNKRPT" length="1" />
<property name="residentialArea" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="CUSAREA" length="40" />
<property name="alias" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="CUSTALIAS" length="30" />
<property name="maidenName" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="CUSMAIDNM" length="20" />
<property name="residentialStatus" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="CUSRESSTAT" length="40" />
<property name="propertyType" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="CUSPROPTYP" length="40" />
<property name="ownershipType" type="java.lang.String" column="CUSOWNTYP" length="40" />
<property name="repossession" type="net.targetgroup.util.datatypes.CustomBooleanType" column="CUSREPOSS" length="1" />
<property name="defaultNotice" type="net.targetgroup.util.datatypes.CustomBooleanType" column="CUSDEFAULT" length="1" />
<property name="employmentStatus" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="CUSEMPSTAT" length="40" />
<property name="nationality" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="NATIONALITY" length="40" />
<property name="involuntaryAgreement" type="net.targetgroup.util.datatypes.CustomBooleanType" column="CUSIVA" length="1" />
<property name="countryOfResidence" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="COUNTRYOFRESIDENCE" length="40" />
<property name="nationalInsuranceNo" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="NATIONALINSURANCE" length="30" />
<property name="taxDistrict" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="TAXDISTRICT" length="40" />
<property name="firstTimeBuyer" type="net.targetgroup.util.datatypes.CustomBooleanType" column="FIRSTTIMEBUYER" length="1" />
<property name="smoker" type="net.targetgroup.util.datatypes.CustomBooleanType" column="SMOKER" length="30" />
<property name="relation" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="RELATION" length="30" />



<set name="employments" lazy="false" inverse="true" cascade="all-delete-orphan" order-by="EMPSTRTDAT DESC">
<key>
<column name="CUSTID" />
</key>
<one-to-many class="net.targetgroup.broker.customer.Employment" />
</set>

<set name="transactions" lazy="false" inverse="true" cascade="all-delete-orphan">
<key>
<column name="CUSTID" />
</key>
<one-to-many class="net.targetgroup.broker.customer.Transaction" />
</set>
<set name="judgements" lazy="false" inverse="true" cascade="all-delete-orphan">
<key>
<column name="CUSTID" />
</key>
<one-to-many class="net.targetgroup.broker.customer.Judgement" />
</set>

<set name="lifeAssurances" lazy="false" inverse="true" cascade="all">
<key>
<column name="CUSTID" />
</key>
<one-to-many class="net.targetgroup.broker.application.LifeAssurance" />
</set>

<!-- bi-directional many-to-many association to Custlink -->

<set name="correspondents" lazy="false" inverse="false" cascade="all-delete-orphan">
<key>
<column name="LINKCUST" />
</key>
<one-to-many class="net.targetgroup.broker.correspondent.Correspondent" />
</set>

<set name="lenderAccountGroups" lazy="false" inverse="true" cascade="all-delete-orphan">
<key>
<column name="CUSTID" />
</key>
<one-to-many class="net.targetgroup.broker.customer.LenderAccountGroup" />
</set>

<set name="currentProperties" lazy="false" inverse="true" cascade="all-delete-orphan">
<key>
<column name="CUSTID" />
</key>
<one-to-many class="net.targetgroup.broker.application.Property" />
</set>

<!-- one-to-many association to ProductFee -->
<set name="banks" lazy="false" cascade="all" table="CUST_BANK">
<key>
<column name="CUSTID" />
</key>
<many-to-many class="net.targetgroup.broker.customer.Bank" column="BNKACCID" />
</set>

<joined-subclass name="net.targetgroup.broker.customer.Applicant" table="CUST_APPL">
<key>
<column name="CUSTID" />
</key>
<property name="type" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="CUSTTYP" />
<many-to-one name="application" class="net.targetgroup.broker.application.Application" not-null="true">
<column name="APPID" />
</many-to-one>
</joined-subclass>

</joined-subclass>

</class>
</hibernate-mapping>

<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 2.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd" >

<hibernate-mapping>
<!--
Created by the Middlegen Hibernate plugin

http://boss.bekk.no/boss/middlegen/
http://hibernate.sourceforge.net/
-->

<class name="net.targetgroup.broker.application.Consolidation" table="CONSOLS">

<id name="identifier" type="int" column="CONSOLID" unsaved-value="-1">
<generator class="native" />
</id>

<timestamp name="timeStamp" column="DATETIME" />
<property name="userStamp" type="java.lang.String" column="USERSTAMP" length="10" />
<property name="type" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="CNTYPE" length="40" />
<property name="accountType" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="CNACCTYP" length="40" />
<property name="source" type="java.lang.String" column="CNLENDER" length="40" />
<property name="accountReference" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="CNACCREF" length="18" />
<property name="loanAmount" type="java.math.BigDecimal" column="CNLNAMT" length="9" />
<property name="repayment" type="java.math.BigDecimal" column="CNLNREP" length="9" />
<property name="remainingTerm" type="java.math.BigDecimal" column="CNLNREMTRM" length="3" />
<property name="pppInsurance" type="net.targetgroup.util.datatypes.CustomBooleanType" column="WITHPPP" length="1" />
<property name="consolidate" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="CNACTION" length="10" />
<property name="loanArrears" type="java.math.BigDecimal" column="CURRARREARS" length="9" />
<property name="worstArrears" type="java.math.BigDecimal" column="WSTARREARS" length="9" />
<property name="creditLimit" type="java.math.BigDecimal" column="CRDLIMIT" length="9" />
<property name="creditSearchStatus" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="STATUS" length="1" />
<property name="startDate" type="java.sql.Date" column="LOANSTARTDATE" length="10" />

<property name="mortgagePayment" type="net.targetgroup.util.datatypes.CustomBooleanType" column="MORTGAGEPAYMENT" length="1" />
<!-- bi-directional many-to-one association to Applicat -->
<many-to-one name="application" class="net.targetgroup.broker.application.Application" not-null="true">
<column name="APPID" />
</many-to-one>
<!-- bi-directional many-to-one association to Correspond -->
<many-to-one name="contact" class="net.targetgroup.broker.correspondent.UnTypedCorrespondent" not-null="true" cascade="all">
<column name="CUSTID" />
</many-to-one>




</class>
</hibernate-mapping>
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 2.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd" >

<hibernate-mapping>
<!--
Created by the Middlegen Hibernate plugin

http://boss.bekk.no/boss/middlegen/
http://hibernate.sourceforge.net/
-->

<class name="net.targetgroup.broker.application.Application" table="APPLICAT">

<id name="identifier" type="int" column="APPID" unsaved-value="-1">
<generator class="native" />
</id>

<timestamp name="timeStamp" column="DATETIME" />
<property name="marketingID" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="MARKID" length="30" />
<property name="userStamp" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="USERSTAMP" length="10" />
<property name="fisaNumber" type="java.math.BigDecimal" column="FISANO" length="9" />
<property name="loanType" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="APPLOANTYP" length="40" />
<property name="insurancePremium" type="java.math.BigDecimal" column="APPINSPREM" length="11" />
<property name="advance" type="java.math.BigDecimal" column="APPADVANCE" length="11" />
<property name="repayment" type="java.math.BigDecimal" column="APPREPAY" length="11" />
<property name="insurancePayment" type="java.math.BigDecimal" column="APPINSPAYM" length="11" />
<property name="term" type="net.targetgroup.util.datatypes.CustomIntType" column="APPTERM" length="3" />
<property name="loanPurpose" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="APPPURP" length="40" />
<property name="monthlyRate" type="java.math.BigDecimal" column="MNTHLYRATE" length="5" />
<property name="apr" type="java.math.BigDecimal" column="APPAPR" length="5" />
<property name="score" type="java.math.BigDecimal" column="APPSCORE" length="5" />
<property name="status" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="STATUS" length="10" />
<property name="totalAdvance" type="java.math.BigDecimal" column="TOTALADVANCE" length="11" />
<property name="requestedAdvance" type="java.math.BigDecimal" column="REQADVANCE" length="11" />
<property name="totalInterest" type="java.math.BigDecimal" column="TOTALCHARGE" length="11" />
<property name="totalRepayment" type="java.math.BigDecimal" column="TOTALREPAYMENT" length="11" />
<property name="debtToIncome" type="java.math.BigDecimal" column="APPDTI" length="5" />
<property name="profit" type="java.math.BigDecimal" column="APPPROFIT" length="11" />
<property name="loanToValue" type="java.math.BigDecimal" column="APPLTV" length="5" />
<property name="takeOnUser" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="TAKEONUSER" length="10" />
<property name="requestedTerm" type="net.targetgroup.util.datatypes.CustomIntType" column="REQTERM" length="3" />
<property name="lenderID" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="LENDID" length="40" />
<property name="takeOnDate" type="java.sql.Timestamp" column="TAKEONDATE" length="19" />
<property name="purchasePrice" type="java.math.BigDecimal" column="PURCHASEPRICE" length="11" />
<property name="deposit" type="java.math.BigDecimal" column="DEPOSITAMOUNT" length="11" />
<property name="depositSource" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="DEPOSTITSOURCE" length="18" />
<property name="businessInvestment" type="java.math.BigDecimal" column="BUSINESSINVESTMENT" length="11" />
<property name="personalInvestment" type="java.math.BigDecimal" column="PERSONALINVESTMENT" length="11" />
<property name="fees" type="java.math.BigDecimal" column="FEES" length="11" />
<property name="homeImprovements" type="java.math.BigDecimal" column="HOMEIMPROVEMENTS" length="11" />
<property name="consolidation" type="java.math.BigDecimal" column="CONSOLIDATION" length="11" />
<property name="otherFunds" type="java.math.BigDecimal" column="OTHERFUNDS" length="11" />
<property name="subLoanType" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="SUBLOANTYPE" length="40" />
<property name="repaymentTypeFlag" type="java.lang.String" column="REPAYMENTTYPEFLAG" length="1" />
<property name="interestOnlyAmount" type="java.math.BigDecimal" column="INTERESTONLYAMOUNT" length="11" />
<property name="capitalRepaymentAmount" type="java.math.BigDecimal" column="CAPITALREPAYAMOUNT" length="11" />
<property name="interestOnlyRepaymentMethod" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="INTONLYREPAYMETHOD" length="10" />
<property name="mortgageAmount" type="java.math.BigDecimal" column="MORTGAGEAMOUNT" length="11" />
<property name="additionalBorrowings" type="java.math.BigDecimal" column="ADDBORROW" length="11" />
<property name="migAmount" type="java.math.BigDecimal" column="MIGAMOUNT" length="11" />
<property name="mig" type="net.targetgroup.util.datatypes.CustomBooleanType" column="MIGFLAG" length="1" />
<property name="searchAuthorised" type="net.targetgroup.util.datatypes.CustomBooleanType" column="SEARCHAUTHORITY" length="1" />
<property name="customerContactable" type="net.targetgroup.util.datatypes.CustomBooleanType" column="CUSTOMERCONTACT" length="1" />
<property name="type" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="TYPE" length="10" />
<property name="currency" type="net.targetgroup.util.datatypes.CustomStringTrimType" column="CURRENCY" length="10" />
<property name="notes" type="java.lang.String" column="NOTES" length="2147483647" />
<property name="dpaAuthorisation" type="net.targetgroup.util.datatypes.CustomBooleanType" column="DPAAUTHORISATION" length="1" />

<!-- Associations -->

<!-- bi-directional many-to-one association to Source -->
<many-to-one name="source" class="net.targetgroup.broker.source.Source" not-null="true">
<column name="SOURCEID" />
</many-to-one>

<!-- bi-directional one-to-many association to Consol -->
<set name="consolidations" lazy="false" inverse="true" cascade="all">
<key>
<column name="APPID" />
</key>
<one-to-many class="net.targetgroup.broker.application.Consolidation" />
</set>

<set name="securitySet" lazy="false" inverse="true" cascade="all" where="type = 'SECURED'">
<key>
<column name="APPID" />
</key>
<one-to-many class="net.targetgroup.broker.application.Property" />
</set>

<one-to-one name="queueEntry" class="net.targetgroup.broker.queue.QueueEntry" outer-join="true" cascade="all" />
<one-to-one name="mortgageInsurance" class="net.targetgroup.broker.application.MortgageInsurance" constrained="false" outer-join="auto" cascade="all" />

<set name="applicants" lazy="false" inverse="true" cascade="all-delete-orphan" order-by="CUSTID">
<key>
<column name="APPID" />
</key>
<one-to-many class="net.targetgroup.broker.customer.Applicant" />
</set>
<set name="applicationFees" lazy="false" inverse="true" cascade="all-delete-orphan">
<key>
<column name="APPID" />
</key>
<one-to-many class="net.targetgroup.broker.application.ApplicationFee" />
</set>
<!-- bi-directional one-to-many association to Disclosure -->
<set name="disclosureAnswers" lazy="false" inverse="true" cascade="all-delete-orphan">
<key>
<column name="APPID" />
</key>
<one-to-many class="net.targetgroup.broker.application.Disclosure" />
</set>
<set name="proposals" lazy="false" inverse="true" cascade="all" order-by="propid">
<key>
<column name="APPID" />
</key>
<one-to-many class="net.targetgroup.broker.product.Proposal" />
</set>

</class>
</hibernate-mapping>



Full stack trace of any exception that occurs:

2005-02-16 15:23:41,371 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - saving [net.targetgroup.broker.application.Application#<null>]
2005-02-16 15:23:41,371 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - executing insertions
2005-02-16 15:23:41,371 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - processing cascades for: net.targetgroup.broker.application.Application
2005-02-16 15:23:41,371 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - done processing cascades for: net.targetgroup.broker.application.Application
2005-02-16 15:23:41,371 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Versioning - Seeding: 2005-02-16 15:23:41.371
2005-02-16 15:23:41,371 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.WrapVisitor - Wrapped collection in role: net.targetgroup.broker.application.Application.consolidations
2005-02-16 15:23:41,371 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.WrapVisitor - Wrapped collection in role: net.targetgroup.broker.application.Application.securitySet
2005-02-16 15:23:41,371 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.WrapVisitor - Wrapped collection in role: net.targetgroup.broker.application.Application.applicants
2005-02-16 15:23:41,371 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.WrapVisitor - Wrapped collection in role: net.targetgroup.broker.application.Application.applicationFees
2005-02-16 15:23:41,371 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.WrapVisitor - Wrapped collection in role: net.targetgroup.broker.application.Application.disclosureAnswers
2005-02-16 15:23:41,371 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.WrapVisitor - Wrapped collection in role: net.targetgroup.broker.application.Application.proposals
2005-02-16 15:23:41,386 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.EntityPersister - Inserting entity: net.targetgroup.broker.application.Application (native id)
2005-02-16 15:23:41,386 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.EntityPersister - Version: 2005-02-16 15:23:41.371
2005-02-16 15:23:41,386 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:41,386 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.SQL - insert into APPLICAT (DATETIME, MARKID, USERSTAMP, FISANO, APPLOANTYP, APPINSPREM, APPADVANCE, APPREPAY, APPINSPAYM, APPTERM, APPPURP, MNTHLYRATE, APPAPR, APPSCORE, STATUS, TOTALADVANCE, REQADVANCE, TOTALCHARGE, TOTALREPAYMENT, APPDTI, APPPROFIT, APPLTV, TAKEONUSER, REQTERM, LENDID, TAKEONDATE, PURCHASEPRICE, DEPOSITAMOUNT, DEPOSTITSOURCE, BUSINESSINVESTMENT, PERSONALINVESTMENT, FEES, HOMEIMPROVEMENTS, CONSOLIDATION, OTHERFUNDS, SUBLOANTYPE, REPAYMENTTYPEFLAG, INTERESTONLYAMOUNT, CAPITALREPAYAMOUNT, INTONLYREPAYMETHOD, MORTGAGEAMOUNT, ADDBORROW, MIGAMOUNT, MIGFLAG, SEARCHAUTHORITY, CUSTOMERCONTACT, TYPE, CURRENCY, NOTES, DPAAUTHORISATION, SOURCEID, APPID) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, default)
2005-02-16 15:23:41,386 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - preparing statement
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.EntityPersister - Dehydrating entity: [net.targetgroup.broker.application.Application#<null>]
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.TimestampType - binding '2005-02-16 15:23:41' to parameter: 1
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 4
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '0' to parameter: 6
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '1111' to parameter: 7
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 8
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 9
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 12
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '0' to parameter: 13
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 14
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 16
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 17
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 18
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 19
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 20
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 21
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '0' to parameter: 22
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.TimestampType - binding null to parameter: 26
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '111' to parameter: 27
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 28
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '0' to parameter: 30
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 31
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 32
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 33
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 34
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 35
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 37
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '0' to parameter: 38
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '0' to parameter: 39
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 41
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '0' to parameter: 42
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 43
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 49
2005-02-16 15:23:41,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.IntegerType - binding null to parameter: 51
2005-02-16 15:23:41,902 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:41,902 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - closing statement
2005-02-16 15:23:41,902 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:41,902 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.SQL - select identity_val_local() from sysibm.sysdummy1
2005-02-16 15:23:41,902 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - preparing statement
2005-02-16 15:23:42,621 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.AbstractEntityPersister - Natively generated identity: 1000219
2005-02-16 15:23:42,621 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:42,621 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - closing statement
2005-02-16 15:23:42,621 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - processing cascades for: net.targetgroup.broker.application.Application
2005-02-16 15:23:42,621 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to collection: net.targetgroup.broker.application.Application.consolidations
2005-02-16 15:23:42,621 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to saveOrUpdate()
2005-02-16 15:23:42,621 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - version unsaved-value strategy NULL
2005-02-16 15:23:42,621 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - saveOrUpdate() unsaved instance
2005-02-16 15:23:42,621 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - saving [net.targetgroup.broker.application.Consolidation#<null>]
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - executing insertions
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - processing cascades for: net.targetgroup.broker.application.Consolidation
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to saveOrUpdate()
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - version unsaved-value strategy NULL
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - saveOrUpdate() unsaved instance
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - saving [net.targetgroup.broker.correspondent.Correspondent#<null>]
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - executing insertions
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - processing cascades for: net.targetgroup.broker.correspondent.Correspondent
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - done processing cascades for: net.targetgroup.broker.correspondent.Correspondent
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Versioning - Seeding: 2005-02-16 15:23:42.636
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.WrapVisitor - Wrapped collection in role: net.targetgroup.broker.correspondent.UnTypedCorrespondent.addresses
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.WrapVisitor - Wrapped collection in role: net.targetgroup.broker.correspondent.UnTypedCorrespondent.telephones
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.WrapVisitor - Wrapped collection in role: net.targetgroup.broker.correspondent.UnTypedCorrespondent.consolidations
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.NormalizedEntityPersister - Inserting entity: net.targetgroup.broker.correspondent.Correspondent (native id)
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.NormalizedEntityPersister - Version: 2005-02-16 15:23:42.636
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.SQL - insert into CORRESPOND (DATETIME, TITLE, FIRSTNAME, SECONDNAME, LASTNAME, USERSTAMP, PREFNAME, EMAILADDR, ORGANIZATION, PREVIOUSTITLE, MAILLIST, PREVIOUSFORENAME1, PREVIOUSFORENAME2, PREVIOUSLASTNAME, CUSTID) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, default)
2005-02-16 15:23:42,636 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - preparing statement
2005-02-16 15:23:42,699 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.TimestampType - binding '2005-02-16 15:23:42' to parameter: 1
2005-02-16 15:23:42,699 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 6
2005-02-16 15:23:42,699 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 11
2005-02-16 15:23:42,902 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:42,902 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - closing statement
2005-02-16 15:23:42,902 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:42,902 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.SQL - select identity_val_local() from sysibm.sysdummy1
2005-02-16 15:23:42,902 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - preparing statement
2005-02-16 15:23:42,933 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.AbstractEntityPersister - Natively generated identity: 1000554
2005-02-16 15:23:42,933 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:42,933 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - closing statement
2005-02-16 15:23:42,933 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:42,933 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.SQL - insert into CUSTLINK (RELATION, CUSTID) values (?, ?)
2005-02-16 15:23:42,933 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - preparing statement
2005-02-16 15:23:43,011 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.IntegerType - binding '1000554' to parameter: 2
2005-02-16 15:23:43,261 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:43,261 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - closing statement
2005-02-16 15:23:43,261 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - processing cascades for: net.targetgroup.broker.correspondent.Correspondent
2005-02-16 15:23:43,261 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to collection: net.targetgroup.broker.correspondent.UnTypedCorrespondent.addresses
2005-02-16 15:23:43,261 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to saveOrUpdate()
2005-02-16 15:23:43,261 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - version unsaved-value strategy NULL
2005-02-16 15:23:43,261 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - saveOrUpdate() unsaved instance
2005-02-16 15:23:43,261 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - saving [net.targetgroup.broker.customer.CustomerAddress#<null>]
2005-02-16 15:23:43,261 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - executing insertions
2005-02-16 15:23:43,261 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Versioning - Seeding: 2005-02-16 15:23:43.261
2005-02-16 15:23:43,261 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.NormalizedEntityPersister - Inserting entity: net.targetgroup.broker.customer.CustomerAddress (native id)
2005-02-16 15:23:43,261 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.NormalizedEntityPersister - Version: 2005-02-16 15:23:43.261
2005-02-16 15:23:43,261 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:43,261 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.SQL - insert into ADDRESS (DATETIME, ADDR01, ADDR02, ADDR03, ADDR04, ADDR05, POSTCODE, USERSTAMP, ADDRID) values (?, ?, ?, ?, ?, ?, ?, ?, default)
2005-02-16 15:23:43,261 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - preparing statement
2005-02-16 15:23:43,355 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.TimestampType - binding '2005-02-16 15:23:43' to parameter: 1
2005-02-16 15:23:43,355 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding '' to parameter: 2
2005-02-16 15:23:43,355 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding '' to parameter: 3
2005-02-16 15:23:43,355 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding '' to parameter: 4
2005-02-16 15:23:43,355 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding '' to parameter: 5
2005-02-16 15:23:43,355 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding '' to parameter: 6
2005-02-16 15:23:43,355 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 8
2005-02-16 15:23:43,449 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:43,449 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - closing statement
2005-02-16 15:23:43,449 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:43,449 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.SQL - select identity_val_local() from sysibm.sysdummy1
2005-02-16 15:23:43,449 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - preparing statement
2005-02-16 15:23:43,511 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.AbstractEntityPersister - Natively generated identity: 2000709
2005-02-16 15:23:43,511 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:43,511 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - closing statement
2005-02-16 15:23:43,511 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:43,511 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.SQL - insert into CORR_ADDR (CUSTID, USERSTAMP, ADDRTYPE, MOVEDIN, VOTERSROLL, MOVEDOUT, VOTERSIN, OWNERSHIPSTATUS, VOTERSOUT, ADDRID) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2005-02-16 15:23:43,511 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - preparing statement
2005-02-16 15:23:43,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '1000554' to parameter: 1
2005-02-16 15:23:43,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 2
2005-02-16 15:23:43,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.TimestampType - binding null to parameter: 4
2005-02-16 15:23:43,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.TimestampType - binding null to parameter: 6
2005-02-16 15:23:43,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.DateType - binding null to parameter: 7
2005-02-16 15:23:43,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.DateType - binding null to parameter: 9
2005-02-16 15:23:43,558 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.IntegerType - binding '2000709' to parameter: 10
2005-02-16 15:23:43,683 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:43,683 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - closing statement
2005-02-16 15:23:43,683 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to collection: net.targetgroup.broker.correspondent.UnTypedCorrespondent.telephones
2005-02-16 15:23:43,683 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - done processing cascades for: net.targetgroup.broker.correspondent.Correspondent
2005-02-16 15:23:43,683 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - done processing cascades for: net.targetgroup.broker.application.Consolidation
2005-02-16 15:23:43,683 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Versioning - Seeding: 2005-02-16 15:23:43.683
2005-02-16 15:23:43,683 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.EntityPersister - Inserting entity: net.targetgroup.broker.application.Consolidation (native id)
2005-02-16 15:23:43,683 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.EntityPersister - Version: 2005-02-16 15:23:43.683
2005-02-16 15:23:43,683 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:43,683 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.SQL - insert into CONSOLS (DATETIME, USERSTAMP, CNTYPE, CNACCTYP, CNLENDER, CNACCREF, CNLNAMT, CNLNREP, CNLNREMTRM, WITHPPP, CNACTION, CURRARREARS, WSTARREARS, CRDLIMIT, STATUS, LOANSTARTDATE, MORTGAGEPAYMENT, APPID, CUSTID, CONSOLID) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, default)
2005-02-16 15:23:43,683 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - preparing statement
2005-02-16 15:23:43,792 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.EntityPersister - Dehydrating entity: [net.targetgroup.broker.application.Consolidation#<null>]
2005-02-16 15:23:43,792 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.TimestampType - binding '2005-02-16 15:23:43' to parameter: 1
2005-02-16 15:23:43,792 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 2
2005-02-16 15:23:43,792 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding '' to parameter: 5
2005-02-16 15:23:43,792 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '0' to parameter: 7
2005-02-16 15:23:43,792 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '0' to parameter: 8
2005-02-16 15:23:43,792 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '0' to parameter: 9
2005-02-16 15:23:43,792 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '0' to parameter: 12
2005-02-16 15:23:43,792 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '0' to parameter: 13
2005-02-16 15:23:43,792 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 14
2005-02-16 15:23:43,792 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.DateType - binding null to parameter: 16
2005-02-16 15:23:43,792 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.IntegerType - binding '1000219' to parameter: 18
2005-02-16 15:23:43,792 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.IntegerType - binding '1000554' to parameter: 19
2005-02-16 15:23:43,933 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:43,933 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - closing statement
2005-02-16 15:23:43,933 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:43,933 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.SQL - select identity_val_local() from sysibm.sysdummy1
2005-02-16 15:23:43,933 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - preparing statement
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.AbstractEntityPersister - Natively generated identity: 1000141
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - closing statement
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - processing cascades for: net.targetgroup.broker.application.Consolidation
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - done processing cascades for: net.targetgroup.broker.application.Consolidation
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to collection: net.targetgroup.broker.application.Application.securitySet
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to saveOrUpdate()
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - version unsaved-value strategy NULL
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - saveOrUpdate() unsaved instance
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - saving [net.targetgroup.broker.application.Property#<null>]
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - executing insertions
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - processing cascades for: net.targetgroup.broker.application.Property
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to saveOrUpdate()
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - version unsaved-value strategy NULL
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - saveOrUpdate() unsaved instance
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - saving [net.targetgroup.broker.address.Address#<null>]
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - executing insertions
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Versioning - Seeding: 2005-02-16 15:23:44.042
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.NormalizedEntityPersister - Inserting entity: net.targetgroup.broker.address.Address (native id)
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.NormalizedEntityPersister - Version: 2005-02-16 15:23:44.042
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.SQL - insert into ADDRESS (DATETIME, ADDR01, ADDR02, ADDR03, ADDR04, ADDR05, POSTCODE, USERSTAMP, ADDRID) values (?, ?, ?, ?, ?, ?, ?, ?, default)
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - preparing statement
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.TimestampType - binding '2005-02-16 15:23:44' to parameter: 1
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 2
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 3
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 4
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 5
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 6
2005-02-16 15:23:44,042 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 8
2005-02-16 15:23:44,105 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:44,105 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - closing statement
2005-02-16 15:23:44,105 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:44,105 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.SQL - select identity_val_local() from sysibm.sysdummy1
2005-02-16 15:23:44,105 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - preparing statement
2005-02-16 15:23:44,136 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.AbstractEntityPersister - Natively generated identity: 2000710
2005-02-16 15:23:44,136 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:44,136 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - closing statement
2005-02-16 15:23:44,136 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to saveOrUpdate()
2005-02-16 15:23:44,136 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - saveOrUpdate() persistent instance
2005-02-16 15:23:44,136 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - done processing cascades for: net.targetgroup.broker.application.Property
2005-02-16 15:23:44,136 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Versioning - Seeding: 2005-02-16 15:23:44.136
2005-02-16 15:23:44,136 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.WrapVisitor - Wrapped collection in role: net.targetgroup.broker.application.Property.otherInhabitants
2005-02-16 15:23:44,136 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.WrapVisitor - Wrapped collection in role: net.targetgroup.broker.application.Property.securityDates
2005-02-16 15:23:44,136 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.WrapVisitor - Wrapped collection in role: net.targetgroup.broker.application.Property.consolidations
2005-02-16 15:23:44,136 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.EntityPersister - Inserting entity: net.targetgroup.broker.application.Property (native id)
2005-02-16 15:23:44,136 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.EntityPersister - Version: 2005-02-16 15:23:44.136
2005-02-16 15:23:44,136 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:44,136 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.SQL - insert into SECURITY (DATETIME, TYPE, PURCHDATE, PURCHPRICE, CURVALUE, MORTBAL, MORTLENDR, MORTREPAY, OTHERBAL, PAYMENTFREQUENCY, MORTTERM, PROPTYPE, RMLEASETRM, COUNCDPER, COUNCDAMT, COUNCIL, TENURE, PARTLET, COMMERCIAL, USERSTAMP, DATEBUILT, CONSTRUCT, JOINTOWNED, BEDROOMS, RECEPTIONS, BATHROOMS, GARAGES, FEATURES, SHAREOWNSC, NOSTOREYS, PPI, FLEXIBLE, DSSASSISTEDFLAG, HIGHESTPAYMENT, TOBESOLDFLAG, SELLINGPRICE, ESTIMATEDVALUE, VALUATION1, KITCHENS, WC, ACRES, SERVICECHARGE, GROUNDRENT, NHBCFLAG, ARCHITECTCERTFLAG, THIRTYDAYOCCUPANCY, SECONDPROPERTYFLAG, PROPERTYLETFLAG, CURRENTMONTHLYRENT, POTENTIALMNTHRENT, TOBELETFLAG, TENANCYSTARTDATE, TENANCYTERM, IMPREQUIREDFLAG, IMPREQUIREDEST, SUBSIDENCEDETAILS, ELECTRICITYFLAG, WATERFLAG, GASFLAG, DRAINAGEFLAG, OTHERSERVICES, AGRIRESTRICTFLAG, EXMODFLAG, EXPOLICEFLAG, EXLOCALAUTHFLAG, EXHOUSINGASSFLAG, COMMERCIALPURPOSE, PURCHFROMRELFLAG, RELATIVEDETAILS, VALUATIONTYPE, ANTCOMPLETEDATE, ACTCOMPLETEDATE, ACCESS, REBUILDCST, MORTRATE, MORTTYPE, REPVEHICLE, MATUREDATE, MATUREVALUE, INTTYPE, PARTYTOMORTGAGE, ACTIVE, ADDRID, APPID, CUSTID, SECURITYID) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, default)
2005-02-16 15:23:44,136 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - preparing statement
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.EntityPersister - Dehydrating entity: [net.targetgroup.broker.application.Property#<null>]
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.TimestampType - binding '2005-02-16 15:23:44' to parameter: 1
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.TimestampType - binding '1978-01-01 00:00:00' to parameter: 3
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '111' to parameter: 4
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '111' to parameter: 5
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 6
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 8
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 9
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 11
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 13
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 14
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 15
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 20
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.DateType - binding null to parameter: 21
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.StringType - binding null to parameter: 23
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 24
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 25
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 26
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 27
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 30
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 34
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 36
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding '111' to parameter: 37
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 38
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 39
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 40
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 41
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 42
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 43
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 49
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 50
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.DateType - binding null to parameter: 52
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 53
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 55
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.DateType - binding null to parameter: 71
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.DateType - binding null to parameter: 72
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 74
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 75
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.TimestampType - binding null to parameter: 78
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.BigDecimalType - binding null to parameter: 79
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.IntegerType - binding '2000710' to parameter: 83
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.IntegerType - binding '1000219' to parameter: 84
2005-02-16 15:23:44,527 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.type.IntegerType - binding null to parameter: 85
2005-02-16 15:23:44,730 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:44,730 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - closing statement
2005-02-16 15:23:44,746 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - about to open: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:44,746 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.SQL - select identity_val_local() from sysibm.sysdummy1
2005-02-16 15:23:44,746 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - preparing statement
2005-02-16 15:23:44,886 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.persister.AbstractEntityPersister - Natively generated identity: 1001367
2005-02-16 15:23:44,886 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - done closing: 0 open PreparedStatements, 0 open ResultSets
2005-02-16 15:23:44,886 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.BatcherImpl - closing statement
2005-02-16 15:23:44,886 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - processing cascades for: net.targetgroup.broker.application.Property
2005-02-16 15:23:44,886 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to collection: net.targetgroup.broker.application.Property.otherInhabitants
2005-02-16 15:23:44,886 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to collection: net.targetgroup.broker.application.Property.securityDates
2005-02-16 15:23:44,886 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to collection: net.targetgroup.broker.application.Property.consolidations
2005-02-16 15:23:44,886 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - done processing cascades for: net.targetgroup.broker.application.Property
2005-02-16 15:23:44,886 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to collection: net.targetgroup.broker.application.Application.applicants
2005-02-16 15:23:44,886 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to saveOrUpdate()
2005-02-16 15:23:44,886 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.engine.Cascades - version unsaved-value strategy NULL
2005-02-16 15:23:44,886 [Servlet.Engine.Transports : 1] DEBUG net.sf.hibernate.impl.SessionImpl - saveOrUpdate() unsaved instance
2005-02-16 15:23:44,886 [Serv


Top
 Profile  
 
 Post subject: Further log attached
PostPosted: Wed Feb 16, 2005 12:13 pm 
Senior
Senior

Joined: Tue Aug 03, 2004 2:11 pm
Posts: 142
Location: Somerset
Elena posted this message for me, due to a technical problem with my browser. Here's the relevant portion of the log/stack trace

2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - saveOrUpdate() persistent instance
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.engine.Cascades - done processing cascades for: net.targetgroup.broker.application.Property
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.engine.Cascades - processing cascades for: net.targetgroup.broker.correspondent.Correspondent
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to collection: net.targetgroup.broker.correspondent.UnTypedCorrespondent.addresses
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to saveOrUpdate()
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - saveOrUpdate() persistent instance
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to collection: net.targetgroup.broker.correspondent.UnTypedCorrespondent.telephones
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.engine.Cascades - done processing cascades for: net.targetgroup.broker.correspondent.Correspondent
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.engine.Cascades - processing cascades for: net.targetgroup.broker.application.Consolidation
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.engine.Cascades - cascading to saveOrUpdate()
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - saveOrUpdate() persistent instance
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.engine.Cascades - done processing cascades for: net.targetgroup.broker.application.Consolidation
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Flushing entities and processing referenced collections
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.application.Application.consolidations#1000220], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.application.Application.securitySet#1000220], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.application.Application.applicants#1000220], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.application.Application.applicationFees#1000220], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.application.Application.disclosureAnswers#1000220], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.application.Application.proposals#1000220], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.correspondent.UnTypedCorrespondent.addresses#1000558], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.correspondent.UnTypedCorrespondent.telephones#1000558], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.correspondent.UnTypedCorrespondent.consolidations#1000558], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.application.Property.otherInhabitants#1001369], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.application.Property.securityDates#1001369], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.application.Property.consolidations#1001369], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.persister.AbstractEntityPersister - net.targetgroup.broker.customer.Applicant.timeStamp is dirty
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Updating entity: [net.targetgroup.broker.customer.Applicant#1000559]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.engine.Versioning - Incrementing: 2005-02-16 15:56:38.027 to 2005-02-16 15:56:42.011
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.customer.Customer.employments#1000559], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.customer.Customer.transactions#1000559], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.customer.Customer.judgements#1000559], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.customer.Customer.lifeAssurances#1000559], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.customer.Customer.correspondents#1000559], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.customer.Customer.lenderAccountGroups#1000559], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.customer.Customer.currentProperties#1000559], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.customer.Customer.banks#1000559], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.correspondent.UnTypedCorrespondent.addresses#1000559], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.correspondent.UnTypedCorrespondent.telephones#1000559], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.impl.SessionImpl - Collection found: [net.targetgroup.broker.correspondent.UnTypedCorrespondent.consolidations#1000559], was: [<unreferenced>]
2005-02-16 15:56:42,011 [Alarm : 1] DEBUG net.sf.hibernate.engine.Cascades - version unsaved-value strategy NULL
2005-02-16 15:56:42,011 [Alarm : 1] ERROR org.springframework.orm.hibernate.SessionFactoryUtils - beforeCommit callback threw exception
org.springframework.dao.InvalidDataAccessApiUsageException: object references an unsaved transient instance - save the transient instance before flushing: net.targetgroup.broker.correspondent.Correspondent
at org.springframework.orm.hibernate.SessionFactoryUtils.convertHibernateAccessException(SessionFactoryUtils.java:536)
at org.springframework.orm.hibernate.SessionFactoryUtils$SpringSessionSynchronization.beforeCommit(SessionFactoryUtils.java:749)
at org.springframework.orm.hibernate.SessionFactoryUtils$JtaSessionSynchronization.beforeCompletion(SessionFactoryUtils.java:852)
at com.ibm.ws.Transaction.JTA.RegisteredSyncs.distributeBefore(RegisteredSyncs.java:110)
at com.ibm.ws.Transaction.JTA.TransactionImpl.internalPrepare(TransactionImpl.java:1211)
at com.ibm.ws.Transaction.JTA.TransactionImpl.commit(TransactionImpl.java:960)
at com.ibm.ws.Transaction.JTA.TranManagerImpl.commit(TranManagerImpl.java:150)
at com.ibm.ws.Transaction.JTA.TranManagerSet.commit(TranManagerSet.java:182)
at com.ibm.ejs.csi.TranStrategy.commit(TranStrategy.java:712)
at com.ibm.ejs.csi.TranStrategy.postInvoke(TranStrategy.java:167)
at com.ibm.ejs.csi.TransactionControlImpl.postInvoke(TransactionControlImpl.java:565)
at com.ibm.ejs.container.EJSContainer.postInvoke(EJSContainer.java:3038)
at com.ibm.ejs.container.EJSContainer.postInvoke(EJSContainer.java:2916)
at net.targetgroup.broker.application.applicationservices.EJSRemoteStatelessApplicationManager_28ec6fbf.saveApplicationAndThirdParties(EJSRemoteStatelessApplicationManager_28ec6fbf.java:175)
at net.targetgroup.broker.application.applicationservices._ApplicationManager_Stub.saveApplicationAndThirdParties(_ApplicationManager_Stub.java:318)
at net.targetgroup.broker.application.applicationservices.ApplicationManagerAccessBean.saveApplicationAndThirdParties(ApplicationManagerAccessBean.java:146)
at net.targetgroup.broker.automaticprocessing.ClientController.saveApplication(ClientController.java:324)
at net.targetgroup.broker.automaticprocessing.ClientController.processFastEntryApplication(ClientController.java:221)
at net.targetgroup.broker.fastentry.session.UnsavedApplicationsListener.valueUnbound(UnsavedApplicationsListener.java:98)
at com.ibm.ws.webcontainer.httpsession.SessionData.processListeners(SessionData.java:835)
at com.ibm.ws.webcontainer.httpsession.SessionData.sessionUnbound(SessionData.java:914)
at com.ibm.ws.webcontainer.httpsession.SessionContext.notifySessionInvalidated(SessionContext.java:1013)
at com.ibm.ws.webcontainer.httpsession.SessionData.invalidate(SessionData.java:540)
at com.ibm.ws.webcontainer.httpsession.SessionData.internalInvalidate(SessionData.java:513)
at com.ibm.ws.webcontainer.httpsession.MemorySessionContext.processInvalidList(MemorySessionContext.java:118)
at com.ibm.ws.webcontainer.httpsession.MemorySessionContext.performInvalidation(MemorySessionContext.java:79)
at com.ibm.ws.webcontainer.httpsession.SessionContext.pollInvalidations(SessionContext.java:952)
at com.ibm.ws.webcontainer.httpsession.SessionAlarmListener.alarm(SessionAlarmListener.java:44)
at com.ibm.ejs.util.am._Alarm.run(_Alarm.java(Compiled Code))
at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:672)

_________________
On the information super B road


Top
 Profile  
 
 Post subject:
PostPosted: Thu Feb 17, 2005 11:19 am 
Senior
Senior

Joined: Tue Aug 03, 2004 2:11 pm
Posts: 142
Location: Somerset
This turned out simply be a missing cascade on a many-to-one mapping.

All sorted.

_________________
On the information super B road


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.