Unix command to find version of Informatica, Cognos and DataStage on SUN 5.

How do I find the version of Informatica, Cognos and DataStage using a unix command on my Unix machine SunOS 5.8.
I don't want to use front end to find this information.

Um ... typically you would ask the Informatica, Cognos and DataStage people. (All of whom are not part of Oracle afaik ... [yet])

Similar Messages

  • Unix command to find certain files

    hello,
    i have a powerbook g4 running leopard... i want to find all files related to a certain program or app. What would the unix command be to find all files related to a certain program or app.
    Also... is there unix commands to find all related preferences or cached items?
    Any help would be great.

    find / -name "*.doc"
    where "*.doc" would find all files ending in .doc
    and / is the root (top most) directory. You may specify a different starting point
    find $HOME -name "*.pdf"
    or even multiple starting directories
    find ~username1 ~username2 ~username3 -name "*.zip"
    You may specify more than one type of file to locate
    find $HOME \( -name "*.dmg" -or -name "*.plist" \)
    You may also want to look at the xargs command, as well as find's "-print0" option and xargs' "-0" option
    find $HOME -name "*.txt" -print0 | xargs -0 grep "magic"

  • Unix Commands to know versions of MDEX, Workbench, CAS

    Hi All,
    Can any one help me to find the Version of MDEX, Workbench, CAS with unix command.

    You can also retrieve the MDEX version via command line parameter. Calling --version will print version information and exit. More information on MDEX flags can be found in the  [Endeca Commerce Administrators Guide|http://docs.oracle.com/cd/E35823_01/Common.630/pdf/CommerceAdminGuide.pdf]

  • Unix command to click button on dialog box and close windows?

    I administer an elementary school computer lab of 35 eMacs all with OS 10.4.7 and with ARD 3.0. Our network server configuration requires a mounted server on each desktop in order to administer certain software packages we use. Every morning at start-up I have to walk around and manually click "Connect" on the dialog boxes. Then, with this configuration, each time a server is mounted, it opens up a Finder Window on the host machine so I've got to walk around and close windows on all the machines. I'm sure there must be an AppleScript or Unix command that I can set up to do these two tasks but I've not found it (or learned how to write it) in a few days of searching. Any suggestions?
    Thanks,
    Dan

    OK guys,
    I just succeeded in saving the AppleScript command as an application. I put it in the Login Items just after the servers. It worked beautifully! No more open windows exposing sensitive files to the risks of elementary students (how come the mounted volumes always appear on the desktop even when the "hide" button is checked?). It would be great if the mounted volumes were not showing at least in a setting like a school computer lab.
    Now, I'm still dealing with the mounting process requiring me to manually click on "Connect" every time. The Student account doesn't even have a password just to make such things easier. Still the process displays this:
    (Oh well, I guess I can't insert a ScreenShot.)
    Here's what it says: Connect to the file server "server name."
    Connect as: Registered User
    Name: "account name"
    √Remember password in keychain
    (and then two buttons) Cancel or Connect
    That's where I'm at right now. My district Tech. Support folks say that there's no way to avoid the dialog box but John seems to do it OK. They also pointed me to an online source (www.bombich.com) that I haven't yet checked out.
    Thanks again,
    Dan

  • HOW2 FIND VERSION OF SYBASE DATABSE AND SEND A COPY OF THIS DATABASE 2 3RD PARTY

    HI, i have been asked by a colleague for the following..is this possible:
    Hornbill need to know what version of Sybase we use for Zenworks.
    Also, they would like a copy of the database.
    Is that practical ??
    We are running:
    Netware 6.5
    Zenworks for desktops 6.5
    regards
    Dennis

    Version - Sybase SQL Anywhere 10.0
    Here is how you do a backup/restore.......................
    http://www.novell.com/documentation/.../bookinfo.html
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Support Forums Volunteer Sysop
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared by either Novell or any rational human.
    "Dennis" <[email protected]> wrote in message
    news:XEHTi.18199$[email protected] ..
    > HI, i have been asked by a colleague for the following..is this possible:
    >
    > Hornbill need to know what version of Sybase we use for Zenworks.
    >
    > Also, they would like a copy of the database.
    > Is that practical ??
    >
    >
    > We are running:
    >
    > Netware 6.5
    > Zenworks for desktops 6.5
    >
    >
    > regards
    >
    > Dennis
    >
    >
    >

  • Command to find the top unix processes  doing high disk read and writes

    I would like to know 'the unix command to find the top unix processes doing high disk reads or/and writes
    If any one knows the solution please help me?
    -Swamy

    From the oracle side you can obtain OS process id for sessions having some waits for user I/O
    select p.spid, s.sid, s.sql_id
    from v$session s, v$process p
    where s.paddr=p.addr
    and s.sid in
    select sid from v$session_wait
    where wait_class='User I/O'
    );and to see sessions that are currently waiting on user I/O use
    select p.spid, s.sid, s.sql_id
    from v$session s, v$process p
    where s.paddr=p.addr
    and s.sid in
    select sid from v$session_wait
    where wait_class='User I/O'
    and wait_time=0
    );HTH, Peter

  • What is the absolute client permission needed to receive Unix commands?

    The ARD error "This task is not authorized on (computerName)" is forcing me to allow almost all the privileges in the Remote Management section of client computer's Sharing System Preferences. I've already had to add:
    "open and quit applications"
    "change settings"
    "delete and replace items"
    "restart and shutdown" (see this Apple document's suggestion for Unix commands)
    "copy items"
    It makes no sense to my why 'Generate reports' must also be added, but clicking it off makes the error return. I'm just triggering a Unix command that goes something like "echo 1" and runs as root on the one test computer (and potentially dozens, so it wouldn't be pretty changing settings in that many) If it helps, the ARD host is 10.6.7 with ARD 3.4 (installed via the App Store a couple weeks ago) and the clients are 10.4.11 and 10.5.8.
    I'm preparing documentation for ARD and some clients installing our software will not warm to the idea of widening up the permissions footprint. Potentially dozens of computers will need to be retweaked, even if they wouldn't have to leave their seat.
    We also will need to deploy a pkg installer, so some of those may need to remain checked, but ...
    What is the absolute client permission needed to receive Unix commands?
    Thanks

    Have you tried sending it as User: Root
    To my knowledge with that setting you do not need any client permissions as a unix command used as Root overides any permission set. If this is something you need to do often I do know for a fact you can make the report task up use send as Root and tell it to save as template. After this you will be able use the templte to make things a bet quicker. I believe in oder to do this you must enable root user open Directory Utility in order to do this. Keep in mind root has full permissions and any command you enter with unix will be executed as such. This is a word around in the way that the normal client users do not need to have permissions enabled, also having root available at times is handy in stick situations.

  • A command for finding an application's version number?

    Hello,
    I need a command for finding the version number of a specific application installed in OS X, and I need to be able to run it via the UNIX feature of Apple Remote Desktop, so that I can run it on hundreds of computers. First I tried this:
    system_profiler -detailLevel full
    It works, but it takes a long time to produce the output, because it's gathering and outputting all of the information that System Profiler provides. I don't know if there's a way to narrow it down so that it only gives me the version number of the specific application I need to know about. This is an example of what the output looks like for each application listed.
        iPhoto:
          Version: 9.2.1
          Last Modified: 10/27/11 10:05 AM
          Kind: Intel
          64-Bit (Intel): No
          App Store: No
          Location: /Applications/iPhoto.app
    Copying that to TextEdit and searching for the application's name takes way too long, especially for hundreds of computers. Are there any arguments or regular expressions I could add to the command to narrow it down, and make it only output the information I need?
    Someone suggested this command, which takes the information from Spotlight:
    mdls -name kMDItemVersion <path to file>
    That works for apps in the Applications folder, but the application I need the version number for is in the /usr/bin folder and I'm guessing that's not indexed by Spotlight, because it returns:
    kMDItemVersion = (null)
    Any help would be greatly appreciated!
    -Mike

    You rock! I'm definitely on the right track now. Yes, it's a regular application package, not a UNIX executable. Ok, so I use this command to display the Info.plist file inside that package:
    cat /usr/bin/uc/UndercoverRegistration.app/Contents/Info.plist
    And it outputs this:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
        <key>CFBundleDevelopmentRegion</key>
        <string>English</string>
        <key>CFBundleExecutable</key>
        <string>UndercoverRegistration</string>
        <key>CFBundleIconFile</key>
        <string>Undercover</string>
        <key>CFBundleIdentifier</key>
        <string>com.orbicule.UndercoverRegistration</string>
        <key>CFBundleInfoDictionaryVersion</key>
        <string>6.0</string>
        <key>CFBundlePackageType</key>
        <string>APPL</string>
        <key>CFBundleShortVersionString</key>
        <string>4.5</string>
        <key>CFBundleSignature</key>
        <string>????</string>
        <key>CFBundleVersion</key>
        <string>4.5</string>
        <key>NSMainNibFile</key>
        <string>MainMenu</string>
        <key>NSPrincipalClass</key>
        <string>NSApplication</string>
    </dict>
    </plist>
    So can I add arguments to that command to have it only display the version number, which is on line 18 (the value is 4.5 here)? So would I be able to display only line 18, or display whatever is below the line that reads "<key>CFBundleShortVersionString</key>"? Thanks!

  • Command to find File versions in Linux

    Will any one tell me the command to find the file versions of the following files:
    - POXVDCKB.pls
    - POXWPA9B.pls
    I am new to Financials app. Thanks in advance
    Regards,
    BMP

    oa.jsp is helpful in determining the version of Self Service Framework you are using. To check that out, use the table listed below:
      OA.jsp Version    Framework Version   Patch Number
         115.61           11.5.10.5RUP         5473858
         115.60           11.5.10.4RUP         4676589
         115.58           11.5.10.3RUP         4334965 / 5125546
         115.56           11.5.10H             3262919
         115.39           11.5.10G             3516965
         115.36           5.7H                 2771817 (11.5.9)
         115.27           5.6E                 2278688 (11.5.8)
         115.26           5.5.2E               2227335
         115.20           5.5.2C               2085104
         115.19           5.5.2B               2041847
         115.11           5.5.1E
         115.10           5.5.1B
         115.9            5.5.1A
         115.8            5.5.0E
         115.7            5.5.0D
         115.6            5.5.0C
         115.5            5.2.3D
         115.4            5.2.3C You can also check the version of OA Framework you currently have installed by logging in to your 11i instance and navigate to OAInfo.jsp using the following:
    http://hostname.domainname:port/OA_HTML/OAInfo.jsp

  • Terminal - how to find my external hard drive using unix commands

    just discovered terminal and using cd and ls commands, which are the only commands i know, i realized that i can't find my external hard drive. i thought it would be listed on my desktop, as it is in the OSX interface, but it isn't there.
    not that im skilled enough to use terminal yet, but i thought the first step would be being able to navigate the computer's files.
    really curious as to where my external hard drive is and how i can find it using unix commands in terminal.
    i was trying to figure it out myself, then i thought surely someone knows this and could tell me in a sec.
    thanks.
    ibook   Mac OS X (10.4.4)  
    ibook   Mac OS X (10.4.4)  

    "ls /Volumes" will list all volumes, including internal and external hard drives and mounted disk images. I find "disktool -l" more useful in scripts, as it tells you which volume names correspond to which "mount points" under /Volumes. Usually they're the same, but if you have two volumes with the same name, or you try to remount a removable volume before it is fully unmounted, you'll end up with a mount point that consists of the volume name with a numerical suffix.

  • Looking to run unix command line from Finder

    I want to run a unix command directly from finder. Kind of like using command-G to "Go To Folder".
    If a current method isn't supported, I noticed that Terminal.app has a shortcut for "New Command" using command-N. What would be the right way to create a keyboard shortcut in Finder that would call Terminal->New Command?
    Thanks

    You might use a third-party macro expansion utility that permits creating keyboard macro shortcuts. Examples include QuicKey or iKey. There are also several text expansion utilities that also allow attaching keyboard shortcuts such as TextExpander or Typinator. The above can be found at VersionTracker or MacUpdate.
    You can also create an AppleScript using the Do Shell Script command. The resulting compiled script can be attached to an Automator action. I don't know if you can attach a keyboard shortcut but you can add an Automator action to the Services menu and to the Finder's contextual menu.

  • To find whether a form using HOST (Unix) command to exit/execute a process.

    Hi all,
    I have some(Little bit) knowledge on forms.But here I got one requirement which was confusing me .The requirement is ,we have nearly 70 custom forms developed
    using TEMPLATE.fmb.Now I have to open each and every form and have to check whether that form is using any HOST (unix) command to exit to the shell and
    execute a process .I never got this type of requirement previously .Can any one help in how to search for those commands ,I.e is there any standard to use Unix call in
    particular trigger or etc..
    Thanks in advance .
    Regards,
    Gopi.CH

    Your question is a little unclear. The "HOST" command is an Oracle Forms built-in command which allows you to execute OS commands. So the only part of it that belongs to forms is the part that looks like HOST(). The contents within the parentheses would be the command you wanted to execute. For example:
    HOST('/path/to/your/script.sh');Refer to the Forms Builder online help for more information about how to use the HOST command.

  • How to find out the versions of family pack and mini pack installed?

    There are family pack and mini pack for HRMS.
    How to find out the versions of family pack and mini pack installed
    just by a Unix command or sqlplus Select statement?
    Thanks

    you can get the Minipack version of the products by querying fnd_product_installations or ad_patchdriver_minipks, for family packs you need to query through Metalink, OR if you have u driver file which resides on $AY_TOP/discoverer, looks for the minipacks/familypack version in the driver file.

  • Unix Command install updates for 10.9 Mavericks does not work

    Unix Command install updates for 10.9 Mavericks does not work
    These commands no longer work with 10.9
    softwareupdate -i -a
    softwareupdate -d
    Are there new unix commands for 10.9 to install updates?

    Now that Safari 7.0.3 is out there is actually something to update, here is the results:
    SYSTEM2 (192.168.1.6)
    Software Update Tool
    Copyright 2002-2012 Apple Inc.
    Finding available software
    Downloading Safari
    Downloaded Safari
    Installing Safari
    Done with Safari
    Done.
    Get Info on the system shows:
    Modified: Today 10:15
    Version: 7.0.3, Copyright © 2003-2014 Apple Inc.
    Regards,
    Shawn

  • Unix command

    hi,
    can any one tell me how to find out currunt j2ee version on CRM system from Unix command.

    You could use 'ps' to check for the existence of one of the background processes,
    for example 'ps -ef | grep smon'. SMON is a background process, which is manadatory for every database, so you see all running instances.
    Werner

Maybe you are looking for

  • How to retreive data from a maintainence view?

    Hi all, I have used select query to retreive data from a maintainence view. But it gave me a syntactical error that XYZ is not in abap dictionary , it's a database / projection view? So can't we get data from a view using select query? Please share i

  • Report Designer Locking issue

    Hi,    We have found locking issue while accessing same report(Created in Report Designer) by multi users at a time .    Has anyone face this issue and How to fix it. It's major concern because same report can be accessed by multiusers at  same time

  • Prime Infrastructure 2.0 Software IOS deployment problems

    When I try to deploy an IOS using the software deployment in Cisco PI 2.0 the jobs always fail. I have tried many different configurations and even switched flash cards but nothing works. The TFTP/SCP jobs always fail. Doing a "show flash:" I can see

  • IMovie 09 as a slideshow - choppy performance

    Just started using iMovie 09 for my first project which is approx. 24 mins in length, it is a slideshow with stills and music and transitions added. Whenever I play the in the timeline window, it gets really choppy, the music pops, and frames appear

  • How to compare multiple files in EODQ

    HI    I have a requirement to compare multiple files, when I used Link profiler, it throws error 'Invalid Processor' please let me know any tutorials to compare multiple files Thanks Babu