Informatica Powercenter 9.01 V26112-01_1of2 zip file problem

Hi
I have installed all three informatica zip files but Unfortunately V26112-01_1of2 zip file which contains License Key file and client doesnt work.
it looks like corrupted. I have dowloaded three times but winzip, rar doesnt work with that zip file
What can I do?
thanks
John
BTW I am getting
! C:\Users\GoK\Desktop\Infa90\901HF2_Client_Installer_win32-x86_DOCS_KEY.z01: Cannot open C:\Users\GoK\Desktop\Infa90\901HF2_Client_Installer_win32-x86_DOCS_KEY.z01
The system cannot find the file specified.
! Seek error in the file
The system cannot find the file specified.
Edited by: 877721 on Aug 6, 2011 2:13 PM

Here is what readme says from Oracle..
The parts titled "Oracle Business Intelligence Data Warehouse Administration Console 11g and Informatica PowerCenter and PowerConnect Adapters 9.0.1" and  “Oracle Business Intelligence Data Warehouse Administration Console 11g and Informatica PowerCenter andPowerConnect Adapters 9.1" include the Oracle Business Intelligence Data Warehouse Administration Console (DAC) 11g, Informatica PowerCenter Services and InformaticaPowerCenter Client Tools installers, the Informatica PowerCenter License Key and the InformaticaDocumentation.
These parts are split into multiple downloads. Download all parts into the same directory location on a Windows machine.
To extract the contents of the zip files:
1.      Using WinZip, unzip the contents of each downloaded zip file into a single directory location. Do not give this directory a long name and avoid using the My Documents folder. On extraction of all the zip files, you will received additional zip files with file names similar to “dac_win_11g_infa_<OS and Bit>_<INFA version> and with file extensions .zip, .z01, .z02, .z03 etc.
2.      Using WinZip, unzip the file with the .zip extension file into a new directory. Do not give this directory a long name and avoid using the My Documents folder. NOTE: Do not unzip the .z01, .z02 etc. files as the contents of these files will automatically be extracted.
On extract of the zip files you will receive the following five files:
1.     <INFA version>_Server_Installer_<OS> (.tar or .zip)
2.      DAC11gInstaller.zip
3.      910HF2_Client_Installer_win32-x86.zip
4.      Infa91Docs.zip
5.      Oracle_All_OS_Prod.key

