Want to master in Informatica Cloud B2B?? Informatica is providing FREE training in Informatica Cloud B2B Gateway Foundation level. It’s an on-demand course which will cover Informatica Cloud B2B Gateway for electronic data interchange (EDI) processes. Master the onboarding of a partner, set up the inbound and outbound flow for the partners, set up a […]
Read MoreCategory: Informatica
04 Parameters & variables: Tips for Informatica PowerCenter Specialist Certification!
There will be 6 questions from this topic. You can go through the below sections in the Informatica PDF document to learn about Parameters & variables. Designer Guide Chapter 7: Mapping Parameters andVariables Advanced Workflow Guide Chapter 15: Parameters and Variables inSessions Chapter 16: Parameter Files What to study & Where to focus Mapping Parameter […]
Read More03 Sample Questions! Informatica PowerCenter Specialist Certification.
Informatica PowerCenter Data Integration 10: Developer, Specialist Certification. This is the third video in the tutorial series. This will give you some idea about the sample questions. Please do like and subscribe the channel for more videos. Liked the content?? Please Like FB page & subscribe the channel! Let’s learn together!
Read More02 Exam topics! Informatica PowerCenter Specialist Certification.
You can find all the required Informatica PDF documentation in the links below! Informatica Documentation center Getting started: Transformation Guide: Designer Guide: Transformation Language Reference Workflow Basics Guide: Informatica PowerCenter Data Integration 10: Developer, Specialist Certification. This is the second video in the tutorial series. This will give you clear idea about the test topics, […]
Read More01 Things to know! Informatica PowerCenter Specialist Certification!
Informatica PowerCenter Data Integration 10: Developer, Specialist Certification. This video will give you some basic informations about this certification exam. This is the first video in the tutorial series. Please do like and subscribe the channel for more videos. Liked the content?? Please Like FB page & subscribe the channel! Let’s learn together!
Read MoreHow to get only filename from find command in Linux?
How to get only filename from find command in Linux? Normally find command will retrieve the filename and its path as one string. If you want to display only the filename, you can use basename command. find {file_path} -type f -iname {file_pattern} -exec basename {} ; find infa/bdm/server/source/path -type f -iname “source_fname_*.txt” -exec basename {} ; Search tags! How do I […]
Read MoreHow to Exclude All “Permission denied” messages When Using Find Command?
How to Exclude All “Permission denied” messages When Using Find Command in UNIX/LINUX? use 2>/dev/null The 2>/dev/null at the end of the find command tells your shell to redirect the standard error messages to /dev/null, so you won’t see them on screen. “/dev/null” is a virtual device file, Whatever you write to “/dev/null” will be […]
Read MoreHow to get the script output from informatica BDM command task!
If a command task is executing a shell script, you will get the exit code, standard output and standard error from the script in the Command task output. You can assign these fields to a workflow variable in the “Command Task Output” and use later in the workflow. Let’s consider a shell script which will […]
Read MoreInformatica BDM Naming Conventions – Transformations Objects & workflows
When you use consistent names and descriptions, it is easier to understand the workings of mappings and transformation objects. When you provide a name or description, a developer does not have to spend time going through an object or mapping to understand its objective. Informatica is suggesting us to use some guidelines while developing […]
Read MoreHow to export mapping or workflow parameter file in Informatica BDM?
You can export a mapping parameter file or a workflow parameter file from the Developer tool. Define the parameters in the Developer tool and then export them to a file. The Developer tool creates a parameter file in .XML format. You can export a parameter file that contains mapping parameters or workflow parameters. You can […]
Read MoreStop mapping when a nonfatal error occurs in Blaze Engine Informatica BDM
How to Enable Stop on Errors on the Blaze Engine when a nonfatal error occurs in Informatica BDM, use the property “Blaze.StopOnError,true”! During a mapping run, you may need to interrupt the entire mapping after the Data Integration Service encounters an error or exception. To do this, enable Stop on Errors on the Blaze engine in […]
Read MoreHow to terminate a workflow and mark the status as failed in Informatica BDM
How to terminate the workflow in case of task/mapping failure in Informatica BDM! Use Terminate Event” By default the workflow will be marked as success even-though any of the mapping or tasks failed. You can use the “terminate event” to force a workflow to fail in case of any mapping or task failed. Add an […]
Read MoreStop mapping when a nonfatal error occurs in Informatica BDM
How to stop the mapping when a nonfatal error occurs in Informatica BDM, enable function “Stop on Errors”! “Stop on Errors” stops the mapping if a nonfatal error occurs in the reader, writer, or transformation threads. There is no threshold to set along with this property, As soon as the mapping encounter any reader/writer/transformation […]
Read MoreINFACMD command to export workflow parameter file in Informatica BDM
How to export workflow parameter file using INFACMD command? Use listWorkflowParams! You can export a mapping parameter file or a workflow parameter file from the Developer tool. Define the parameters in the Developer tool and then export them to a file. The Developer tool creates a parameter file in .XML format. You can export […]
Read More