Terminal vs "do shell script" - different behaviour processing extended characters

Åäö won't be processed correctly by shell command "tr" when triggered by AppleScript.
Result from Terminal (running shell "sh"):
sh-3.2$ echo "ABCabcÅÄÖåäö" | tr "[:lower:]" "[:upper:]";
Result: ABCABCÅÄÖÅÄÖ
sh-3.2$ echo "ABCabcÅÄÖåäö" | tr "[:upper:]" "[:lower:]";
Result: abcabcåäöåäö
Result when running AppleScript "do shell script" (natively using shell "sh"):
do shell script ("echo \"ABCabcÅÄÖåäö\" | tr \"[:lower:]\" \"[:upper:]\";")
Result: ABCABCÅÄÖåäö
do shell script ("echo \"ABCabcÅÄÖåäö\" | tr \"[:upper:]\" \"[:lower:]\";")
Result: abcabcÅÄÖåäö
I also tried a tip from another discussion - "/bin/echo" or "prinf" instead of just "echo".
- Same result.
Any suggestions how to overcome this?
/Martin

Hmm, thought you solved my problem but, sigh!, it seems the German Capital ß is a problem.
More of a linguistic problem though so, thanks a lot anyway!
http://en.wikipedia.org/wiki/Capital_ß
Lowercase => uppercase
Original lowercase
abcdefghijklmnopqrstuvwxyzßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýÿþœšÿ
Uppercase result using sh & tr in Terminal
ABCDEFGHIJKLMNOPQRSTUVWXYZßÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝŸÞŒŠŸ
Uppercase result using perl via applescript
ABCDEFGHIJKLMNOPQRSTUVWXYZSSÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝŸÞŒŠŸ
Difference: Lowercase ß => ß using sh but => SS using perl.
Uppercase => lowercase
Original uppercase
ABCDEFGHIJKLMNOPQRSTUVWXYZßÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝŸÞŒŠŸ
Lowercase result using sh & tr in Terminal
abcdefghijklmnopqrstuvwxyzßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýÿþœšÿ
Lowercase result using perl via applescript
abcdefghijklmnopqrstuvwxyzßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýÿþœšÿ
Difference: None.

