I hv a requirement ename paymentsA 100A 101A 102B 200B 201B 201should be in the target likeA 100,101,102,103B 200,201,202,203,204can you help to solve this prob...

Showing Answers 1 - 5 of 5 Answers

saibabu

  • Jan 11th, 2007
 

hi , every time creating a column in the target table , when a record exist in the sourse definition is deyond the scope of datawarehouse.why because the target table metadata is created only once and stored in the repository.when ever a workflow runs, the power center server reads required metada from the repository and completes the workflow .otherwise study the records in the source ,according to this change the metadata of target in the repository .which is not at all recomended.why because in oltp system every day transactions are goin on ,doing so is impossible.

  Was this answer useful?  Yes

abraham deng stephen

  • Jul 3rd, 2013
 

Simple use expression transformation and make all the inputs into the date format given. Add a condition like


Code
  1.  




This is my idea. It helps you hopefully....thx

  Was this answer useful?  Yes

1. Sort based on ename column.
2. in Exp,
Var_Prev=Var_Curr
Var_curr=ename
Var_Value=IIF(Var_Prev=Var_Curr,Var_Value||,||payments,payments)
Out_Value=Var_Value
3. Aggregator transformation: Pull ename,Out_Value ports from Exp in Step 2.
Group by ename

Hope this helps!!!

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions