Hi All,
I've implemented SDI using a flat file on SPS10.
I created a REPLICATION TASK using the Remote Source Connection(created using a flat file) and generated VIRTUAL TABLE (GVTBL) and ACTUAL TABLE (GATBL).
Now, I'm having the following tables:
GVTBL - generated virtual table,
GATBL - generated actual table and
PATBL - present actual table(created using "SQL Create column table" existing in a schema & also having the same column structure as GATBL)
After that, using FLOW GRAPH method I'm UPSERTing (update+insert) data from GVTBL into GATBL which is running successfully.
But when I try to achieve the same from the following combinations, I got the following errors:
Scenario 1:
UPSERT from GVTBL to PATBL
column store error: task framework: [140028] Insufficient privilege. Access denied.
Scenario 2:
UPSERT from GATBL to PATBL
Parse the flowgraph XML document to generate objects error; "6fc37c033a0987fc663f4e7b76fbd771": could not find reffered object
I've followed this video for reference: https://www.youtube.com/watch?v=OwzBGj8wRbk
My requirement is, how do I use SDI for inserting data into existing actual table (PATBL) from any of the generated tables(GVTBL & GATBL)?
Because when I use existing actual table (PATBL), I'm getting those errors.
Thanks & Regards,
Karthik