[JBoss Tools (users)] - Re: no hql query editor selected
by asookazian
This is the native query that was generated:
| select
| equipmentr0_.EquipmentRepairID as col_0_0_,
| equipmentr0_.ICOMSWorkOrderNumber as col_1_0_,
| equipmentr0_.ICOMSWorkOrderTechID as col_2_0_
| from
| boBETS.dbo.EquipmentRepair equipmentr0_,
| boBETS.dbo.Equipment equipment1_
| where
| equipmentr0_.EquipmentID=equipment1_.EquipmentID
| and equipment1_.EquipmentID=1
|
When I exec the following query in SQL mgmgt studio, I see the column names in the header of the result pane:
select
| equipmentr0_.EquipmentRepairID,
| equipmentr0_.ICOMSWorkOrderNumber,
| equipmentr0_.ICOMSWorkOrderTechID
| from
| boBETS.dbo.EquipmentRepair equipmentr0_,
| boBETS.dbo.Equipment equipment1_
| where
| equipmentr0_.EquipmentID=equipment1_.EquipmentID
| and equipment1_.EquipmentID=1
Is it possible to tweak it so that we see the actual column names in the header of the Hibernate Query result rather than 0, 1, 2?
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4217556#4217556
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4217556
17 years, 2 months
[JBoss jBPM] - Overdue actions, timers.
by jjrs
Hi,
Our process definitions are based on nodes and actions inside them (being executed in async mode). We are using jBPM for controlling batch processes, therefore I thought the best option was using nodetype "node".
One of the requirements is notifying if one of the actions is "running late", if it's overdue (for example if it has been running for 30 minutes and still hasn't finished)
I have been trying to associate a timer to an action or a node for trying to obtain this behaviour, but the only thing I have been able to do is to "schedule" the execution of the action, although not being able to supervise its duration.
Is there an easy way to obtain this functionality from jBPM or should I code that functionality inside my actions ?
Thanks a lot in advance.
Regards.
Jose.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4217549#4217549
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4217549
17 years, 2 months