Author |
Message |
Topic: Monitoring Timezone logging in TZ 0 |
GARNOLD5551212
Replies: 4 Views: 2731
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Nov 11, 2013 2:02 pm Subject: Monitoring Timezone logging in TZ 0 |
Wrong forum, but just wanted to correct this trail. My SQL was wrong. Timestamps are different than sysdates.
( select B.local_transaction_id
from WMB_MSGS B
where B.event_type = 'Transact ... |
Topic: Monitoring Timezone logging in TZ 0 |
GARNOLD5551212
Replies: 4 Views: 2731
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Nov 11, 2013 1:17 pm Subject: Monitoring Timezone logging in TZ 0 |
Kimbert,
You are correct that I need to view/select based on current TZ. The date is stored as time without TZ information, so I'll have to cast knowing it is in GMT.
Since I am using this table ... |
Topic: Monitoring Timezone logging in TZ 0 |
GARNOLD5551212
Replies: 4 Views: 2731
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Nov 11, 2013 12:38 pm Subject: Known bug IC90347 fixed in 8.0.0.3 |
IC90347: Web user interface shows event time as GMT.
In my case I'll have to wait for 8.0.0.4 because of hot fixes we had added to 8.0.0.2 or get another hot fix built. Will work out with Crit Sit t ... |
Topic: Monitoring Timezone logging in TZ 0 |
GARNOLD5551212
Replies: 4 Views: 2731
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Nov 11, 2013 8:18 am Subject: Monitoring Timezone logging in TZ 0 |
We've setup Record/Replay for Monitoring on nodes and it is capturing all the Event Names correctly to our DB. The problem is that in the WMB_MSGS table in the Event_Timestamp (Type VarcChar2) the ti ... |
Topic: Mapping Node How can I Create multiple segments from one |
GARNOLD5551212
Replies: 14 Views: 9718
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Oct 17, 2013 12:24 pm Subject: Mapping Node How can I Create multiple segments from one |
GS,
You are correct, based on the integer value of Qty, I want to create n+1 output segments
Why not do it in a Java Compute node if that's your secondary choice of node?
Yes I'll do it in ... |
Topic: DFDL Graphical Mapping multi Records to same XML subsegment |
GARNOLD5551212
Replies: 15 Views: 12159
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Oct 17, 2013 12:18 pm Subject: DFDL Graphical Mapping multi Records to same XML subsegment |
Just to close this loop, my solution for this large file processing was a mix of Java Compute Node and maps to tmp files. I mapped the new Id Field from each record as it was read to the LocalEnv-> ... |
Topic: Mapping Node How can I Create multiple segments from one |
GARNOLD5551212
Replies: 14 Views: 9718
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Oct 17, 2013 11:40 am Subject: Mapping Node How can I Create multiple segments from one |
You can do it in mapping node.
You connect the foreach transform to the output message.
This will create one output message for each input section.
My understanding of his XML example was tha ... |
Topic: Mapping Node How can I Create multiple segments from one |
GARNOLD5551212
Replies: 14 Views: 9718
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Oct 17, 2013 10:16 am Subject: Mapping Node How can I Create multiple segments from one |
Thanks for the thoughts. I just didn't want to miss something simple.
I'll go through the Java Compute Examples and see if I can find one that points me in the right direction. Just haven't done ... |
Topic: Mapping Node How can I Create multiple segments from one |
GARNOLD5551212
Replies: 14 Views: 9718
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Oct 17, 2013 8:19 am Subject: Mapping Node How can I Create multiple segments from one |
The forEach doesn't work because the input is not an array. I'm looking for a way to do a for (int tmpi=0;tmpi<Qty;tmpi++) and produce 3 outputs.
example input:
<Line>
<Item value ... |
Topic: Mapping Node How can I Create multiple segments from one |
GARNOLD5551212
Replies: 14 Views: 9718
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Oct 17, 2013 7:24 am Subject: Mapping Node How can I Create multiple segments from one |
I have a system that requires us to break out a line item of quantities greater than one into individual line items with a quantity of one. The map is semi complex and now I need to add this func ... |
Topic: DFDL Graphical Mapping multi Records to same XML subsegment |
GARNOLD5551212
Replies: 15 Views: 12159
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jul 30, 2013 11:23 am Subject: DFDL Graphical Mapping multi Records to same XML subsegment |
That was what I was trying to avoid. I was pretty sure it could be coded in ESQL or Java Compute, but I wanted to stay in a pure graphical Mapping if possible. |
Topic: DFDL Graphical Mapping multi Records to same XML subsegment |
GARNOLD5551212
Replies: 15 Views: 12159
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jul 30, 2013 10:10 am Subject: DFDL Graphical Mapping multi Records to same XML subsegment |
You cannot put a for each at the Data level because from the flat file on the left side Map from DFDL Data is [1..1]. Since each record in the file is processed one at a time in the flow read from fi ... |
Topic: DFDL Graphical Mapping multi Records to same XML subsegment |
GARNOLD5551212
Replies: 15 Views: 12159
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jul 30, 2013 7:06 am Subject: DFDL Graphical Mapping multi Records to same XML subsegment |
I have a large file of records as input using DFDL defined input. I wish to convert it to a single XML output document. What I need help in understanding is how to rollup several records into on sub ... |