top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Local repository in Informatica 9.1

+4 votes
388 views

Can anyone tell me how to create a local repository in Informatica 9.1?
Is it possible to use a local folder as repository?

posted Mar 12, 2014 by Madhavi Kumari

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

+1 vote

If you want to backup the informatica objects, you can export them in xml format and save them in your local folder.
However you cannot directly develop mappings using a local folder, you need to setup a repository server.

answer Mar 12, 2014 by Shweta Singh
0 votes

Firstly create Domain & Node after installation of Informatica then only you can create local repository.
If you are referring your windows/unix folder to use as repository, its not possible.

answer Apr 25, 2014 by Shatark Bajpai
Similar Questions
+2 votes

I need to debug one of Informatica SDK jmf.jar . I decomplied the jar file and attached the source to my project . But still I am unable to debug it in Eclipse . When I set debug point , its popping " Unable to Install break in due to missing line attributes " .

I tried Changing compiler settings by removing the checked options , clicked apply and then rechecked . But I am getting the same error . I really need to debug the class files . How to do it ? please help

+1 vote

What are the new features of Informatica 9.x in developer level?

+1 vote

I have data with only 1 column and about 50 rows in it like

col
-----------
ab~~8900~~iop
nmk~~?~~ioiooo
king~~till~~8899089

the data will have column delimeters(i.e~~) but i will not seperate them. I have to clean the data and write to file after cleaning But the output file should be like

 col
 ------
 ab~~8900~~iop#^#nmk~~?~~ioiooo#^#king~~till~~8899089
The row delimeter here is #^#

How can i get this done.

Please suggest.

+3 votes

I have a mapping like
SA-->SQ--->EXPR--->TGT

The source will be of the same structure and the tartget also.
There are a bunch of files(with the same structure) which will go through this mapping .
So i want to use a parameter file through which i will give the file names for every run manually.

How to use the param file in session for Source filename attribute
Please suggest..

+1 vote

I want to extract the number(0-9) from the string. e.g.
1.if src is *J$456*&56 then tgt should be 45656
2.if src is &*(>123>>789&^ then tgt should be 123789

This is just an example, special characters or alphabets are random in string, so how to extract only numbers?

...