- 88
- 214 927
ETLSTATION
Canada
เข้าร่วมเมื่อ 22 เม.ย. 2023
Hi Everyone , welcome The Purpose of this Channel is to share the knowledge with all of you . I am ETL Developer . Primary working in Informatica related tools like Information Powercenter ,IDQ and IICS along with DB like Teradata and Oracle and Unix . so primary this Channel will cover videos related to these tools and case studies plus Interview questions
IICS | Expression Transformation in Informatica Cloud
source and target details and informatica link
informatica link for documentation for functions :
docs.informatica.com/data-integration/powercenter/10-5/transformation-language-reference/functions/to_date.html
target :
CREATE TABLE "TGT"."EMP"
( "EMP_ID" NUMBER(*,0),
"EMP_NM" VARCHAR2(10 BYTE),
"STATUS" VARCHAR2(5 BYTE),
"SRC_CD" VARCHAR2(10 BYTE),
"CITY" VARCHAR2(10 BYTE),
"COUNTRY_CD" VARCHAR2(10 BYTE),
"UPDATE_DT" DATE
)
source details
10 STEVE A SAP DALLAS USA 20240706
200 JOHNSON AC SAP2 HOUSTON USA 20240706
3000 RAVITEJA ACT SAP30 LASVEGAS USA 20240706
4000000000RAMANIVASAACTV ORACLE LOSANGELESUSA 20240706
informatica link for documentation for functions :
docs.informatica.com/data-integration/powercenter/10-5/transformation-language-reference/functions/to_date.html
target :
CREATE TABLE "TGT"."EMP"
( "EMP_ID" NUMBER(*,0),
"EMP_NM" VARCHAR2(10 BYTE),
"STATUS" VARCHAR2(5 BYTE),
"SRC_CD" VARCHAR2(10 BYTE),
"CITY" VARCHAR2(10 BYTE),
"COUNTRY_CD" VARCHAR2(10 BYTE),
"UPDATE_DT" DATE
)
source details
10 STEVE A SAP DALLAS USA 20240706
200 JOHNSON AC SAP2 HOUSTON USA 20240706
3000 RAVITEJA ACT SAP30 LASVEGAS USA 20240706
4000000000RAMANIVASAACTV ORACLE LOSANGELESUSA 20240706
มุมมอง: 612
วีดีโอ
IICS | How to Load Fixed Width File in Informatica Cloud
มุมมอง 3534 หลายเดือนก่อน
Hi Friends please find the source and target details . target ddl: CREATE TABLE "TGT"."EMP" ( "EMP_ID" NUMBER(*,0), "EMP_NM" VARCHAR2(10 BYTE), "STATUS" VARCHAR2(5 BYTE), "SRC_CD" VARCHAR2(10 BYTE), "CITY" VARCHAR2(10 BYTE), "COUNTRY_CD" VARCHAR2(10 BYTE), "UPDATE_DT" DATE ) source : 10 STEVE A SAP DALLAS USA 20240706 200 JOHNSON AC SAP2 HOUSTON USA 20240706 3000 RAVITEJA ACT SAP30 LASVEGAS USA...
IICS| How To Denormalize Data in Informatica Cloud
มุมมอง 3004 หลายเดือนก่อน
Hi Friends find the target table and source data as below target table ddl CREATE TABLE "TGT"."EMP_DENORM" ( "EMP_ID" NUMBER(38,0), "NAME" VARCHAR2(100 BYTE), "TRAINEE_SALARY" NUMBER, "DEVELOPER_SALARY" NUMBER, "MANAGER_SALARY" NUMBER ) source data ID,Name,Designation,Salary 10, Steve,Trainee,3000 10, Steve,Developer,4000 10, Steve,Manager,6000 20, Maria,Trainee,3200 20, Maria,Developer,4300 20...
IICS | Parameterize the Pushdown Optimization in Informatica Cloud
มุมมอง 7007 หลายเดือนก่อน
Hi Friends , Today we will learn how to implement Pushdown Optimization for the source and its introduction as well . below are the DDL and dataset used for this video . source : CREATE TABLE "SRC"."CUST_PO_SRC" ( "EMP_ID" NUMBER(38,0), "EMP_NM" VARCHAR2(100 BYTE), "STATUS" VARCHAR2(50 BYTE), "SRC_CD" VARCHAR2(50 BYTE), "CITY" VARCHAR2(100 BYTE), "COUNTRY" VARCHAR2(100 BYTE)) target : CREATE TA...
IICS | Full Pushdown Optimization in Informatica Cloud
มุมมอง 4487 หลายเดือนก่อน
Hi Friends , Today we will learn how to implement Pushdown Optimization for the source and its introduction as well . below are the DDL and dataset used for this video . source : CREATE TABLE "SRC"."CUST_PO_SRC" ( "EMP_ID" NUMBER(38,0), "EMP_NM" VARCHAR2(100 BYTE), "STATUS" VARCHAR2(50 BYTE), "SRC_CD" VARCHAR2(50 BYTE), "CITY" VARCHAR2(100 BYTE), "COUNTRY" VARCHAR2(100 BYTE)) target : CREATE TA...
IICS | Source Pushdown Optimization in Informatica Cloud
มุมมอง 6137 หลายเดือนก่อน
Hi Friends , Today we will learn how to implement Pushdown Optimization for the source and its introduction as well . below are the DDL and dataset used for this video . source : CREATE TABLE "SRC"."CUST_PO_SRC" ( "EMP_ID" NUMBER(38,0), "EMP_NM" VARCHAR2(100 BYTE), "STATUS" VARCHAR2(50 BYTE), "SRC_CD" VARCHAR2(50 BYTE), "CITY" VARCHAR2(100 BYTE), "COUNTRY" VARCHAR2(100 BYTE)) target : CREATE TA...
IICS | Query Mode in SQL Transformation in Informatica Cloud | Get Employee detail by Passing DeptNo
มุมมอง 2K10 หลายเดือนก่อน
Hi Frieds below are file data and sql used . Source file : dept_id 10 30 50 SQL : SELECT EMP_BKUP.EMPNO AS EMP_ID, EMP_BKUP.ENAME AS EMP_NAME, EMP_BKUP.SAL1 as EMP_SAL, EMP_BKUP.DEPTNO AS DEPTNO FROM SRC.EMP_BKUP INNER JOIN SRC.DEPT ON EMP_BKUP.DEPTNO=DEPT.DEPT_ID AND DEPT.DEPT_ID= ?DEPT_ID? the emp bakup and dept table DDL and insert statement are available in my previous video description , p...
IICS | Run Multiple Dynamic Queries from File as Input using SQL Transformation in Informatica Cloud
มุมมอง 1.1K10 หลายเดือนก่อน
Flat File used : query DROP TABLE EMP_SAL_BY_DEPT; DROP TABLE EMP_SAL_BY_DEPT_TABL2; CREATE TABLE EMP_SAL_BY_DEPT AS SELECT ROUND(AVG(EMP_BKUP.SAL1)) as AVG_SAL,EMP_BKUP.DEPTNO AS DEPTNO FROM SRC.EMP_BKUP INNER JOIN SRC.DEPT ON EMP_BKUP.DEPTNO=DEPT.DEPT_ID GROUP BY EMP_BKUP.DEPTNO; CREATE TABLE EMP_SAL_BY_DEPT_TABL2 AS SELECT EMP_BKUP.SAL1 as SAL, EMP_BKUP.DEPTNO AS DEPTNO FROM SRC.EMP_BKUP INN...
IICS | Get Record count of all tables in database using SQL transformation in informatica Cloud
มุมมอง 1.1K10 หลายเดือนก่อน
Get Record count of all tables in database using SQL transformation in informatica Cloud Source file content : tablename books country_cd cust cust_india dept emp emp_bkup emp_wsc src_emp_stibo src_oracle Target table DDL : CREATE TABLE "TGT"."TABLE1" ( "SQLERROR" VARCHAR2(2000 BYTE), "RECORD_COUNT" NUMBER(*,0), "TABLENAME" VARCHAR2(50 BYTE) )
IICS | Hierarchy Builder Transformation | Create JASON file from Oracle
มุมมอง 1.4Kปีที่แล้ว
Hi Friends , in this video , we will learn how to create JASON file using Hierarchy Builder Transformation from Oracle . #iics #informatica #informática below is DDL for oracle source and sample data : CREATE TABLE "TGT"."EMP_JASON" ( "EMP_ID" NUMBER(38,0), "FIRST_NAME" VARCHAR2(100 BYTE), "MIDDLE_NAME" VARCHAR2(50 BYTE), "LAST_NAME" VARCHAR2(100 BYTE) ) data : Insert into EMP_JASON (EMP_ID,FIR...
IICS | Remove or ADD Empty tags in XML/Jason using Hierarchy Builder
มุมมอง 776ปีที่แล้ว
hello friends this is continuation with my previous video about how to generate XML using hierarchy builder transformation . in this video you will learn how to format dates XML , new derived columns how to map and then finally how to add or remove empty tags from XML or Jason . #informatica #iics #informática watch my previous video before watching this so you will get better understanding th-...
IICS | Hierarchy Builder Transformation | Create XML file from Oracle
มุมมอง 2Kปีที่แล้ว
Hi Friends , in this video , we will learn how to create XML file using Hierarchy Builder Transformation from Oracle . #iics #informatica #informática below is DDL for oracle source and sample data : CREATE TABLE BOOKS ( "ID" VARCHAR2(20 BYTE) NOT NULL ENABLE, "AUTHOR" VARCHAR2(100 BYTE), "TITLE" VARCHAR2(100 BYTE), "GENRE" VARCHAR2(100 BYTE), "PRICE" NUMBER(16,2), "PUBLISH_DAT" DATE, "DESCRIPT...
IICS | Pass data from one Mapping Task to Another in a Taskflow Informatica Cloud
มุมมอง 3.1Kปีที่แล้ว
Hi Friends in this video , we will learn how to pass the value using in out parameter to 1 mapping task to another mapping task . below are the table ddl we have used and flat file . CUST_M1 DDL : CREATE TABLE "TGT"."CUST_MT1" ( "EMP_ID" NUMBER(38,0), "EMP_NM" VARCHAR2(100 BYTE), "STATUS" VARCHAR2(50 BYTE), "SRC_CD" VARCHAR2(50 BYTE), "CITY" VARCHAR2(100 BYTE), "COUNTRY" VARCHAR2(100 BYTE), "CR...
IICS | Incremental load using Timestamp Passed by Parameter File in Informatica Cloud
มุมมอง 4.3Kปีที่แล้ว
Hi Friends , in this video we will learn how to implement incremental load using dates in parameter file #informatica #iics #informática #tutorial #etltesting #datawarehouse #sql
Introduction to Informatica Powercenter & Architecture
มุมมอง 640ปีที่แล้ว
Hi Friends , as i had promised in past , we will be covering various tools , this is introduction to informatica powercenter , this will be in new playlist . #informatica #iics #informática #tutorial #etltesting #datawarehouse #sql
IICS | Incremental Load using IN-OUT Parameter or Mapping Variable Method in Informatica Cloud
มุมมอง 3.2Kปีที่แล้ว
IICS | Incremental Load using IN-OUT Parameter or Mapping Variable Method in Informatica Cloud
Troubleshooting Jobs in IICS Informatica Cloud : Part 1
มุมมอง 1.5Kปีที่แล้ว
Troubleshooting Jobs in IICS Informatica Cloud : Part 1
IICS | Incremental Load Using System Variable in Informatica Cloud
มุมมอง 2.7Kปีที่แล้ว
IICS | Incremental Load Using System Variable in Informatica Cloud
IICS Informatica Interview Questions : PART 5
มุมมอง 2.7Kปีที่แล้ว
IICS Informatica Interview Questions : PART 5
IICS | Remove Symbols & Non Printable or Untranslatable Char From Input Data in Informatica Cloud
มุมมอง 1.7Kปีที่แล้ว
IICS | Remove Symbols & Non Printable or Untranslatable Char From Input Data in Informatica Cloud
IICS | Split 1 Field to Multiple Fields| Addr into City State Country Zipcode in Informatica cloud
มุมมอง 876ปีที่แล้ว
IICS | Split 1 Field to Multiple Fields| Addr into City State Country Zipcode in Informatica cloud
IICS | Reverse input data Using Expression Transformation in Informatica Cloud
มุมมอง 1.1Kปีที่แล้ว
IICS | Reverse input data Using Expression Transformation in Informatica Cloud
IICS | Dynamic Lookup in Informatica Cloud and Remove Duplicate , Shared Cache ,Persistent Cache
มุมมอง 3.6Kปีที่แล้ว
IICS | Dynamic Lookup in Informatica Cloud and Remove Duplicate , Shared Cache ,Persistent Cache
IICS | Load data from 3 Different Databases without Joiner in Informatica Cloud |Same Structure
มุมมอง 675ปีที่แล้ว
IICS | Load data from 3 Different Databases without Joiner in Informatica Cloud |Same Structure
IICS | SCD TYPE 2 Without Lookup FLAG Method in Informatica cloud |Slowly changing Dimension type 2
มุมมอง 1.5Kปีที่แล้ว
IICS | SCD TYPE 2 Without Lookup FLAG Method in Informatica cloud |Slowly changing Dimension type 2
IICS | SCD TYPE 2 Without Lookup Effective Date Method in Informatica Cloud | Slowly Changing dim 2
มุมมอง 1.8Kปีที่แล้ว
IICS | SCD TYPE 2 Without Lookup Effective Date Method in Informatica Cloud | Slowly Changing dim 2
IICS | SCD TYPE 2 Using Lookup Effective Date Method| Slowly Changing Dim Typ 2 Informatica cloud
มุมมอง 5Kปีที่แล้ว
IICS | SCD TYPE 2 Using Lookup Effective Date Method| Slowly Changing Dim Typ 2 Informatica cloud
IICS Informatica Interview Questions : PART 4
มุมมอง 3.4Kปีที่แล้ว
IICS Informatica Interview Questions : PART 4
IICS | Start Taskflow for multiple Files using File Listener in Informatica Cloud
มุมมอง 1.8Kปีที่แล้ว
IICS | Start Taskflow for multiple Files using File Listener in Informatica Cloud
IICS | Trigger or Start Taskflow with File Listener in Informatica Cloud
มุมมอง 2.3Kปีที่แล้ว
IICS | Trigger or Start Taskflow with File Listener in Informatica Cloud
for suppose if i get a value in csv like phone.no1^phone.no2 and in targer we have only one column called target.no. is it possible to transform and send each phone no separate? instead of 1 outcome, basically i need in C360 phone Array(2) and each array i need each phone number.
im getting error : Object is not valid: java.rmi.RemoteException:String index out of range: 0; nested exception is: com.informatica.saas.common.exception.SaasExceltion: String index out of range 0: 0..
Hi sir can u please do one mini project end to end for iics and explain the flow it will be very helpfull for interviews
Can u Explain what are the Challenges are we faced in IICS wen compared to IPC?
Thanks for the video sir, i have one doubt regarding update option in definition , whenever i select update and cant update columns in Schedule option.? But the data has been updating ..
Hii.....how to trigger tommorow files automatically...for example I have a file called 07-11-2024_orders.csv and run this today's file and scheduled for tommorow...and tommorow automatically triggered tommorows file like 08-11-2024_orders.csv...how to solve this..this was asked in an interview
Great! thanks for this great tutorial
Can u pls share few videos in data object parameterization
Great job But I want to load data from Oracle to JSON file (or) MongoDB collection so Can you make a video ?
can synchronization task allow the user to perform sorting , filtering ,aggregation or joining?
How can we parameterize the schema name in this?
You selected only country cd as return port in lookup but why in target both columns are showing???
Need to know how Exclude work in expression.. pls tell us
Hello sir could please explain task flow parameter (contant,field,formula)
Please let me know how to migrate the jobs from datastage etl tool to iics
Dach Well
Thank you so much❤
There is an update, to make it a single tag in XML or Json we have an option in Hierarchy Builder's output settings. select the generate the single output option. We dont need to take the dummy source and all.
Hi Roshan, How to load first record into table A, last record to table B and remaining records to table C
Hi can we replicate or copy data from local storage like linux to azure blob or adls?
Checksum without also can do it right?
@@sadafchannel5717 md5 ? its checksum only , informatica uses md5 for checksum
Hi roshan i followed your videos in scdtype 2 with flag i have run the mapping task but i am getting error see the below "Internal error. The DTM process terminated unexpectedly. Contact Informatica Global Customer Support." please guide me
Hi Roshan, can you please guide me if IICS's Couchbase Connector has any compatibility with its version. All we need to get data extraction done from Couchbase Server but wasn't able to extract it. Would be great if you can post a sample mapping in doing so as its JSON fed DB I believe.
Intelligent structure model is not available in IICS IN Free version now under component section i tried.
hi
hi i did same process which you explain class in database i run the query i am getting no data please guide me SELECT A.EMPNO, A.ENAME, B.DEPT_ID, B.DEPT_NM, C.COUNTRY_CD FROM EMP A INNER JOIN DEPT B ON A.DEPTNO = B.DEPT_ID INNER JOIN COUNTRY_CD C ON A.COUNTRY = C.COUNTRY_CD;
So sir it means if we want scd type 1 we can use this dynamic lookup
could you provide any complex mapping for interview purpose
in this mapping what is the lookuptr which table is import it source or target please can you elaborate it
Somehow my filter condition is not working but this video is absolutely helpful. Thank you so much !
Sir Nice video❤
SABKO SNOWFLAKE BATAKE KHUD KE BHI LALWE LAGA DO.
hi i did same process but i got the error "java [ERROR] java.lang.OutOfMemoryError: Java heap space " please guide me on this error
hi i follow same process which you explain that one i was run job it is successfully but it is emp table is loaded zero records others tables like dept & salgrade loaded successfully can you guide me please what is the problem.
I got confused a lot watching this video 🙂
Excellent explanation sir. Thankyou so much!
Hi Sir, i'm attending to interviews as an ETL Developer. i was asked questions on complex mapping and transformations in iics. can u please provide me complex mapping and what are the issues we will face while developing it.
Why did you use lookup persistent cache, As it will occupy the space not delete , is there any use, if it is corrupted, how to recover
your video's not having high quality
Can we use parameters/variable in synchronisation task? If yes, please make a video on that along with to update the parameter value for incremental load.
Hello Sir, Could you please add theory at least definition before jump into the practical. it would be great if you add so people can understand why we are doing and what the use.
Hello Roshan, I told the same way when I was asked this question in an Interview .. but Interviewer asked me 2 more approaches of doing the same which I am not sure.
I tried without linking source to Sequence gen transformer and it worked for me and i disabled incoming fields.
what if the question is to get the 3rd max salary value by using sorter and aggregator tf only? how to acheive that? i got asked this scenario in one interview?
I would like to see if 2 files are arriving same time. in your example you feed 2 files but with time gap
yes you can try that
@@ETLSTATION IICS doesn't support, I guess
Hi buddy, can you make one video, in which you can read data from SAP and apply filter on date column with time format possibilities? May be you can cover incremental load form SAP to any target? Thanks in advance.
to_timestamp('$Lastruntime','YYYY-MM-DD HH24:MI:SS')-6/24 in oracle it is not working and it's showing >> ERROR: Prepare failed. : [ FnName: Execute -- [Informatica][ODBC Oracle Wire Protocol driver][Oracle]ORA-00907: missing right parenthesis ]
good explanation watching from whitefiled bangalore working in one of the MNC companies