Advertisement
Advertisement
| 04.04.2008 at 07:50AM PDT, ID: 23296219 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: |
------------------------------
I am process 78 waiting on process 60
update ParentTable
SET firstname = 'Mary'
, lastName = 'Lowe'
where parentTable_ID = 28
------------------------------
I am process 60 waiting on process 53
update ParentTable
SET processed_yn = 'N'
where parentTable_ID = 28
;
update childTable
SET isRunSuccessful = 0
, runErrorText = NULL
where parentTable_ID = 28
------------------------------
I am process 53 waiting on process 65
update ParentTable
SET processed_yn = 'N'
where parentTable_ID = 27
;
update childTable
SET isRunSuccessful = 0
, runErrorText = NULL
where parentTable_ID = 27
------------------------------
I am process 65
select childTable_ID
from childTable
where parentTable_ID = 26
and product_id = 1627
|