Hibernate version:
Hiberate 2.16 - I own the Hiberate in Action book and have read it but I am still perplexed on what is going on. What we want this to do is in one query, go and query the 2 tables (which have a one to many relationship) and get the object backs. But what is happening is it is query (select)24-25 different times, then updating the records each time. See show-sql below. It should not be updating any records, only running a select query. I have changed a few of the package name to hide some of the internals due to corp standards. Any help please reply back. Thanks.
Mapping documents:
On our dao's we are using HibernateDaoSupport and also using HibernateInterceptor by spring to handle the session management.
Code:
<class name="HourlyScheduleOffer" table="HOURLY_SCHEDULE_OFFER">
<id name="id" column="ID" type="java.lang.Long">
<generator class="native" />
</id>
<property name="creationTime" type="timestamp" />
<property name="operatingDay" type="c[package name]" />
<property name="hourEnding" type="[package name]" />
<property name="unitName" type="string" length="20" />
<property name="subStatus"
type="[package name]"
length="20" />
<property name="market"
type="[package name]"
length="20" />
<property name="ss" type="[package name]" />
<property name="Status" type="[package name]" length="20" />
<property name="offerPriceCurveSlope" type="boolean" />
<property name="noLoadCost" type="[package name]" />
<array name="offerCurve" table="S_OFFER_CURVE" cascade="none">
<key column="OFFER_ID" />
<index column="I" />
<composite-element class="QuantityDollar">
<property name="QuantityValue" type="[package name]" />
<property name="dollarValue" type="[package name]" />
</composite-element>
</array>
</class>
Code between sessionFactory.openSession() and session.close():Code:
public HourlyScheduleOffer find(String _nodeName, Market _forMarket, OperatingDay _operatingDay, HourEnding _hourEnding) {
Session session = SessionFactoryUtils.getSession(getSessionFactory(), false);
clock.start();
try {
HourlyScheduleOffer offer = (HourlyScheduleOffer)session.createCriteria(HourlyScheduleOffer.class)
.setResultTransformer(new SingleObjectResultTransformer())
.add(Expression.eq("unitName", _nodeName))
.add(Expression.eq("market", _forMarket))
.add(Expression.eq("hourEnding", _hourEnding))
.add(Expression.le("operatingDay", _operatingDay))
.addOrder(Order.desc("creationTime"))
.uniqueResult();
return offer;
} catch (HibernateException _he) {
_he.printStackTrace();
throw SessionFactoryUtils.convertHibernateAccessException(_he);
}
catch ( RuntimeException e )
{
e.printStackTrace();
throw e;
}
finally {
clock.stop();
log.info("findOfferByNodeMarketAndDate: " + clock);
}
}
Full stack trace of any exception that occurs:
No Exceptions
Name and version of the database you are using:
oracle 8.1.7.4
The generated SQL (show_sql=true):
[code]
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue as dollarVa3___, offercurve0_.I as I__ from S_OFFER_CURVE offercurve0_ where offercurve0_.OFFER_ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: update HOURLY_SCHEDULE_OFFER set creationTime=?, operatingDay=?, hourEnding=?, unitName=?, subStatus=?, market=?, ss=?, Status=?, offerPriceCurveSlope=?, noLoadCost=? where ID=?
Hibernate: select this.ID as ID0_, this.creationTime as creation2_0_, this.operatingDay as operatin3_0_, this.hourEnding as hourEnding0_, this.unitName as unitName0_, this.subStatus as submitta6_0_, this.market as market0_, this.ss as selfSche8_0_, this.Status as commitSt9_0_, this.offerPriceCurveSlope as offerPr10_0_, this.noLoadCost as noLoadCost0_ from HOURLY_SCHEDULE_OFFER this where this.unitName=? and this.market=? and this.hourEnding=? and this.operatingDay<=? order by this.creationTime desc
Hibernate: select offercurve0_.OFFER_ID as OFFER_ID__, offercurve0_.megawattValue as megawatt2___, offercurve0_.dollarValue