Skip to main content

Type of Cache in Informatica



1. Data Cache

2. Index Cache

3. Static cache

4. Dynamic cache

5. Persistent Cache

6. Re cache (Refill Cache)

7. Shared Cache

Data Cache contains condition-satisfied data. Carries output of relationship.

Index Cache contains conditioned columns. Indexed columns are the columns on whose basis we relate the data.

Persistent Cache – To reuse the lookup table data for the next runs, it is saved in the Persistent Cache.

Suppose data is same for 2-3 runs, it is fetched from the P.Cache, instead of looking up in the Lookup DB.

Recache – To remove the existing data from the P.Cache and looks into LupDB again.

Shared Cache -

Comments

  1. ID STRT TIME END TIME CAL COMMENETS/explaintaion
    INC2 2/5/2014 12:00 2/5/2014 13:00 1 start time - end time =1 hour
    INC3 2/5/2014 12:30 2/5/2014 13:30 30 12.30 falls in above time so till one its occupied so extra time is above 1 i.e 30 mins
    INC4 2/5/2014 12:45 2/5/2014 13:00 0 start time is 12.45 it falls in window of above i.e 12.00 and end time is 1 it also falls in above end time i.e 1.30 so calculation is 0
    INC1 2/5/2014 11:00 2/5/2014 12:30 1 11 is prior to 12 so 11 am to 12 pm its 1 hour ..end time is 12.30 it falls in window of 1.30



    Assume that we start from 1st record we store the start time and end time as some variable now calculation is nothing but start time - end time .for 1st record the differnce between start time and end time is 1 hour .for second row start time is 12.30 so it falls in window of 12.00 pm ( the start variable value) and end time is 1.30 and it goes beyond 1 of previous one so we set the new end time variable as 1.30 and the difference is 30 min since the earlier case was between 12 pm to 1 pm and second case is raised at 12.30 pm and end time is 1.30 so extra time is 30 mins .same calculation goes on for rest 2 rows.


    we have id , start time and end time we have to calculate the cal column data and it should be done through sql or informatica.

    ReplyDelete

Post a Comment

Popular posts from this blog

Contact Me

Do You have any queries ?                   If you are having any query or wishing to get any type of help related Datawarehouse, OBIEE, OBIA, OAC then please e-email on below. I will reply to your email within 24 hrs. If I didn’t reply to you within 24 Hrs., Please be patience, I must be busy in some work. kashif7222@gmail.com

Top 130 SQL Interview Questions And Answers

1. Display the dept information from department table.   Select   *   from   dept; 2. Display the details of all employees   Select * from emp; 3. Display the name and job for all employees    Select ename ,job from emp; 4. Display name and salary for all employees.   Select ename   , sal   from emp;   5. Display employee number and total salary   for each employee. Select empno, sal+comm from emp; 6. Display employee name and annual salary for all employees.   Select empno,empname,12*sal+nvl(comm,0) annualsal from emp; 7. Display the names of all employees who are working in department number 10   Select ename from emp where deptno=10; 8. Display the names of all employees working as   clerks and drawing a salary more than 3000   Select ename from emp where job=’clerk’and sal>3000; 9. Display employee number and names for employees who earn commission   Select empno,ename from emp where comm is not null and comm>0. 10

Informatica sample project

Informatica sample project - 1 CareFirst – Blue Cross Blue Shield, Maryland (April 2009 – Current) Senior ETL Developer/Lead Model Office DWH Implementation (April 2009 – Current) CareFirst Blue Cross Blue Shield is one of the leading health care insurance provided in Atlantic region of United States covering Maryland, Delaware and Washington DC. Model Office project was built to create data warehouse for multiple subject areas including Members, Claims, and Revenue etc. The project was to provide data into EDM and to third party vendor (Verisk) to develop cubes based on data provided into EDM. I was responsible for analyzing source systems data, designing and developing ETL mappings. I was also responsible for coordinating testing with analysts and users. Responsibilities: ·          Interacted with Data Modelers and Business Analysts to understand the requirements and the impact of the ETL on the business. ·          Understood the requirement and develope