Similar Messages

  • How to run shell script using External Process in Process Flow?

    Hi,
    We can run external process using Process flow.
    I would like to run shell script as external process in Process flow.
    Could any one please explain it?
    Thanks and regards
    Gowtham Sen.

    HI,
    As you said I tried this case. I got the following error. The script is running successfully while I tested at unix command prompt.
    The error is as follows..
    tarting Execution PFPS_SMPL_RUNSHELL
    Starting Task PFPS_SMPL_RUNSHELL
    Starting Task PFPS_SMPL_RUNSHELL:EXTERNALPROCESS
    /SOURCE_FILES/CollectFiles.sh: line 1: ls: command not found
    /SOURCE_FILES/CollectFiles.sh: line 1: wc: command not found
    /SOURCE_FILES/CollectFiles.sh: line 1: ls: command not found
    Completing Task PFPS_SMPL_RUNSHELL:EXTERNALPROCESS
    Starting Task PFPS_SMPL_RUNSHELL:EXTERNALPROCESS_1
    SQL*Plus: Release 10.1.0.2.0 - Production on Fri Sep 29 22:57:39 2006
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    ERROR:
    ORA-12545: Connect failed because target host or object does not exist
    Enter user-name: SP2-0306: Invalid option.
    Usage: CONN[ECT] [logon] [AS {SYSDBA|SYSOPER}]
    where <logon> ::= <username>[<password>][@<connect_identifier>] | /
    Enter user-name: SP2-0306: Invalid option.
    Usage: CONN[ECT] [logon] [AS {SYSDBA|SYSOPER}]
    where <logon> ::= <username>[<password>][@<connect_identifier>] | /
    SP2-0157: unable to CONNECT to ORACLE after 3 attempts, exiting SQL*Plus
    Completing Task PFPS_SMPL_RUNSHELL:EXTERNALPROCESS_1
    Completing Task PFPS_SMPL_RUNSHELL
    Completing Execution PFPS_SMPL_RUNSHELL
    My scenario is---
    I am trying to return a file name from one shell script. I created a external process for that. After completion of this process, I am running another script which takes that file name and trying to create a external table. The both scripts are runnning successfully. But while I am trying to run using process flow, its not coming.
    And I am not getting the way to catch the output of external process and pass it as parameter as another external process.
    Any suggestions are welcome.
    Thanks and regards
    Gowtham Sen.

  • Execute Shell Script from OWB Process Flow

    I am trying to execute a Shell Script from a User Defined activity of OWB Process Flow. As I have not done such things earlier
    I need to know:
    1. Where I will put the Shell Script (move_file.sh)?
    2. What are the values in need to enter in the external process parameters (such as Command, Script, Result Code, Parameter List, Sucess Threshold etc)
    Please reply this thread. It would be a big help for me and probably for others as well.
    Kind Regards
    Zakir
    Message was edited by:
    Zakir

    Check this out,.
    http://download-uk.oracle.com/docs/cd/B31080_01/doc/owb.102/b28223/ref_processflows.htm#i1173362
    And answer to your question1, the shell script should be on the unix server.
    Regards

  • Passing parameters from shell script to OWB process flow

    Hi all,
    I am running OWB process flow (using the template script provided by oracle) and i want to pass two date parameters as shown below:
    sqlplus -s $SQL_USER/$SQL_PWD@$ORACLE_SID @$HOME_DIR/src/vmc_oem_exec_script.sql OWB_OWNER VMC_POST_DW_PF_LOC_SIT PROCESS VMC_NM1_PORT_MAIN "," "P_DATE_FROM=$DATE_FROM,P_DATE_TO=$DATE_TO"
    How do i catch those values in process flow and pass those to mappings in Process flow?
    Do i need to create PF variables with same names or any name will do?
    Thanks in advance

    This document is explaining how to pass data between activities in process flow.
    I am passing parameters from a shell script.
    Any ideas,how to pass parameters from shell script and then initialize the process flow variables based on those values and then pass them further to mappings.
    Thanks

  • Automator runs shell script differently

    hi
    i build a little shell script that mounts my network-shares when they are available - that's works perfect if run by terminal but if i run it via Automator-Run shell script it does ******** - it doesn't seem to recognize my variables and creates dirs like $“Data“  instead of just Data
    can anyone help me with that?
    #!/bin/bash
    # connects to network shares if server available
    #config - wich server and mountpoints, login
    server=$"192.168.2.1"
    serverName=$"NAS(AFP)"
    dir=$“Data“
    dir2=$“Data1“
    login=$“xxx“
    pw=$“xxx“
    #connect-test and create mountfolders
    ping -q -c3 $server > /dev/null
    if [ $? -eq 0 ];then
      if [ -d "/Volumes/"$dir"" ]; then
      echo "folder $dir exists"
      else
      echo "creating folder $dir"
      mkdir "/Volumes/"$dir""
      fi
      if [ -d "/Volumes/"$dir2"" ]; then
      echo "folder $dir2 exists"
      else
      echo "creating folder $dir2"
      mkdir "/Volumes/"$dir2""
      fi
    #mount
      mount_afp "afp://"$login":"$pw"@"$serverName"._afpovertcp._tcp.local/"$dir"" "/Volumes/"$dir""
      mount_afp "afp://"$login":"$pw"@"$serverName"._afpovertcp._tcp.local/"$dir2"" "/Volumes/"$dir2""
      echo „ping ok“
    else
      echo „failed to connect to $serverName“
    fi

    FYI.  If you create an Alias of a mounted volume, the Alias will record all the connection information, except the password.  If your keychain is not locked, then when double clicking on the Alias, it will get the password from the keychain and mount the networked volumes (assumes you allowed the password to be stored in the keychain when you first mounted the volumes interactively).
    The Aliases can be put into your System Preferences -> Users & Groups -> Startup Items if you like.
    If this is a laptop and you are re-mounting the volumes when you get to a specific location, you might want to look at ControlPlane
    <http://www.macupdate.com/app/mac/39644/controlplane>

  • Shell Script Addapter and parsing Extended ascii/UTF8 characters

    Hellos.
    We are about to plunge into the world of ShellScripts. Our alphabet contains accented characters. The UNIX hosts running the scripts will be using locale ISO8859-1or ISO8859-15
    Simple question.
    When we parse the csv file .. who is parsing it? The IDM (utf8 based) system or the Unix (ascii) host?
    Should the csv always be iconv-ed to utf8 as a matter of course?
    Nothing about this in the Reference Manual.

    I know this thread is old, but it took me forever to find this out...
    Use:
    SELECT CHR (<ASCII Value> USING NCHAR_CS) FROM DUAL;
    E.g.
    SELECT CHR (206 USING NCHAR_CS) FROM DUAL;
    CHR (206 USING NCHAR_CS)
    ÎEdited by: martinByrne on 04-Aug-2010 08:37

  • Shell Script Error

    Hello:
    I am getting a error when running a process flow which is calling a shell script. The process flow has a simple user defined activity and the parameters are set up this way
    COMMAND: /bin/bash
    Parameter List:
    Result code:
    Script: /bin/ls -l > /oraapp/datos/ficheros/sv/a.lst
    Success Threshold: 0
    First i have the error: RPE-02248: For security reasons, activity operator Shell has been disabled by the DBA., then the Administrator set property.RuntimePlatform.0.NativeExecution.Shell.security_constraint to NATIVE_JAVA an now the error is this:
    Error en Proceso: PRUEBA_SHELL , Mapping: USER_DEFINED
    INFORMATIONAL: 01:05:27 15-MAY-09 90778 90769 RPE-02229: The following debug information was collected:
    INFORMATIONAL: 01:05:27 15-MAY-09 90778 90769 RPE-02230: Debug Information: os.name = SunOS
    INFORMATIONAL: 01:05:28 15-MAY-09 90778 90769 RPE-02230: Debug Information: os.version = 5.8
    INFORMATIONAL: 01:05:28 15-MAY-09 90778 90769 RPE-02230: Debug Information: os.arch = sparc
    INFORMATIONAL: 01:05:28 15-MAY-09 90778 90769 RPE-02230: Debug Information: user.name = ora10
    INFORMATIONAL: 01:05:28 15-MAY-09 90778 90769 RPE-02230: Debug Information: user.dir = /oraapp/app/oracle/product/102WB/owb/bin/unix
    INFORMATIONAL: 01:05:29 15-MAY-09 90778 90769 RPE-02230: Debug Information: argv.arg0 = /bin/bash
    INFORMATIONAL: 01:05:29 15-MAY-09 90778 90769 RPE-02230: Debug Information: argv.arg1 = {Task.Input}
    INFORMATIONAL: 01:05:29 15-MAY-09 90778 90769 RPE-02230: Debug Information: argv.stdin = /bin/ls -l > /oraapp/datos/ficheros/sv/a.lst
    INFORMATIONAL: 01:05:29 15-MAY-09 90778 90769 RPE-02230: Debug Information: ORACLE_SPAWNED_PROCESS = 1
    INFORMATIONAL: 01:05:29 15-MAY-09 90778 90769 RPE-02230: Debug Information: ORACLE_BASE = /oraapp/app/oracle
    INFORMATIONAL: 01:05:30 15-MAY-09 90778 90769 RPE-02230: Debug Information: LD_LIBRARY_PATH_64 = /oraapp/app/oracle/product/102WB/lib:../../../discoverer/lib:/oraapp/app/oracle/product/102WB/owb/bin/admin:
    INFORMATIONAL: 01:05:30 15-MAY-09 90778 90769 RPE-02230: Debug Information: HZ = 100
    INFORMATIONAL: 01:05:30 15-MAY-09 90778 90769 RPE-02230: Debug Information: PWD = /export/home/ora10
    INFORMATIONAL: 01:05:30 15-MAY-09 90778 90769 RPE-02230: Debug Information: _ = /oraapp/app/oracle/product/102/bin/sqlplus
    INFORMATIONAL: 01:05:31 15-MAY-09 90778 90769 RPE-02230: Debug Information: ORACLE_SID = cdid2
    INFORMATIONAL: 01:05:31 15-MAY-09 90778 90769 RPE-02230: Debug Information: PORT = 1522
    INFORMATIONAL: 01:05:31 15-MAY-09 90778 90769 RPE-02230: Debug Information: SERVICE = CDID2
    INFORMATIONAL: 01:05:31 15-MAY-09 90778 90769 RPE-02230: Debug Information: NLSPATH = /usr/dt/lib/nls/msg/%L/%N.cat
    INFORMATIONAL: 01:05:32 15-MAY-09 90778 90769 RPE-02230: Debug Information: OCM_HOME = /oraapp/app/oracle/product/102WB
    INFORMATIONAL: 01:05:32 15-MAY-09 90778 90769 RPE-02230: Debug Information: NLS_LANG = AMERICAN_AMERICA.WE8ISO8859P1
    INFORMATIONAL: 01:05:32 15-MAY-09 90778 90769 RPE-02230: Debug Information: HOME = /export/home/ora10
    INFORMATIONAL: 01:05:32 15-MAY-09 90778 90769 RPE-02230: Debug Information: HOSTNAME = cor0003s059
    INFORMATIONAL: 01:05:32 15-MAY-09 90778 90769 RPE-02230: Debug Information: NODEID = 1
    INFORMATIONAL: 01:05:33 15-MAY-09 90778 90769 RPE-02230: Debug Information: RTHOME = /oraapp/app/oracle/product/102WB
    INFORMATIONAL: 01:05:33 15-MAY-09 90778 90769 RPE-02230: Debug Information: LD_LIBRARY_PATH = /oraapp/app/oracle/product/102WB/jdk/jre/lib/sparc/client:/oraapp/app/oracle/product/102WB/jdk/jre/lib/sparc:/oraapp/app/oracle/product/102WB/jdk/jre/../lib/sparc:/oraapp/app/oracle/product/102WB/lib32:../../../discoverer/lib:/oraapp/app/oracle/product/102WB/owb/bin/admin:
    INFORMATIONAL: 01:05:33 15-MAY-09 90778 90769 RPE-02230: Debug Information: SKGP_HIDDEN_ARGS =
    INFORMATIONAL: 01:05:33 15-MAY-09 90778 90769 RPE-02230: Debug Information: OWB_HOME = /oraapp/app/oracle/product/102WB
    INFORMATIONAL: 01:05:34 15-MAY-09 90778 90769 RPE-02230: Debug Information: LOGNAME = ora10
    INFORMATIONAL: 01:05:34 15-MAY-09 90778 90769 RPE-02230: Debug Information: ORACLE_HOME = /oraapp/app/oracle/product/102WB
    INFORMATIONAL: 01:05:34 15-MAY-09 90778 90769 RPE-02230: Debug Information: SHELL = /usr/bin/bash
    INFORMATIONAL: 01:05:34 15-MAY-09 90778 90769 RPE-02230: Debug Information: MACHTYPE = sparc-sun-solaris
    INFORMATIONAL: 01:05:35 15-MAY-09 90778 90769 RPE-02230: Debug Information: IAS_HOME = /oraapp/app/oracle/product/102WB
    Thanks
    Edited by: user11136124 on 15-may-2009 5:36

    Hi
    needed to change the following file on server
    $OWB_HOME/owb/bin/admin/Runtime.properties
    the following parameters are disbaled by default, change to NATIVE_JAVA :
    property.RuntimePlatform.0.NativeExecution.FTP.security_constraint = NATIVE_JAVA
    property.RuntimePlatform.0.NativeExecution.Shell.security_constraint = NATIVE_JAVA
    property.RuntimePlatform.0.NativeExecution.SQLPlus.security_constraint = NATIVE_JAVA
    and then bounce the Control Center service using:
    <owb-home>/owb/rtp/sql/stop_service.sql
    <owb-home>/owb/rtp/sql/start_service.sql
    Cheers
    Nawneet

  • What is shell scripting? get me notes of that... how shell script is relate

    what is shell scripting? get me notes of that... how shell scripting is related to sql or plsql?

    shell scripting is the process of creating programs which are able to execute using a shell.
    a shell is the program you use when you are logged in to a linux (or unix) system via ssh (or if you are outdated by 10 years: telnet).
    there are much shells, traditionally, unix system use the bourne shell (visible as sh most of the time), the kornshell (ksh) and c-shell (csh) extended the bourne shell functionality. nowadays there are very much shells, most linux systems use the bourne again shell (bash). the bash shell is available for most linux/unix systems, I always advise to use it on any system, so the shell functions the same on all platforms.
    if you want to know more about shell scripting, use "google". the website of google is http://www.google.com, and usage is free. use the keywords "bash shell scripting".

  • Java and Shell Scripts

    I have created a java program that its main target is to read from a log file. The GUI has six buttons and its button has a script running each time the button is being hit. The results of the script are presented on a JTextArea automatically. So I have six buttons and six scripts. The problem is that the first time the program works fine. But if I click one button for the second time I get no results or wrong results. The scripts alone(when they work without the java program) work right.
    Is this a memory problem? How can I have the scripts with the java program work right together? I must say that each script needs 4-5 seconds to execute and immediately after the execution, the results, as I told before, are shown in a JTextArea. How can I solve the problem, so that I have the right results every time I click the buttons and not just for the first time?
    I need your ideas as soon as possible. :)))
    For connecting the java program and the shell scripts I use:
    Process proc = Runtime.getRuntime().exec("bash script ");
    OutputStream out = proc.getOutputStream();
    PrintWriter p = new PrintWriter(out);
    p.flush();     

    I think u must use process.waitFor() method .
    By this, u r sure that the said process shall complete.
    Also I would recommend new Instance/Thread for running each script.

  • Execute process (shell script) under different user

    Hi,
    is it possible to use the ProcessBuilder oder .exec()-method to execute a shell script under a JVM-different user? I need to start shell scripts for different system users and I don't want to use SUDO or a wrapper script to switch to the required user. I would like to define the user at java level. Is this possible?
    Best regards,
    Thomas

    looking for something like this too.
    currently i am relying on a script in which i have to set the user as:
    "su username -c java_program"
    the problem with this approach is that if youre not running as root, then su asks for a password, thereby halting execution. (tried input redirects and here-docs, (some popular linux tricks), they did not work)
    so you have to be root for the script option to work.
    if anyone can suggest a more "java based" way of executing a process as a different user , thatll be awesome.

  • Process Flow - Executing a shell Script

    I have a simple shell script being called at the start of a process flow, up until a few days ago this worked fine across DEV, TEST and PROD.
    It's now stopped working in PROD.
    It executes through the command line fine as an os user and when you inspect:
    select * from all_rt_audit_executions where execution_name like '%SCRIPT_ONLY%' order by updated_on desc;
    The return_result is OK, but the script has not executed (it creates a simple file and I have added another one at the end of the script 'id >> whoami.txt')
    I've no idea what the sysadmin has been up to so can't comment on configuration changes on the box.
    Any ideas?
    Edited by: RodCouncil on Mar 16, 2009 4:51 PM

    First off, if the admin has upgraded or re-installed the repository, it might have reset back to the default security properties
    The properties file is found in $OWB_HOME/owb/bin/admin/Runtime.properties and change the following parameters to NATIVE_JAVA :
    property.RuntimePlatform.0.NativeExecution.FTP.security_constraint = NATIVE_JAVA
    property.RuntimePlatform.0.NativeExecution.Shell.security_constraint = NATIVE_JAVA
    property.RuntimePlatform.0.NativeExecution.SQLPlus.security_constraint = NATIVE_JAVA
    Make sure that there are no trailing spaces on the line after NATIVE_JAVA.
    Also, if they have upgraded software could they have changed the detault UNIX profie so that you are no longer finding executables? Or changed around the file structure so that your script is in a different absolute location so that OWB doesn't find it anymore? Or changed up directory permissions so that the Oracle user can't see the script anymore?
    Just a few thoughts on things to check for....
    I'd ask your sysadmin to check the OWB security profile, and then to try running the script from the Oracle Unix account and let you know the results (assuming that you do not have access to the Oracle user).
    Edited by: zeppo on Mar 16, 2009 10:40 AM

  • How to use "do shell script" when Terminal replies with a prompt?

    Hey all,
    I'm wondering how to properly use "do shell script" when Terminal replies with a question? In this example, I'm building a small tool in AppleScript that will auto-update the Android SDK via command line prompts. The problem is when I tell it to update all ("update sdk --no-ui"), I need to accept licence agreements before it continues, and the amount of licence agreements brought up is different every time.
    So, basically, I'm wondering how to handle a case where "do shell script" encounters a case where Terminal would normally need a user's response to?
    Thanks,
    Behn

    If it is variable number of prompts that is a problem.  Look around hd and figure out how many prompts there will be. Ask around android forum for a bash solution. There are some test case apps that will let you put conditionals on output from running programs.
    # traditional way.  Pipe output to command.
    do script "echo 'ok' | update sdk --no-u"
    Here is the preferred way of getting administrator privileges.
    It is easier to diagnose problems with debug information. I suggest adding log statements to your script to see what is going on.  Here is an example.
        Author: rccharles
        For testing, run in the Script Editor.
          1) Click on the Event Log tab to see the output from the log statement
          2) Click on Run
        For running shell commands see:
        http://developer.apple.com/mac/library/technotes/tn2002/tn2065.html
    on run
        -- Write a message into the event log.
        log "  --- Starting on " & ((current date) as string) & " --- "
        --  debug lines
        set unixDesktopPath to POSIX path of "/System/Library/User Template/"
        log "unixDesktopPath = " & unixDesktopPath
        set quotedUnixDesktopPath to quoted form of unixDesktopPath
        log "quoted form is " & quotedUnixDesktopPath
        try
            set fromUnix to do shell script "sudo ls -l  " & quotedUnixDesktopPath with administrator privileges
            display dialog "ls -l of " & quotedUnixDesktopPath & return & fromUnix
        on error errMsg
            log "ls -l error..." & errMsg
        end try
    end run

  • Error when running the OWB process flow from the shell script

    Hi,
    I am able to deploy the process flow succesfully but when I execute the process flow from the shell script,I am getting the following error.Previously it worked fine.
    I had to make some chnage in the IP address,so i had to deploy again.
    Connected.
    SQL> @/oracle/product/owb92028/owb/rtp/sql/oem_exec_template.sql OWB_RTR LOC_P_REL PROCESS P_W_SOURCE "," ","
    Elapsed: 00:00:00.00
    Elapsed: 00:00:00.01
    Stage 1: Decoding Parameters
    | location_name=LOC_P_REL
    | task_type=ProcessFlow
    | task_name=P_W_SOURCE
    Stage 2: Opening Task
    declare
    ERROR at line 1:
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "OWB_RTR.WB_RT_API_EXEC", line 17
    ORA-06512: at "OWB_RTR.WB_RT_API_EXEC", line 137
    ORA-06512: at "OWB_RTR.WB_RT_API_EXEC", line 164
    ORA-06512: at line 205
    Thanks in advance.
    Vinay

    Hi Kamal and kanakam kolla,
    This is just to let you know that,I solved my problem little differently by creating a new location and deployed the process flow.Now my process flow is working fine when i call from the shell script.What i see is that, it does not update properly when we update and redeploy the process flow.So far this is the work arround i could think off and i succesfully tested this.
    Thank you Kamal and kanakam kolla,for giving a thought towards my problem.
    Thanks
    Vinay

  • Terminal is trying to auto-execute a shell script

    I can no longer use Terminal because every time I try to start it, it automatically runs a shell script I used to have on my desktop and then immediately says "[Process Completed]." I'm not sure how exactly I got it to do this... as far as I know all I did was execute the shell script by associating it with Terminal and double clicking it... but now I can't create a new shell without it automatically attempting to execute it. Please help!
    Thanks,
    Michael

    nevermind... found this http://www.starglider.net/MacOS_X/Terminal-ExecutionString.html
    Apparently I'm not the only one who's made this incredibly aggravating mistake

  • Shell Scripts in Process Chain

    Hi Friends,
       I have a requirement to run the shell scripts between two sub process chains.  Is it possible with SAP BI 2004s.  If so can any one please give me the steps or some document links. 
    Thanks in advance.
    Srikanth.

    Hi Bhanu,
      Thanks for the reply.  I tried OS Command.  But it gives me the fallowing message in process chain Any Idea.
    ==== Output of System Commands: Repeat # 0 ====
    Can't exec external program (No such file or directory)
    External program terminated with exit code 1
    Thanks in advance.
    Regards,
    Srikanth.

Maybe you are looking for

  • Cluster: automatic push of software from Active to passive node?

    (Newbie) Setup: Two node cluster, active\passive. After installing software on the active node will it (or any portion, e.g. config files) be  automatically pushed to the passive node and kept in sync? Or am I required to install the same software on

  • Bins Failing In OBIEE Report

    So I have a table and Im concerned with 2 fields in that table: Customer ID & Category. Category has the the following values A, B, C and D. I am simply doing a customer count for each category and have created the following bins. Category A - Count

  • Can't Delete Aggregation Level

    Hello Experts, I can't delete a aggregation Level wich based on a Realtime InfoCube. How can I delete This aggregation Level. No Filter, No Planing Sequenz, No Planing Function, THANKS....

  • BW DEVELOPER ROLES

    Hi Experts,     I want to know whether there are Standard Delivered Roles for Developers who are working both BackEnd and Front End in BI 7.0 environment. Thanks SB.

  • Dilemma!!! in adding to library

    So.. I was away from home for 10 months. On the way I had a iTunes music library that grew. But I also lost a few tracks by mistake. I don't know which track I actually lost in the new library. At home I have the backup of the original library. It ha