what are the reusable tasks in informatica ?
Answers were Sorted based on User's Feedback
Answer / swapna reddy
whatever the tasks we develop in task developer, are the
reusables
| Is This Answer Correct ? | 33 Yes | 7 No |
Answer / abhilash
Shasi and swapna both are correct.because
these three task only we can develope in task developer
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / c mahesh
create onces used multiful times is known as reusable tasks
i.e
1.session task
2.command task
3.email task
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / ramesh
Session task,
E-mail task,
Command task,
Worklet
| Is This Answer Correct ? | 6 Yes | 3 No |
Answer / thirumal
Create reusable sessions in the Task Developer. When you
create a reusable session, you can use it in multiple
workflows.
example :Session Task,
Email Task,
Command Task
Create non-reusable sessions in the Workflow Designer. When
you create a non-reusable session, you can use it only in
that workflow.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / usha
reusable tasks means the task that is created in task
developer is called reusable tasks.
The task that created in wf designer that is non reusable
teask.
| Is This Answer Correct ? | 3 Yes | 4 No |
Tell me can we override a native sql query within informatica? Where do we do it? How do we do it?
What happen when you enable grid option avilable at session level ? (Ans found: Scalabily . A single session Parallelization) But how can one session is sharable among different nodes at the same time while running ?
what is the look up transformation?
Kimball and Inmon methodologies?
What is the difference between view and materialised view?
design of staging area?
How do you manage the Parameter files while migrating your data from one environment to another environment?
How to merge First Name & Last Name?
How is union transformation utilized?
Explain what is informatica metadata and where is it stored?
How do you promote a non-reusable transformation to reusable transformation?
Consider a Phone Log table as below. It records all phone numbers that we dial in a given day. SOURCE_PHONE_NUMBER DESTINATION_PHONE_NUMBER CALL_START_DATETIME 1234 4567 01/07/2011 10:00 1234 2345 01/07/2011 11:00 1234 3456 01/07/2011 12:00 1234 3456 01/07/2011 13:00 1234 4567 01/07/2011 15:00 1222 7890 01/07/2011 10:00 1222 7680 01/07/2011 12:00 1222 2345 01/07/2011 13:00 Please provide an SQL query to display the source_phone_number and a flag where the flag needs to be set to Y if first called number and last called number are the same and N if the first called number and last called number are different. Desired Output: Source Number Is_Match 1222 N 1234 Y