Similar Messages

  • Informatica Powercenter client 9.0.1 V26112-01_1of2 zip file problem

    Hi,
    https://cn.forums.oracle.com/forums/thread.jspa?messageID=9784283&tstart=0
    i followed the above otn url, but i am getting same problem.
    i installed latest version of winzip , winrar and 7zip all are giving same error.
    i followed Readme in edelivery that is also not resolved my problem.
    can any body give me clear picture i.e which zip version i can use and please give me the step by step information.
    thanks
    charan

    can you please help
    do we need to download 3 files for informatica 9 on windows7 64bit?
    Informatica PowerCenter and PowerConnect Adapters Client 9.0.1 (Part 1 of 2)
    Informatica PowerCenter and PowerConnect Adapters Client 9.0.1 (Part 2 of 2)
    Informatica PowerCenter and PowerConnect Adapters 9.0.1 for Windows x86 (64-bit).
    can someone please guide me to step by step installation guide;
    installed server from (Informatica PowerCenter and PowerConnect Adapters 9.0.1 for Windows x86 (64-bit).) file
    not sure if we have to install other 2 client files
    please help
    Thanks in Advance

  • Sending Downsized Images to Zip File Problems

    I use Adobe Elements 5.0 and have been uploading images to the organizer for a couple of years without problems, until just recently.  Here is how the process used to work.  When images are uploaded they are saved to a new file folder under C drive/ Public Photos/ specific folder with date and subject matter;  I fix the images in adobe then go to the specific folder and create a subfolder within that folder called "downsized".  I then use Adobe to "process multiple files" and downsize for purposes of sending to Pbase. Once the files have been downsized the images end up in the specifc folder, inside the downsized subfolder.  I then rt click and select "send to" 'compressed (zip) folder'.  From there I would open Pbase and upload the zipped folder to a new gallery.
    Recently everything has been fine until I get to the send to zip folder.  Instead of sending to the familiar yellow zip folder it is being sent to the adobe photoshop editor in the form of the adobe icon.  I click on that and it promts me for filename, width, height, resolution and color mode.  I am unable to upload this zipped file version to Pbase.  Previously, when things were operating correctly, I would have a folder, with a subfolder under that called downsized.  Within the downsized folder would be the zipped file for sending to Pbase.  Something has happened recently so that I am ending up with a folder, a subfolder called downsized a sub 'folder' under that which is the adobe elements icon and a downsized file under that which is a copy of the downzied photos in the first downsized file.  In checking out all of my 100 or so folders all of them have been 'converted" to the same organization pattern.  What has happened and how do I fix the problem so that I can send the downsized folder to a zip file for importing to Pbase?  Thank you. 

    You should realize I am just making wild guesses at your problem. And I am assuming you actually have a Microsoft Word document that you are sending. If you do, then following menu options "Insert, Picture, From File..." should work. But if you are just writing out HTML and telling the browser it's actually a Word document, I have no idea.

  • Downloading zip files - problem

    I have a program which is supposed to allow download of a zip file to the users PC and then write a record to a database showing that the user has downloaded the file.
    When I try and read the file I have downloaded I get an error message which says the zip file is incomplete.
    Here is the code which downloads the file
    docname = material.getFilelocation().substring(slashpos+1,material.getFilelocation().length());
    // reformat file name to work with getRealPath
    material.setFilelocation(dirname+"\\" +docname);
    //read data from file
    sc= getServletContext();
    String fileaddress = sc.getRealPath(material.getFilelocation());
    File resfile = new File(fileaddress);
    FileInputStream fileIn = new FileInputStream (resfile);
    BufferedInputStream in = new BufferedInputStream(new DataInputStream(fileIn));
    // Set up output to client
    res.setContentType("application/zip");
    res.addHeader("Content-Disposition", "inline;filename="+docname);
    OutputStream ds=res.getOutputStream();
    byte b[]=new byte[1024];
    int len =0;
    while ((len=in.read(b))>0) {
    ds.write(b,0,len);
    in.close();
    getfilelocation has format -directory/filename.zip
    Does anyone know why the file is incomplete?
    Thanks
    Suzan

    while ((len=in.read(b))>0) {There you are. You stop reading the input when you
    reach the first zero byte. The documentation for this
    method says
    "If no byte is available because the end of the
    stream has been reached, the value -1 is returned."I doubt that's the problem. The API does say that -1 is returned on EOF, but if it isn't going to return -1, then it will read at least 1 byte, stuff that into the array, and return the number of bytes read - which won't be zero unless the size of the array passed to it is zero (which it isn't).

  • PHP 5.0.4, php apps and zip file problems

    I use various opensource web apps that allow for files to be uploaded in zip format. The app then unzips the files and does what it needs to do with them. ie: Gallery2 uploading photos that are zipped up and placing the enclosed photos into the gallery.
    Anyway, this was working very well with the base install of OS X Server's PHP4.? and Apache 1.4.3
    I upgraded to PHP 5.0.4 using Entropy PHP (recommended by another OS X Server admin). Anyway, I lost the ability to handle the zip files. I am unsure what to look for.
    phpinfo() shows the following about compressed files:
    Configure Command
    './configure' '--prefix=/usr/local/php5' '--with-config-file-path=/usr/local/php5/lib' '--with-apxs' '--with-iconv' '--with-openssl=/usr' '--with-zlib=/usr' '--with-mysql=/Users/marc/svn/entropy/php-module/src/mysql-standard-*' '--with-mysqli=/usr/local/mysql/bin/mysql_config' '--with-libxml-dir=/usr/local/php5' '--with-xsl=/usr/local/php5' '--with-pdflib=/usr/local/php5' '--with-pgsql=/Users/marc/svn/entropy/php-module/build/postgresql-build' '--with-gd' '--with-jpeg-dir=/usr/local/php5' '--with-png-dir=/usr/local/php5' '--with-zlib-dir=/usr' '--with-freetype-dir=/usr/local/php5' '--with-t1lib=/usr/local/php5' '--with-imap=../imap-2002d' '--with-imap-ssl=/usr' '--with-gettext=/usr/local/php5' '--with-ming=/Users/marc/svn/entropy/php-module/build/ming-build' '--with-ldap' '--with-mime-magic=/usr/local/php5/etc/magic.mime' '--with-iodbc=/usr' '--with-xmlrpc' '--with-expat-dir=/usr/local/php5' '--with-iconv-dir=/usr' '--with-curl=/usr/local/php5' '--enable-exif' '--enable-wddx' '--enable-soap' '--enable-sqlite-utf8' '--enable-ftp' '--enable-sockets' '--enable-dbx' '--enable-dbase' '--enable-mbstring' '--enable-calendar' '--with-bz2=/usr' '--with-mcrypt=/usr/local/php5' '--with-mhash=/usr/local/php5' '--with-mssql=/usr/local/php5' '--with-fbsql=/Users/marc/svn/entropy/php-module/build/frontbase-build/Library/ FrontBase' '--enable-openbase_module'
    Registered PHP Streams
    php, file, http, ftp, compress.bzip2, compress.zlib, https, ftps
    BZip2 Support Enabled
    BZip2 Version 1.0.2, 30-Dec-2001

    I wish I could be as optimistic about your configuration, you have/had more than two issues, even after building a PHP that would work for you it had to be reconfigured to obtain optimal performance.
    I noticed other errors in your logs but since they weren't specifically related to your issue with zip or PHP running properly I place a low priority on them and ignored them.
    I eventually found the build issue with the entrophy PHP however Mark wasn't interested in the fix since it basically performed the majority of the tasks that were expected and everything else was considered experimental with no real support provided.
    You did get a better PHP built in the ADE (Apple Developer Environment) targeted specifically for your CPU (although they are universal binaries) and I included some modules I wrote myself that provide some (IMHO) key functionality for a production web service like scanning uploaded files for viruses and the ability to generate RRDTool graphs natively without slowing the process down by having to rely on external resources.
    While I have thoroughly tested the modules I wrote, I have not had the time (or the help) to write proper documentation for them so I might later provide some sample PHP scripts since they are fairly simple to implement.
    The biggest problem I saw was that you had a lot of nice toys but none of them were designed to work smoothly together and the entrophy PHP is a good alternative for someone who needs more than what apple provides but isn't capable of generating something that integrates well in the environment.
    Also to note, the entrophy (or Server Logistics) PHP is an all-purpose/general-purpose solution and isn't ever going to be optimal for any specific architecture due to the build process which is why the one I provided works significantly better, it was built specifically for both architectures individually then combined into a single binary giving you the ultimate performer for either architecture without sacraficing performance or degrading functionality.
    I tend to use as much Apple provided software as I can since it makes no sense to me to build and install any software that is already available and built specifically for the environment other than to waste disk space, freetype is a good example, any that is provided will never include the same features and functionality as the apple provided installation yet all PHP makers seem to build the basic bare-bones freetype and build their PHP off of it expecting to achieve the same feature-rich functionality which it clearly isn't capable of.
    They also include a lot of features which are never used and I have removed and/or substituted some of these in an attempt to provide a more usefull set of features and functionality and I include a very complete pear installation which also contains just about every feature and functionality you would ever require without providing anything that that would be considered fluff.
    I've been watching the performance of the installation for a couple of days now and I'm more than satified that it's a solid performer for you so smile and enjoy, santa was nice to you this year.

  • BT cloud zipped files problem

    Hiya there
    I have encountered a really strange problem on my BT cloud storage I first noticed it after zipping some pictures on my computer and uploading the zipped file, then trying to share them, I get this message.
    Now I know for a fact nothing is DRM protected, I uploaded a few images by themselves (without zipping) and was able to obtain a link to share, but as soon as I zipped the SAME pictures I got the message above ?   Now this only seems to affect my zipped images and not say a zipped .exe file.
    Does anyone have any clues as to why I cannot share zipped pictures .. note they are all mine, taken my me, zipped by me and none have any DRM attributes (as proved when uploaded as a single unzipped file)
    Looking forward to any hints as to why this may be
    Z
    Solved!
    Go to Solution.

    ZooBurner wrote:
    Hiya there
    thanks for your reply, I have suspected something like you suggested but i don't find any of the properties you suggest under the security tab..that being said I dont realy understand the way Windows 7 security permissions work at all.  I was using a standard account so i logged onto the admin account zipped the files and uploaded, same result though.
    I have succesfully shared the file via uploading it to my webspace and dropbox both were very easy and worked well, so if it is a  permissions thing then its not a universally applied or enforced one !!
    I do thank you for your time though and will continue to work on this one, I'm wondering if it is a permission that is applied at the BT Cloud end ?
    PS I have also succesfully shared the same file via Onedrive and Googledrive !!
    Many thanks
    Z
    This may help the situation and lead towards a solution:-
    The problem may well lie with the BT Cloud software. It could be just a quirk with FSecure.
    The attribute"wmpnetworksvc"  I had mentioned is not there in the security properties of the .zip file, and must be added.
    If you view the file listing in "My Pictures" folder, or wherever it's held, then select the option "Share With" and then progress to "everyone". Then that attribute is added to your .zip file.
    You will note that if you check the properties of a normal .jpeg file that the atttribute "WMPNetworkSvc" is already there, (as a read only file).

  • Extarct Zip file problem

    hai,
          i am facing issues with extracting epub filesihave used nochump library to extarct this file , but for some files the following error comes
    Error: dynamic block code description: code lengths codes incomplete
        at nochump.util.zip::Inflater/constructDynamicTables();
    i dont know what the problem is?
    Is there any other libarary to extarct zip files???
    please help

    You might like to consider whether this application addresses some of your needs concerning .zip files: http://www.windowsphone.com/en-gb/store/app/pocket-file-manager/56dd9c3d-fe0a-4ceb-84b0-043e58e55b19
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Editing Zip File Problem

    Hi All
    I want to write a program to edit an entity in a zip file
    When I tried to use java.util.zip.ZipFile I didn�t find way to do that, so if anybody have a way to do that please tell me as fast as possible
    Thank you,
    Best regards,
    Nageh M. El Gendy

    You can't "edit" zip files. You have to re-create the ZIP to contain the entries you want.

  • ZIP file problem!!!

    Can a ZipFile object be created for a resource known by a URL??? If so how??? if a direct constructor initialisation by URL is not supported(as far as i saw in the API), is there some other means???

    JavaNovicer wrote:
    Dude, kindly dont draw conclusions based on wat u feel... anyways, i know a zip file can be downloaded using url and then it can be unzipped to a suitable location on the system... but i cant to afford to take so much time in following this sequntial approach... coz unzipping using normal java functions takes lots of time.. add to it the time for downloading and the result is a wastage of so much time esp considering the fact the zip file is abt 500 mb... i want to do the unzipping and downloadin concurrently n I JUST NEED TO KNOW HOW TO CREATE ZIPFILE OBJECT FROM THE URL... I DONT EXPECT TO B GIVEN A READY MADE CODE... if ya cant provide any decent help regarding this, fine jus say that.. thats all..What do you consider "decent help" ? The approach I outlined will allow the unzipping and downloading to be done concurrently.
    What do you define as a "ZIPFILE OBJECT" ? The approach I outlined will expand the zip file into it's constituent parts. Since your file is 500MB long the last thing you want to do is try to keep the zip file in memory so you need to either write ti out to a file OR expand the parts sequentially and write them out to a file.
    500 MBytes is a big file and will probably take a long time to download.
    JavaNovicer wrote:
    Also jus to make things clear, i have already implemented the approach u suggested and it does take long time for executionThen you have fukced up the implementation because, unless you have a Gigabyte network, I would expect it to take only a fraction longer than downloading the file. Since you have not shown any code we cannot give any real help.
    Since you obviously don't appreciate my help I will say goodbye.
    .

  • 901HF2_Client_Installer_win32-x86_DOCS_KEY zip extraction problem

    Hi,
    I downloaded informatica client software (V26112-01_1of2) from edelivery site, it downloaded properly and i am going to extract V26112-01_1of2.zip file
    it is extracting another zip file i.e 901HF2_Client_Installer_win32-x86_DOCS_KEY.zip . Again i am going to extracting 901HF2_Client_Installer_win32-x86_DOCS_KEY.zip file
    it is giving error i.e
    901HF2_Client_Installer_win32-x86_DOCS_KEY.zipDetecting archive type...---> ZIPBuild fixed.901HF2_Client_Installer_win32-x86_DOCS_KEY.zipSearching for recovery record---> recovery record not foundBuild rebuilt.901HF2_Client_Installer_win32-x86_DOCS_KEY.zipDone.
    i thought that it is not downloaded properly so i downloaded again and extracted then it is giving same error.
    please help me regarding this issue.
    Thanks
    CHERRY.

    Hi,
    i followed the above otn url, but i am getting same problem.
    i installed latest version of winzip , winrar and 7zip all are giving same error.
    i followed Readme in edelivery that is also not resolved my problem.
    can any body give me clear picture i.e which zip version i can use and please give me the steps.
    thanks
    charan

  • DAC Services and Informatica PowerCenter installation error

    Hello!
    I'm trying to install subj from files
    V30860-01_1of2.zip
    V30860-01_2of2.zip
    which contains archive
    dac_win_101341_infa_aix_64bit_910.zip
    It is an Oracle Business Intelligence Data Warehouse Administration Console 10.1.3.4.1 for Microsoft Windows and Informatica PowerCenter and PowerConnect Adapters 9.1 for AIX Based Systems (64-bit)
    on IBM AIX 6.1 64 bit.
    And I have an error after running OUI:
    pts/2 biappl@biappl:>./runInstaller
    Platform is AIX
    Starting Oracle Universal Installer...
    Checking Temp space: must be greater than 80 MB. Actual 3490 MB Passed
    Checking swap space: must be greater than 150 MB. Actual 2560 MB Passed
    Checking monitor: must be configured to display at least 256 colors. Actual 16777216 Passed
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2012-11-20_02-51-17PM. Please wait ...The Java RunTime Environment was not found at /tmp/OraInstall2012-11-20_02-51-17PM/jdk/jre/bin/java. Hence, the Oracle Universal Installer cannot be run.
    Please visit http://www.javasoft.com and install JRE version 1.3.1 or higher and try again.
    I wonder, why OUI try to use it's own JRE from
    /tmp/OraInstall2012-11-20_02-51-17PM/jdk/jre/bin/
    directory?
    There are only Windows binaries (including java.exe and there is no ./java file)!
    Is anyone can say me what exactly am I doing wrong?
    I have and env variable
    pts/2 biappl@biappl:>echo $JAVA_HOME
    /usr/java6_64/
    I also tried to run runInstaller with ./runInstaller -jreLoc=/usr/java6_64/jre options, but this workaround does not have any effect.
    p.s. Maybe this DAC install source is for windows only, so where I can get this one for AIX 6.1 64 bit?
    Thanks a lot for any help!
    Edited by: 969999 on 20.11.2012 6:02

    Hi,
    Looks like its an identified Bug 8613903 with 64bit systems.
    Check this doc : ID 849658.1
    Regards,
    Jay
    Edited by: Voltaire on Nov 20, 2012 10:31 AM
    Edited by: Voltaire on Nov 20, 2012 10:32 AM
    Edited by: Voltaire on Nov 20, 2012 10:33 AM

  • Help to install Informatica PowerCenter  8.6.1  on Windows xp 32 bit...

    Hi,
    I have downloaded below two files from oracle edelivery site.
    "Oracle Business Intelligence Data Warehouse Administration Console 10.1.3.4.1 for Microsoft Windows and Informatica PowerCenter and PowerConnect Adapters 8.6.1 for Windows x86 (32-bit) (Part 1 of 2)"
    "Oracle Business Intelligence Data Warehouse Administration Console 10.1.3.4.1 for Microsoft Windows and Informatica PowerCenter and PowerConnect Adapters 8.6.1 for Windows x86 (32-bit) (Part 2 of 2)"
    For installing informatica on machine having microsoft windows server 32bit with 2 gb ram.
    I got 2 ZIP files form each download.When i extracted them i had following files.
    1. dac_win_101341_infa_win_x86_32bit_861.z01 ->from part 1
    and 2. dac_win_101341_infa_win_x86_32bit_861.zip -> from part 2
    Can you please assist me on below quries.
    How to unzip the file dac_win_101341_infa_win_x86_32bit_861.z01  ?
    (Tried with winzip/rar/7zip but did not work)
    Installation and intgration with oracle 10g/11g?
    (Any website/link would be helpful)
    Thanks,
    Jyanendra

    Zip files are splitted.
    You extract only dac_win_101341_infa_win_x86_32bit_861.zip file, that will extract contents from dac_win_101341_infa_win_x86_32bit_861.z01 also.

  • Issue on Informatica PowerCenter 8.1.1 for Windows 32Bit

    Hi ,
    I was trying to install Informatica PowerCenter 8.1.1 for Windows 32Bit in Windows XP system. I am getting the the following error during installtion.
    Is it support windows XP OS.
    Pinging the domain
    =================
    Current time: 2009-Feb-09 15:21:00
    Command Executed
    cd /d "D:\Informatica\PowerCenter8.1.1\server\bin"
    infacmd.bat ping -dn "Domain_VDC01-HPd1295" -dg "VDC01-HPd1295:6001" -nn "node01_VDC01-HPd1295" -re 60
    Output of execution
    Output: [ICMD_10133] Command [ping] failed with error [[ICMD_10053] Node [node01_VDC01-HPd1295] Domain [Domain_VDC01-HPd1295] Host:Port [VDC01-HPd1295:6001] has failed to ping back.].
    Error:
    ExitCode: -1
    Installation Complete
    ======================
    Thank
    Settu Gopal

    Having a look at the FTP site, it would seem that the file is available on:
    ftp://download.oracle.com/www/otn/nt/oracle8i/oracle817ntee.zip
    Obviously this bypasses the licence agreement page that you may wish to read seperately.
    Jason.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Jason Kane ([email protected]):
    Oracle 8.1.7 for Windows download goes to Yahoo Finance!!!!
    http://technet.oracle.com/cgi-bin/go?nt817ee-full
    Which is the link given on the technet page (at least at the moment - Wednesday morning here in England).
    One was quite surprised to find it take the browser to quote.yahoo.com!
    Jason.<HR></BLOCKQUOTE>
    null

  • Installing Informatica powercenter 9.0.1HF2 client tools on Linux 64 bit

    Hi all,
    I'm building OBIA 7963 on Linux x86-64but server.
    do we have Informatica powercenter client tools installables for Linux 64bit? if not please guide me how to proceed for this.
    Thanks
    Ram

    Hi Ram
    please follow the below procedure to install the informatica in LINUX
    PowerCenter - Installation and Configuration (9.0.1 for OEL Linux 64Bit)
    This article talk about the installation of PowerCenter from Informatica on:
    •     Oracle Entreprise Linux 64 bit version 5 Update 5
    •     Oracle Database 11gR2
    After you complete the installation and configuration process, you have to log in to the Administrator tool to create and configure the following services:
    •     PowerCenter Repository Service
    •     PowerCenter Integration Service
    Oracle Database
    parameter
    Set the open_cursors parameter to 1000
    SQL> SHOW parameter open_cursor;
    NAME TYPE VALUE
    open_cursors integer 300
    SQL> ALTER system SET open_cursors=1000;
    System altered.
    SQL> ALTER system SET open_cursors=1000 SCOPE=BOTH;
    System altered.
    SQL> SHOW parameter open_cursors;
    NAME TYPE VALUE
    open_cursors integer 1000
    Repository Account
    At least two database user accounts are required to host this repository :
    •     POW_REP for the repository Database
    •     POW_DOM from the domain Configuration Database
    with the CONNECT, RESOURCE, and CREATE VIEW privileges.
    For Oracle, you must perform the following instruction :
    CREATE USER POW_REP IDENTIFIED BY POW_REP
    DEFAULT tablespace users
    TEMPORARY tablespace temp
    quota unlimited ON users;
    GRANT CONNECT, resource, CREATE VIEW TO POW_REP;
    CREATE USER POW_DOM IDENTIFIED BY POW_DOM
    DEFAULT tablespace users
    TEMPORARY tablespace temp
    quota unlimited ON users;
    GRANT CONNECT, resource, CREATE VIEW, SELECT ANY dictionary TO POW_DOM;
    The grant “select dictionary privilege” to the user POW_DOM is only needed to verify the parameter Open_Cursor during the prerequisite check.
    Repository Tablespace
    Set the storage size for the tablespace to a small number to prevent the repository from using an excessive amount of space.
    Also verify that the default tablespace for the user that owns the repository tables is set to a small size. The following example shows how to set the recommended storage parameter for a tablespace named POWERCENTER_DAC.
    ALTER TABLESPACE "POWERCENTER_DAC" DEFAULT STORAGE ( INITIAL 10K NEXT 10K MAXEXTENTS UNLIMITED
    PCTINCREASE 50 );
    Operating System
    Login as root
    Processor
    Verify that the process match the software (x86_64)
    [root@di-obia-01 ~]# uname -p
    x86_64
    [root@di-obia-01 ~]# uname -orv
    2.6.18-194.el5 #1 SMP Mon Mar 29 22:10:29 EDT 2010 GNU/Linux
    Temporary Disk Space Requirements
    The installer writes temporary files to the hard disk. When the installation completes, the installer deletes the temporary files and releases the disk space.
    Installer UNIX      1 GB
    Informatica Services UNIX      2 GB
    Verification of the temporary space with the df commando: Linux - disk free command (df)
    [root@di-obia-01 ~]# df -h /tmp
    Filesystem Size Used Avail Use% Mounted on
    /dev/mapper/VolGroup00-LogVol00
    77G 16G 58G 22% /
    User Account
    On UNIX, create a user account specifically to run the Informatica daemon.
    [root@di-obia-01 ~]# /usr/sbin/useradd powercenter
    [root@di-obia-01 ~]# id powercenter
    uid=502(powercenter) gid=506(powercenter) groups=506(powercenter)
    [root@di-obia-01 ~]# passwd powercenter
    Changing password for user powercenter.
    New UNIX password:
    BAD PASSWORD: it is WAY too short
    Retype new UNIX password:
    passwd: all authentication tokens updated successfully.
    Port
    Verify that the port numbers are available on the machines where you install Informatica Services.
    [root@di-obia-01 ~]# netstat -tulpn|grep 6005
    The installer validates the port numbers that you specify to ensure that there will be no port conflicts in the domain.
    Environment Variables
    Use LANG and LC_ALL to set the UNIX code page for the installer.
    File Descriptor
    Informatica service processes can use a large number of files. Set the Linux - File Descriptor limit per process to 3000 or higher.
    In the file /etc/security/limits.conf, add this line:
    # PowerCenter
    powercenter hard nofile 3001
    powercenter soft nofile 2500
    And verify with the ulimit function logged as the powercenter system user account:
    [powercenter@di-obia-01 ~]$ ulimit -Hn
    3001
    Note:The limit is set to 3001 to prevent an error with the value 300 during the prerequisites check
    Installation directory and Permission
    As root, create the installation base directory:
    mkdir -p /powercenter/9.0.1
    chown -R powercenter:powercenter /powercenter
    chown -R powercenter:powercenter /powercenter/9.0.1
    chmod -R 775 /powercenter
    chmod -R 775 /powercenter/9.0.1
    As the installer (powercenter), copy the file to a tmp directory, unzip and untar it:
    [powercenter@di-obia-01 powercenter901]$ unzip V26109-01.zip
    Archive: V26109-01.zip
    inflating: 901HF2_Server_Installer_linux-x64.tar
    [powercenter@di-obia-01 powercenter901]$ tar -xf 901HF2_Server_Installer_linux-x64.tar
    Change the permission of the file install.sh to execute
    chmod -R 744 /tmp/powercenter901/install.sh
    Server
    Pre-Installation System Check
    To verify whether a machine meets the system requirements for an Informatica installation, run the Pre-Installation System Check Tool (i9Pi) before you start the installation process.
    You can find the i9Pi tool in the following directory: <InstallerExtractDirectory>/i9Pi
    [powercenter@di-obia-01 i9Pi]$ ./i9Pi.bin
    Preparing to install...
    Extracting the JRE from the installer archive...
    Unpacking the JRE...
    Extracting the installation resources from the installer archive...
    Configuring the installer for this system's environment...
    Launching installer...
    Enter the port 6004 to prevent a problem during the ckeck on the port 2010. The tool normally must verify until the port 6009 but check also the port 6010 which is the standard port for X Forwarding
    A pdf is available in the tool directory if you want more information.
    The report files are stored in the directory where you extract the Pre-Installation System Check tool files:
    •     HTML format: <i9Pi Directory>/i9Pi/i9Pi_summary.html
    •     Text format: <i9Pi Directory>/i9Pi_summary.log
    i9Pi_summary.log
    Output - Informatica9 Installation Location:/
    Informatica starting port number:6004
    Database Type:ORACLE
    Database Hostname:di-rep-db
    Database Port number:1521
    Database Service name:direp.hotitem.local
    Database User ID:POW_DOM
    PASSED: OS Version Check: RHL Version Identified is 2.6.18-194.el5
    PASSED: Diskspace: Available DiskSpace is 55105 MB
    PASSED: Processors: Available Processors is 2
    PASSED: Physical Memory: Available RAM Size is 4242 MB
    PASSED: Temporary Space: Available temporary diskspace: 55105 MB. Sufficient for installation
    PASSED: Socket Port: Socket port Range 6004-6009
    PASSED: LANG Environment Variable: LANG Set to en_US.UTF-8 and LC_ALL Set to null
    PASSED: JRE_HOME Environment Variable: JRE_HOME is not set
    PASSED: File Descriptors : File descriptors limit is 3001
    PASSED: Oracle Open Cursors: Open cursors in Oracle database is set to 1000Sufficient for install
    PASSED : Resource privilege : The user account has the RESOURCE privilege.
    PASSED: Create Table check : Successfully created a database table.
    PASSED: Create View : Successfully created a database view.
    Initial Server Software Installation
    This sequence of installation don't say that you have to hit the next button and does not take care of review and informative windows.
    [powercenter@di-obia-01 /]$ unset JRE_HOME
    [powercenter@di-obia-01 /]$ /tmp/powercenter901/install.sh
    OS detected is Linux
    unjar task is in progress.............
    You can wait a long time on this step ….
    unjar of ESD completed.....
    Do you want to continue installation (y/n) ?
    y
    Starting installation ...
    \* Welcome to the Informatica 9.0.1 HotFix 2 Server Installer. *
    To verify whether a machine meets the system requirements for an Informatica installation, run the
    Pre-Installation System Check Tool (i9Pi) before you start the installation process. You can find the i9Pi
    tool in the following directory: <InstallerExtractDirectory>/i9Pi
    Before you continue, read the 9.0.1 HotFix 2 Installation Guide and Release Notes.
    You can find the 9.0.1 HotFix 2 documentation in the Documentation Center at http://my.informatica.com
    Configure the LANG and LC_ALL variables to generate appropriate code pages and
    create and connect to repositories and Repository Services.
    Do you want to continue? (Y/N)Y
    Installer requires operating system Linux version 2.6 and later.
    Current operating system Linux version 2.6.
    Current operating system meets minimum requirements.
    Select a choice :
    1. Install Informatica 9.0.1 with Hot Fix 2 or Upgrade from a previous version of Informatica to
    Informatica 9.0.1 with Hot Fix 2
    2. Apply Informatica 9.0.1 Hot Fix 2 to existing 9.0.1 install.
    Enter the choice(1 or 2):1
    Checking for existing 9.0.1 HotFix 2 product installation.
    Select (G)UI mode (needs X Window support) or (C)onsole mode (G/C):G
    Launching installer in GUI mode ...
    Preparing to install...
    Extracting the JRE from the installer archive...
    Unpacking the JRE...
    Extracting the installation resources from the installer archive...
    Configuring the installer for this system's environment...
    Launching installer...
    Preparing SILENT Mode Installation...
    ===============================================================================
    Informatica 9.0.1 Services HotFix2 (created with InstallAnywhere)
    Informatica 9.0.1 HotFix 2 Steps:
    •     Installation Type: Install (and not upgrade)
    •     Pre-requisites: Next
    •     License and Directory. (Transfer the license file from the client zip file)
    •     Pre-Installation Summary: Install (Required Disk Space 2815 MB)
    •     Domain Creation: Create a domain
    •     Configuration Database
    with as JDBC parameters:
    MaxPooledStatements=20;CatalogOptions=0;BatchPerformanceWorkaround=true
    •     Domain Configuration
    •     Port Configuration
    •     Post-Installation Summary
    Installation Status:: SUCCESS
    The Informatica 9.0.1 HotFix 2 installation is complete.
    For more information, see the debug log file:
    /powercenter/Informatica/9.0.1/Informatica_9.0.1_Services_HotFix2.log
    Informatica Administrator Home Page http://di-obia-01.hotitem.local:6007
    Product Name : Informatica 9.0.1 HotFix 2
    Installation Type : Fresh Installation
    Installation Directory : /powercenter/Informatica/9.0.1
    •     Login to the Administration console with the Administrator user (Administration/Administrator)
    Repository Configuration
    •     Start Informatica services. Start > All Programs > Informatica PowerCenter 8.6.1 > Services > Start Informatica Services.
    •     Launch the Administration console. Start > All Programs > Informatica PowerCenter 8.6.1 > Services > PowerCenter Administration Console
    •     Login with the account given in the configuration (admin/admin for this article).
    •     Select configuration assistant (if you don't see it, you can also configure a repository with the configuration tool on the left side)
    •     Welcome > Next
    •     Enter a name for the repository, click on the configure button and fill in the fields. You must enter a connect identifier and not a connect string. The connect string for Oracle contains the credentials.
    If the creation of the repository hang, try to give the DBA privileges to the oracle database account POW_REP
    •     Integration service: fill a name in : INT_OBIA7961 and click next.
    •     Character Data for Integration service: (Note: Character Encoding give the choice between ASCII and Unicode)
    •     Finish !
    A global administrator (for the domain and the repository) is automatically created during the installation with the credentials Administrator/Administrator. You may change the password for security purpose
    Client
    Installation Steps:
    •     Double click on the file install.bat located in this directory : File1\pc861_client_win32_x86\
    •     Choose Language. Next
    •     Choose Install Option. Next
    •     Prerequisites. Next
    •     Installation directory For the path, you can leave the default value because it doesn't contain space C:\Informatica\PowerCenter8.6.1
    •     Pre-installation summary. Next
    •     Post-installation summary. Next
    •     Installation Complete. Done
    Hot Fix 10 installation:
    •     file2>pc861_HotFix10_Client\install.bat
    •     Select Language. Ok
    •     Welcome. Next. Stop PowerCenter. Ok
    •     Installation Prerequisites. Next
    •     Installation Type: Apply. Next
    •     Installation Directory. Next
    •     Pre-installation summary. Next
    •     Post-installation summary. Next
    •     Installation Complete. Done
    It will install :
    •     PowerCenter - Client
    o     PowerCenter - Designer
    o     PowerCenter - Repository Manager
    o     PowerCenter - Workflow Manager
    o     PowerCenter - Workflow Monitor
    o     PowerCenter Mapping Architect for Visio (Data Stencil?)
    •     Custom Metadata Configurator
    The metadata manager console is not installed as in the installation of the version 8.1.1.
    Support
    The creation of the repository hangs
    The creation of the repository can take maximum 2 minutes.
    If you don't see the creation of tables in the POW_REP schema:
    •     close the browser,
    •     connect again to the administation console and go through the configuration button in the left upper side
    If it doesn't work
    •     give the DBA privileges to the oracle database account POW_REP
    •     and try to create it again
    Thanks and Regards
    Vidya Reddy

  • Informatica powercenter 9.0.1 License Codes

    Dear all,
    I am trying to Install BI APPS 7.9.6.3 as it need to Install Informatica powercenter 9.0.1 where get this License Codes
    I try to Get one form http://www.oracle.com/us/support/licensecodes/index.html under Hyperion
    System 9 Data Integration Management (11.1.1 and 11.1.1.1 only)
    Hyperion_DIM.zip --> Hyperion_DIM_9.3.1.1.key
    when i upload this to the Informatica it shows
    The Software Version     8.1.1
    Pls update me if any get the 9.0.1 License Codes
    Best Regards
    Srini

    Hi,
    The file Informatica PowerCenter and PowerConnect Adapters Client 9.0.1 (Part 1 of 2) (V26106-01.zip) contains another zip called 901HF2_Client_Installer_win32-x86_DOCS_KEY.zip
    This zip contains the license file Oracle_All_OS_Prod.key.
    Hope it helps
    Regards
    Matthieu

Maybe you are looking for