on 2024 Sep 26 8:44 AM
Hi,
we want to store in a local table (which is the target of a replication flow) a kind of request id (like in BW). With a data flow, I could achieve this with a calculated column. I can set a date time field for the current timestamp (which can differ on each record because the data flow takes time).
I thought about a custom annotation or something similar. Has anyone an idea?
Best regards,
Tobias
Request clarification before answering.
Hi Tobias,
I would create a custom table, with the 'flow ID' and timestamp as keys. 'request ID' should be system-wide unique so I would concat the flow ID and timestamp.
In a task chain:
1. Update the custom table with a transformation flow -> enter the flow ID and time stamp
2. Load the data into a 'load' table
3. use View to move from 'load' table to 'consumption' table and add the 'request' ID using SQL
I see the overhead in tracking / creating the 'request' ID. You will need to have a custom transformation flow for each load. It would also be possible to omit the step 2 and load directly into a 'consumption' table, but you need to use SQL. Python is too slow.
Cheers
Martin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
72 | |
18 | |
10 | |
7 | |
7 | |
4 | |
4 | |
4 | |
4 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.