Launchd error on simple script

Hi guys !
I am having some difficulty with running a launchd, which runs an applescript. Hope you can help me.
I had a macmini server running these exact scripts before, but it died. So I copied everything to the same location on a new macmini and more or less expected it to work, but apparently, it doesn't.
FileMaker server creates timestamped backups and I wish to rename the folder as our other backup software then sees it as a unique folder, which we don't want.
The launchd is a user daemon. Should It be a system daemon ?
The Console gives me :
26-04-11 00:00:32          com.admin.renameFMBackup.folder[35196]          /Library/FileMaker Server/Data/Scripts/renameFolder.scpt:
26-04-11 00:00:32          com.admin.renameFMBackup.folder[35196]          execution error: An error of type -10810 has occurred. (-10810)
26-04-11 00:00:32          com.apple.launchd[1]          (com.admin.renameFMBackup.folder[35196]) Exited with exit code: 1
I can't find any reference to -10810 anywhere on the web, so I am hoping some like you has this one figured out.
Maybe I should be doing this another way ?
Very much thanks !
Joost.
So first the launchd script :
<?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>Label</key>
          <string>com.admin.renameFMBackup.folder</string>
          <key>ProgramArguments</key>
          <array>
                    <string>osascript</string>
                    <string>/Library/FileMaker Server/Data/Scripts/renameFolder.scpt</string>
          </array>
          <key>StartCalendarInterval</key>
          <dict>
                    <key>Hour</key>
                    <integer>0</integer>
                    <key>Minute</key>
                    <integer>0</integer>
          </dict>
</dict>
</plist>
The applescript is very plain...
tell application "Finder"
          set theFolder to "Macintosh HD2:Netwerk:" as alias
          set theName to "BackupAVG"
  open theFolder
          set theSubFolder to every folder of theFolder
          set name of first item of theSubFolder to theName
end tell

FileMaker Server backups the files to a folder. However, they are timestamped. Our backup program thus sees it as a new folder and so the backup grows.... I rename the folder to fool the backup.
OK, that's the part I didn't get. It sounded like you were expecting the AppleScript to do the backup, which clearly it does not do.
The single quote changed the text-color to red in Lingon.... I'll have to wait and sees how it goes.
I don't think that matters. I'd still err on quoting the entire path rather than a single element within it.
One more question... If I want to log out but still run the script. Do I make it a system daemon ?
I think you're doomed to failure here. If you want to run it while logged out, how is your script supposed to talk to the Finder to find/rename the backup folder - the Finder isn't running, and can't be launched becuase there's no logged-in user.
In fairness,that's not entirely true since root-based scripts can attach to the WindowServer, but it's still the wrong approach to your problem. I'd recommend nixing AppleScript for this and just using a shell script (which has no UI dependencies).
For example, the following shell script will find the most recent file in a directory and rename it (just ask if you don't understand the components);
#! /bin/bash
cd /Volumes/Macintosh\ HD2/Netwerk
ls -t | head -1 | xargs -I % mv % BackupAVG
Just change the path in the third line to point to the directory your backups are saved to.

Similar Messages

  • Simple Script and Launchd error

    Hi, I 'm just trying to run a simple script tu restart afp services over night, I have try so much things but my script just refuse to run, got error 127 and now just dont know what to do next to make it work. Thanks for your help.
    My script Location: /script/afprestrat.sh
    sudo chmod a+x /script/afprestrat.sh
    The script:
    #!/bin/bash
    serveradmin stop afp
    sleep 2
    serveradmin start afp
    PLIST location :
    /Library/LaunchDaemons/com.compagny.afprestart.plist
    the Plist:
    <?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>Label</key>
            <string>com.compagny.afprestart</string>
            <key>ProgramArguments</key>
            <array>
                    <string>sh</string>
                    <string>/script/afprestart.sh</string>
            </array>
            <key>StandardErrorPath</key>
            <string>/Users/admin/Documents/script/afprestart_err.log</string>
            <key>StandardOutPath</key>
            <string>/Users/admin/Documents/script/afprestart.log</string>
            <key>StartCalendarInterval</key>
            <dict>
                    <key>Hour</key>
                    <integer>4</integer>
                    <key>Minute</key>
                    <integer>05</integer>
            </dict>
    </dict>
    </plist>
    Command:
    sudo launchctl load -w /Library/LaunchDaemons/com.compagny.afprestart.plist
    Console error:
    com.apple.launchd com.compagny.afprestart Exited with code:127
    and afp service wasnt restart.
    Any hint will be really apprciated.
    thx !!!

    Ok now I got this:
    127
    com.compagny.afprestart
    Ligne 2 and ligne 4 of the script command not found thats mean:
    serveradmin: command not found
    will try to add the full path of the serveradmin command in the script:
    #!/bin/bash
    /Applications/Server.app/Contents/ServerRoot/usr/sbin/serveradmin stop afp
    sleep 2
    /Applications/Server.app/Contents/ServerRoot/usr/sbin/serveradmin start afp
    Any better idea ?
    thanks !

  • Error while executing a simple script....

    Hi,
    I am trying to run the following simple script in Oracle 8i:
    UPDATE
    vcad_ocorrencias
    set tipo_situa_solic = 'E', desc_obs_atendente = 'ACERTO DE BASE -
    18/10/2004'
    where cod_solicitacao = 7
    and tipo_situa_solic in ('N', 'P')
    and cod_contrato_Inter not in ( 2247,2295,2296,2297,2278,2269,2168)
    and dthora_geracao < '07/10/2004'
    order by cod_contrato_inter;
    And it is returning the following message error:
    ERRO na linha 8:
    ORA-00933: SQL command not properly ended
    Well this script was made by a developer and now I have to run it in production environment...
    Does someone know why it is failing?

    Get rid of your 'order by statement'.
    order by cod_contrato_inter;
    Also make certain that the 'NLS_DATE_FORMAT' is set to 'DD/MM/YYYY' or change
    and dthora_geracao < '07/10/2004'
    to
    and dthora_geracao < to_date('07/10/2004','DD/MM/YYYY')
    UPDATE
    vcad_ocorrencias
    set tipo_situa_solic = 'E',
    desc_obs_atendente = 'ACERTO DE BASE - 18/10/2004' -- not sure if it is a date column
    where cod_solicitacao = 7
    and tipo_situa_solic in ('N', 'P')
    and cod_contrato_Inter not in ( 2247,2295,2296,2297,2278,2269,2168)
    and dthora_geracao < to_date('07/10/2004','DD/MM/YYYY')

  • Error in simple javascript search web-part.

    Hi everybody. I need a help. I want to write simple sharepoint farm solution web-part (not App) with javascript for search like describe
    http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2013/04/18/how-to-query-search-with-the-sharepoint-2013-javascript-client-object-model.aspx But I get error. My visual web-part code:
    <%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %>
    <%@ Assembly Name="Microsoft.Web.CommandUI, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %>
    <%@ Import Namespace="Microsoft.SharePoint" %>
    <%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="VisualWebPart1UserControl.ascx.cs" Inherits="tester.VisualWebPart1.VisualWebPart1UserControl" %>
    <script src="~/_layouts/15/sp.search.js"></script>
    <script src="~/_layouts/15/RDBranding/js/jquery-1.7.2.min.js"></script>
    <script type="text/javascript">
    var results;
    var context;
    _spBodyOnLoadFunctionNames.push("tester");
    function tester() {
    $("#searchButton").click(function () {
    context = SP.ClientContext.get_current();
    var keywordQuery = new Microsoft.SharePoint.Client.Search.Query.KeywordQuery(context);
    keywordQuery.set_queryText($("#searchTextBox").val());
    var searchExecutor = new Microsoft.SharePoint.Client.Search.Query.SearchExecutor(context);
    results = searchExecutor.executeQuery(keywordQuery);
    context.executeQueryAsync(onQuerySuccess, onQueryFail);
    function onQuerySuccess() {
    $("#resultsDiv").append('<table>');
    $.each(results.m_value.ResultTables[0].ResultRows, function () {
    $("#resultsDiv").append('<tr>');
    $("#resultsDiv").append('<td>' + this.Title + '</td>');
    $("#resultsDiv").append('<td>' + this.Author + '</td>');
    $("#resultsDiv").append('<td>' + this.Write + '</td>');
    $("#resultsDiv").append('<td>' + this.Path + '</td>');
    $("#resultsDiv").append('</tr>');
    $("#resultsDiv").append('</table>');
    function onQueryFail(sender, args) {
    alert('Query failed. Error:' + args.get_message());
    </script>
    <div>
    <label for="searchTextBox">Search: </label>
    <input id="searchTextBox" type="text" />
    <input id="searchButton" type="button" value="Search" />
    </div>
    <div id="resultsDiv">
    </div>
    And my error in browser console after button click:
     Any idea? Why?
    Aleksandr Shramko

    I resolve my problem using next code
    $(document).ready(function () {
    Initialise();
    function Initialise() {
    var scriptBase = _spPageContextInfo.webAbsoluteUrl + "/" + _spPageContextInfo.layoutsUrl + "/";
    $.getScript(scriptBase + "sp.runtime.js", function () {
    $.getScript(scriptBase + "sp.js", function () {
    $.getScript(scriptBase + "sp.search.js", tester);
    Aleksandr Shramko

  • Simple scripting:  On frame (45) go back to first frame..??

    I am trying to do a simple script and I am having a huge brain fart.
    when I get to frame 45 I want the play head to go back to frame 1.  I have the below code but I am getting errors.  Can someone point my head in the right direction?
    <><><>
    onFrame (45) {
        this.gotoAndPlay(1);
    <><><>
    One error says that "is expecting semi-colon before or after first brace.....
    second possible error is "call to possible undefined method onFrame....
    Need help.

    If that is the first scene, the in the last frame (45) simply putting...
        gotoAndPlay(1);
    should work.
    If it is not the first scene, then you should label the first frame and use the label instead of the frame number...
        gotoAndPlay("firstFrameLabel");

  • Simple Script - won't run - please help

    I've written a very simple script to check to see if a volume is mounted and then copy a directory to that volume if it is mounted:
    #!/bin/sh
    # check to see if network space mounted by looking for known folder
    if [ -d /Volumes/backupvolume ]; then
    cp –R /Users/username/Documents/foldertobebackedup /Volumes/backupvolume/username
    fi
    I made sure the cp command works by running it in the terminal - no trouble there.
    According to what I see in Xcode, all the syntax is correct and there are no errors.
    I then run the test on the script (per the Bombich instructions):
    sudo u+x /Users/user/backupscriptingtests/190520100730.sh
    I'm then required to enter the password (which I do and it accepts it)
    The next thing that happens though is the following error appears:
    sudo: u+x: command not found
    Any ideas on what I'm entering incorrectly here? Eventually, this script will be a logout hook to copy files for a user as a backup. This process seems like it should be very simple, which is why I'd rather do it this way instead of buying a backup program.
    Thanks!
    FYI: The -d command has brackets, left bracket with space at the beginning and space with right bracket just before the ;
    Message was edited by: mcguirek
    Message was edited by: mcguirek

    You need to include the actual backup volume name and home folder name where backupvolume, username, and user are. If the backup volume name contains spaces or other special characters, precede them with backslashes or put the whole path in single quotes.
    (53087)

  • Error while executing script for sharepoint online (office 365) - the remote server returned an error: (503) server unavailable

    error while executing script for sharepoint online (office 365) - the remote server returned an error: (503) server unavailable.
    I am creating many site collections reading records from sharepoint list using powershell in sharepoint online tenant (office 365).
    Few site collections are created and then getting above error so this error record will be skipped then few succeeding record processed then again getting error.
    pattern is like:
    success
    success
    success
    success
    Error
    success
    success
    success
    success
    success
    success
    error
    success

    Hi,
    As it is an online environment, to troubleshoot this issue in an easier way, I suggest you contact Office 365 Support to see if there is any useful information in
    the log files in the server side:
    https://support.office.com/en-us/article/Contact-Office-365-for-business-support-32a17ca7-6fa0-4870-8a8d-e25ba4ccfd4b?ui=en-US&rs=en-US&ad=US
    Best regards
    Patrick Liang
    TechNet Community Support

  • Error running ssodatax script for partner applications

    I am running the ssodatax script after creating a partner
    application using the user interface in the portal. I get the following
    error after the script starts running:
    SP2-0310: unable to open file "sso/ssoseedp.sql"
    Any thoughts will be appreciated.
    Thanks,
    Suzanne

    It appears that ssodatax in your environment is unable to find the script ssoseedp.sql. This script should be available in plsql/sso directory under the ORACLE_HOME. Please find the script ssodatax and look for the sso subdirectory within the directory that contains ssodatax. If you find ssoseedp.sql in sso, then you can try running ssodatax from the directory that contains it.

  • Unable to Print From from Web-Based Sites, Error Occurred in script.

    When I try to print, I keep getting an error from a script running too long when I try to print anything web-based. I can print documents on my computer wirelessly, but not web-based (i.e.., financial statements). What is causing these errors from web sites? It is frustrating continually getting an error message. I have an HP 65000A Plus wireless CN557A#B1H, all in one printer and using Windows Vista Home edition operating system.
    When I hit print, an error message comes up saying;
    "An error has occurred in the script on this page"
    Line:2053
    Error: Invalid procedure call or argument
    At the bottom, it asks " do you want to continue running scripts on this page?".
    Any help would be appreciated. As mentioned, it is very frustrating.

    I have the same exact problem as SandyStill. It tries to print, ejects plain paper and nothing pending in the printer. I am running a Dell XP Pro, Adobe Reader 8.1.2, RAM-1G, and an HPDJ 6940 printer. Tried tech support with HP to no avail because everything else prints fine.
    I've even tried some of the suggestions of another thread using the Microsoft Utility to remove Adobe and then download it again with no success.
    Does anyone have a solution?

  • FJS-00012 ERROR while executing script in start SAP system

    Hi experts,
    I am getting error in the Oracle preload actions while installing the SAP 4.7 using the ORacle 9.2.0.1..
    FJS-00012  Error when executing script in start SAP system(post processing)
    My comp configuration is as follows:
    160 gb hard disk
    RAM 1GB
    OS: win 2003 server enterprise edition
    oracle 8.1.7
    During the Database Load (post processing) section of the
    installation, i get an error and the installation fails.
    I am giving all the logs here including the trace log and the
    Sapview.log file ans sapinst.
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: START OF LOG: 20070511002459
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#5 $ SAP
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: version R6.20/V1.2
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe -ctf I E:\db3\EXPORT3/DATA/SAPVIEW.STR C:\SAPinst ORACLE KERNEL/DDLORA.TPL C:\SAPinst ORACLE KERNEL/SAPVIEW.TSK ORA -l C:\SAPinst ORACLE KERNEL/SAPVIEW.log -o D
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: job completed
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: END OF LOG: 20070511002500
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: START OF LOG: 20070511070423
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#5 $ SAP
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: version R6.20/V1.2
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe -dbcodepage 1100 -i C:\SAPinst ORACLE KERNEL/SAPVIEW.cmd -l C:\SAPinst ORACLE KERNEL/SAPVIEW.log -stop_on_error
    DbSl Trace: Got ORACLE_HOME=D:\oracle\ora81 from environment
    DbSl Trace: Client NLS settings: AMERICAN_AMERICA.WE8DEC
    DbSl Trace: Logon as OPS$-user to get SAPESA's password
    DbSl Trace: Connecting as /@ESA on connection 0 ...
    DbSl Trace: Attaching to DB Server ESA (con_hdl=0,svchp=002BD418,svrhp=002BD224)
    DbSl Trace: Starting user session (con_hdl=0,svchp=002BD418,srvhp=002BD224,usrhp=00304E94)
    DbSl Trace: Now I'm connected to ORACLE
    DbSl Trace: ORA-1403 when accessing table SAPUSER
    DbSl Trace: Disconnecting from connection 0 ...
    DbSl Trace: Closing user session (con_hdl=0,svchp=002BD418,usrhp=00304E94)
    DbSl Trace: Now I'm disconnected from ORACLE
    DbSl Trace: Try to connect with default password
    DbSl Trace: Connecting as SAPESA/<pwd>@ESA on connection 0 ...
    DbSl Trace: Starting user session (con_hdl=0,svchp=002BD418,srvhp=002BD224,usrhp=00304E94)
    DbSl Trace: Now I'm connected to ORACLE
    DbSl Trace: Database NLS settings: AMERICAN_AMERICA.WE8DEC
    DbSl Trace: Database instance esa is running on MALTI with ORACLE version 8.1.7.4.1 since 20070511
    (DB) INFO: connected to DB
    (DB) INFO: /SAPTRX/A_CONDF4 created
    (DB) INFO: /SAPTRX/VDASFEV created
    (DB) INFO: /SAPTRX/VDASFPAR created
    (DB) INFO: /SAPTRX/VD_AOMIL created
    (DB) INFO: /SAPTRX/VD_AOPAC created
    (DB) INFO: /SAPTRX/VD_AOPAE created
    (DB) INFO: /SAPTRX/VD_AOPAI created
    (DB) INFO: /SAPTRX/VD_AOPAR created
    (DB) INFO: /SAPTRX/VD_AOTD1 created
    (DB) INFO: /SAPTRX/VD_AOTD2 created
    (DB) INFO: /SAPTRX/VD_AOTDD created
    (DB) INFO: /SAPTRX/VD_AOTYP created
    (DB) INFO: /SAPTRX/VD_ASPAR created
    (DB) INFO: /SAPTRX/VD_CONDL created
    (DB) INFO: /SAPTRX/V_AODD02 created
    (DB) INFO: /SAPTRX/V_DD03 created
    (DB) INFO: /SAPTRX/V_DD03X created
    (DB) INFO: /SDF/SMODICOMP created
    (DB) INFO: /SDF/SMODIDEVC created
    (DB) INFO: /SDF/UMOD_COMP created
    (DB) INFO: ACEPSOIT_UPD created
    (DB) INFO: ADJV_TRANS_DIF created
    (DB) INFO: AFFWV0 created
    (DB) INFO: AFKO_LAUFN created
    (DB) INFO: AFSPLIT created
    (DB) INFO: AFVCP created
    (DB) INFO: ALM_ME_T003O_IS created
    (DB) INFO: ALM_ME_T350I created
    (DB) INFO: ALM_ME_TQ80_T created
    (DB) INFO: ANEKPV created
    (DB) INFO: APOUPD created
    (DB) INFO: APPL_DEVC created
    (DB) INFO: APPL_DIAL created
    (DB) INFO: APPL_DOMA created
    (DB) INFO: APPL_DTEL created
    (DB) INFO: APPL_ENQU created
    (DB) INFO: APPL_FUGR created
    (DB) INFO: APPL_FUGRG created
    (DB) INFO: APPL_FUNC created
    (DB) INFO: APPL_INDX created
    (DB) INFO: APPL_MCOB created
    (DB) INFO: APPL_MENU created
    (DB) ERROR: DDL statement failed
    (CREATE VIEW "APPL_MODS" ( "NAME" , "TYP" , "MEMBER" , "DEVCLASS"  ) AS SELECT T0001."NAME", T0001."TYP", T0001."MEMBER", T0002."DEVCLASS" FROM "MODSAP" T0001, "MODSAPA" T0002 WHERE T0001."NAME" = T0002."NAME" AND T0002."MIGRATED" <> 'X')
    DbSlExecute: rc = 103
      (SQL error 942)
      error message returned by DbSl:
    ORA-00942: table or view does not exist
    DbSl Trace: Disconnecting from connection 0 ...
    DbSl Trace: Closing user session (con_hdl=0,svchp=002BD418,usrhp=00304E94)
    DbSl Trace: Detaching from DB Server (con_hdl=0,svchp=002BD418,srvhp=002BD224)
    DbSl Trace: Now I'm disconnected from ORACLE
    (DB) INFO: disconnected from DB
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    D:\usr\sap\ESA\SYS\exe\run/R3load.exe: END OF LOG: 20070511070433
    SAPINST
    INFO 2007-05-10 23:59:05
    Processing of host operation t_HostInfo_SHARED succeeded.
    INFO 2007-05-10 23:59:16
    The 'saploc' share exists at directory 'D:\usr\sap'. Choosing drive D: as SAP System drive.
    INFO 2007-05-10 23:59:21
    Copying file E:/KERNEL/NT/COMMON/OraVolatileDatabaseParameters.xml to: OraVolatileDatabaseParameters.xml.
    INFO 2007-05-10 23:59:21
    Creating file C:\SAPinst ORACLE KERNEL\OraVolatileDatabaseParameters.xml.
    INFO 2007-05-11 00:01:52
    Copying file E:/db1/EXPORT1/DB/ORA/DBSIZE.XML to: DBSIZE.XML.
    INFO 2007-05-11 00:01:52
    Creating file C:\SAPinst ORACLE KERNEL\DBSIZE.XML.
    INFO 2007-05-11 00:01:52
    Copying file system node E:\db1\EXPORT1/DB/ORA/DBSIZE.XML with type NODE to DBSIZE.XML succeeded.
    INFO 2007-05-11 00:01:52
    Processing of all file system node operations of table tORA_filecopy succeeded.
    INFO 2007-05-11 00:01:52
    Copying file E:/db1/EXPORT1/DB/DDLORA.TPL to: DDLORA.TPL.
    INFO 2007-05-11 00:01:52
    Creating file C:\SAPinst ORACLE KERNEL\DDLORA.TPL.
    INFO 2007-05-11 00:01:52
    Copying file system node E:\db1\EXPORT1/DB/DDLORA.TPL with type NODE to DDLORA.TPL succeeded.
    INFO 2007-05-11 00:01:52
    Processing of all file system node operations of table tORA_filecopy succeeded.
    INFO 2007-05-11 00:01:57
    Moving file C:/SAPinst ORACLE KERNEL/DDLORA.TPL to: orig_ddl_ora_tmp.tpl.
    INFO 2007-05-11 00:01:57
    Moving file C:/SAPinst ORACLE KERNEL/changed_ddl_ora_tmp.tpl to: DDLORA.TPL.
    INFO 2007-05-11 00:01:57
    Removing file C:/SAPinst ORACLE KERNEL/orig_ddl_ora_tmp.tpl.
    INFO 2007-05-11 00:03:00
    Package table created
    PHASE 2007-05-11 00:04:15
    SAP R/3 Enterprise 4.70 for Oracle
    PHASE 2007-05-11 00:04:15
    SAP Web Application Server
    PHASE 2007-05-11 00:04:15
    Request common parameters of SAP System
    PHASE 2007-05-11 00:04:15
    Create operating system accounts
    INFO 2007-05-11 00:04:15
    Copying file C:/SAPinst ORACLE KERNEL/keydb.xml to: C:/SAPinst ORACLE KERNEL/keydb.1.xml.
    INFO 2007-05-11 00:04:15
    Creating file C:\SAPinst ORACLE KERNEL\keydb.1.xml.
    INFO 2007-05-11 00:04:15
    Copying file C:/SAPinst ORACLE KERNEL/OraVolatileDatabaseParameters.xml to: C:/SAPinst ORACLE KERNEL/OraVolatileDatabaseParameters.1.xml.
    INFO 2007-05-11 00:04:15
    Creating file C:\SAPinst ORACLE KERNEL\OraVolatileDatabaseParameters.1.xml.
    INFO 2007-05-11 00:04:15
    Copying file C:/SAPinst ORACLE KERNEL/DBSIZE.XML to: C:/SAPinst ORACLE KERNEL/DBSIZE.1.XML.
    INFO 2007-05-11 00:04:15
    Creating file C:\SAPinst ORACLE KERNEL\DBSIZE.1.XML.
    INFO 2007-05-11 00:04:15
    Changing account ACCOUNTID=S-1-5-21-1488183395-3813774055-1856681103-1004 ACCOUNTNAME=malti\SAP_LocalAdmin ACCOUNTTYPE=GROUP DESCRIPTION=SAP Local Administration Group MEMBERSHIPSEPARATOR=, OPMODE=CREATE  succeeded.
    INFO 2007-05-11 00:04:15
    Changing account ACCOUNTID=S-1-5-21-1488183395-3813774055-1856681103-1005 ACCOUNTNAME=malti\SAP_ESA_LocalAdmin ACCOUNTTYPE=GROUP DESCRIPTION=SAP Local Administration Group MEMBERSHIPSEPARATOR=, OPMODE=CREATE  succeeded.
    INFO 2007-05-11 00:04:15
    Changing account ACCOUNTID=S-1-5-21-1488183395-3813774055-1856681103-1006 ACCOUNTNAME=malti\SAP_ESA_GlobalAdmin ACCOUNTTYPE=GROUP DESCRIPTION=SAP Global Administration Group MEMBERSHIPSEPARATOR=, OPMODE=CREATE  succeeded.
    INFO 2007-05-11 00:04:15
    Changing account ACCOUNTID=S-1-5-21-1488183395-3813774055-1856681103-1007 ACCOUNTNAME=ORA_ESA_DBA ACCOUNTTYPE=GROUP CONDITION=YES DESCRIPTION=Database Operator Group MEMBERSHIPSEPARATOR=, OPMODE=CREATE  succeeded.
    INFO 2007-05-11 00:04:15
    Changing account ACCOUNTID=S-1-5-21-1488183395-3813774055-1856681103-1008 ACCOUNTNAME=ORA_ESA_OPER ACCOUNTTYPE=GROUP CONDITION=YES DESCRIPTION=Database Administration Group MEMBERSHIPSEPARATOR=, OPMODE=CREATE  succeeded.
    INFO 2007-05-11 00:04:15
    Processing of all account operations of table t_SAPComponent_Accounts_Accounts_SHARED succeeded (operation CREATE).
    INFO 2007-05-11 00:04:18
    Changing account ACCOUNTID=S-1-5-21-1488183395-3813774055-1856681103-1009 ACCOUNTNAME=malti\esaadm ACCOUNTTYPE=USER DESCRIPTION=SAP System Administrator MEMBERSHIP=malti\SAP_ESA_GlobalAdmin,malti\Users,Administrators,ORA_ESA_DBA,ORA_ESA_OPER,malti\SAP_LocalAdmin,malti\SAP_ESA_LocalAdmin MEMBERSHIPSEPARATOR=, OPMODE=CREATE USERPASSWORD=*...  succeeded.
    INFO 2007-05-11 00:04:18
    Changing account ACCOUNTID=S-1-5-21-1488183395-3813774055-1856681103-1010 ACCOUNTNAME=malti\SAPServiceESA ACCOUNTTYPE=USER CONDITION=YES DESCRIPTION=SAP System Service Administrator MEMBERSHIP=malti\SAP_ESA_GlobalAdmin,Administrators,ORA_ESA_DBA,ORA_ESA_OPER,malti\SAP_LocalAdmin,malti\SAP_ESA_LocalAdmin MEMBERSHIPSEPARATOR=, OPMODE=CREATE USERPASSWORD=*...  succeeded.
    INFO 2007-05-11 00:04:18
    Processing of all account operations of table t_SAPComponent_Accounts_Accounts_SHARED succeeded (operation CREATE).
    PHASE 2007-05-11 00:04:18
    Request operating system user information
    PHASE 2007-05-11 00:04:18
    Request operating system user information
    PHASE 2007-05-11 00:04:18
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    PHASE 2007-05-11 00:04:19
    Request operating system user information
    INFO 2007-05-11 00:04:20
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'S-1-5-21-1488183395-3813774055-1856681103-500' on host 'malti'!
    INFO 2007-05-11 00:04:20
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'S-1-5-21-1488183395-3813774055-1856681103-500' on host 'malti'!
    INFO 2007-05-11 00:04:20
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'S-1-5-21-1488183395-3813774055-1856681103-500' on host 'malti'!
    INFO 2007-05-11 00:04:20
    Evaluating all 'tNT_RegistryEntries' table rows succeeded.
    INFO 2007-05-11 00:04:21
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-05-11 00:04:22
    Creating or updating all NT registry entries from the tNT_RegistryEntries table succeeded.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata6\esa_16 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata1\esa620_1.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata1\esa620_1 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata2\esa620_2.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata2\esa620_2 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata3\esa620_3.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata3\esa620_3 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata4\esa620_4.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata4\esa620_4 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata4\esa620_5.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata4\esa620_5 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata5\esa620_6.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata5\esa620_6 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata5\esa620_7.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata5\esa620_7 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata6\esa620_8.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata6\esa620_8 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata6\esa620_9.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata6\esa620_9 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata6\esausr_1.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata6\esausr_1 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata2\roll_1.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata2\roll_1 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata3\temp_1.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata3\temp_1 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Creating directory D:\oracle\ESA\sapdata1\system_1.
    INFO 2007-05-11 00:05:39
    Creating file system node D:\oracle\ESA/sapdata1\system_1 with type DIRECTORY succeeded.
    INFO 2007-05-11 00:05:39
    Processing of all file system node operations of table tORA_SapdataNodes succeeded.
    INFO 2007-05-11 00:05:40
    Processing of all file system node operations of table tORA_DatabaseServerNodes succeeded.
    INFO 2007-05-11 00:05:40
    Processing of all file system node operations of table tORA_SapdataNodes succeeded.
    INFO 2007-05-11 00:05:41
    Creating file D:\oracle\ora81\database\initESA.ora.
    INFO 2007-05-11 00:05:42
    Creating file D:\oracle\ora81\database\initESA.sap.
    INFO 2007-05-11 00:05:43
    Copying file E:/KERNEL/NT/COMMON/INSTALL/INITSID.DBA to: D:\oracle\ora81/database/initESA.dba.
    INFO 2007-05-11 00:05:43
    Creating file D:\oracle\ora81\database\initESA.dba.
    INFO 2007-05-11 00:05:44
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:05:45
    Moving file D:/oracle/ora81/database/initESA.ora to: orig_init_ora_tmp.txt.
    INFO 2007-05-11 00:05:45
    Moving file C:/SAPinst ORACLE KERNEL/changed_init_ora_tmp.txt to: D:\oracle\ora81\database\initESA.ora.
    INFO 2007-05-11 00:05:45
    Removing file C:/SAPinst ORACLE KERNEL/orig_init_ora_tmp.txt.
    INFO 2007-05-11 00:05:46
    Creating file C:\SAPinst ORACLE KERNEL\oradim.log.
    INFO 2007-05-11 00:05:51
    See 'D:\oracle\ora81/bin/oradim -new -sid ESA -STARTMODE auto' output in 'C:\SAPinst ORACLE KERNEL\oradim.log'.
    INFO 2007-05-11 00:05:51
    'D:\oracle\ora81/bin/oradim -new -sid ESA -STARTMODE auto' returned with '0'.
    INFO 2007-05-11 00:05:52
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:05:57
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:06:02
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:06:27
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:06:29
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:06:51
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:06:54
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:07:21
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:07:24
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:07:27
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:07:29
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:07:31
    Moving file D:/oracle/ora81/database/initESA.ora to: orig_init_ora_tmp.txt.
    INFO 2007-05-11 00:07:31
    Moving file C:/SAPinst ORACLE KERNEL/changed_init_ora_tmp.txt to: D:\oracle\ora81\database\initESA.ora.
    INFO 2007-05-11 00:07:31
    Removing file C:/SAPinst ORACLE KERNEL/orig_init_ora_tmp.txt.
    INFO 2007-05-11 00:07:32
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:07:34
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:08:09
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:08:12
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:08:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:08:50
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:09:26
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:09:29
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:10:04
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:10:06
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:10:42
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:10:44
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:11:20
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:11:22
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:11:57
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:12:00
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:12:35
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:12:37
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:13:13
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:13:15
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:13:51
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:13:53
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:14:29
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:14:31
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:15:09
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:15:11
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:15:48
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:15:50
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:16:26
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:16:28
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:17:04
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:17:07
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:17:43
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:17:45
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:18:22
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:18:24
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:19:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:19:03
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:19:39
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:19:42
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:20:21
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:20:24
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:21:02
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:21:05
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:21:43
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:21:45
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:22:24
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:22:27
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:23:06
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:23:08
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:23:47
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:23:50
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:23:54
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:23:56
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:12
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:15
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:41
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:43
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:46
    Moving file D:/oracle/ora81/database/initESA.ora to: orig_init_ora_tmp.txt.
    INFO 2007-05-11 00:24:46
    Moving file C:/SAPinst ORACLE KERNEL/changed_init_ora_tmp.txt to: D:\oracle\ora81\database\initESA.ora.
    INFO 2007-05-11 00:24:46
    Removing file C:/SAPinst ORACLE KERNEL/orig_init_ora_tmp.txt.
    INFO 2007-05-11 00:24:46
    Creating file C:\SAPinst ORACLE KERNEL\lsnrctl.log.
    INFO 2007-05-11 00:24:47
    See 'D:\oracle\ora81/bin/lsnrctl stat' output in 'C:\SAPinst ORACLE KERNEL\lsnrctl.log'.
    INFO 2007-05-11 00:24:47
    'D:\oracle\ora81/bin/lsnrctl stat' returned with '3'.
    INFO 2007-05-11 00:24:47
    Creating file C:\SAPinst ORACLE KERNEL\lsnrctl.log.
    INFO 2007-05-11 00:24:48
    See 'D:\oracle\ora81/bin/lsnrctl start' output in 'C:\SAPinst ORACLE KERNEL\lsnrctl.log'.
    INFO 2007-05-11 00:24:48
    'D:\oracle\ora81/bin/lsnrctl start' returned with '0'.
    INFO 2007-05-11 00:24:49
    Copying file E:/KERNEL/NT/COMMON/INSTALL/ORADBUSR.SQL to: ./oradbusr.sql.
    INFO 2007-05-11 00:24:49
    Creating file C:\SAPinst ORACLE KERNEL\oradbusr.sql.
    INFO 2007-05-11 00:24:49
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:52
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    PHASE 2007-05-11 00:24:54
    Database Load
    INFO 2007-05-11 00:24:56
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:57
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:57
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:58
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:58
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:24:59
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:25:00
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:25:00
    Task files created
    INFO 2007-05-11 00:25:00
    Command files created
    INFO 2007-05-11 00:25:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:25:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 00:25:01
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    ERROR 2007-05-11 02:18:03
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPAPPL1.log
    INFO 2007-05-11 02:18:03
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    ERROR 2007-05-11 02:44:07
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPSSEX2.log
    INFO 2007-05-11 02:44:07
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 03:55:07
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 04:25:07
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 04:42:08
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 04:47:08
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 04:55:22
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 04:57:22
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 04:59:22
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 05:01:22
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 05:03:22
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 05:04:23
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 05:05:23
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    INFO 2007-05-11 07:04:33
    Changed working directory to C:\SAPinst ORACLE KERNEL.
    ERROR 2007-05-11 07:04:33
    MSC-01015  Process finished with error(s), check log file C:\SAPinst ORACLE KERNEL/SAPVIEW.log
    ERROR 2007-05-11 07:04:33
    FJS-00012  Error when executing script.
    THANKS ALLL IN ADVANCE,
    Regards,
    Malti

    no space left on devices...
    ==> "<b>MOS-01109 Needed space on mountpoint F:/ is 5.248e07 KB, but got only 4.26433e07 KB.</b>"
    and others...
    -> provide more space and restart
    GreetZ, AH

  • 'JS Callback error while executing script' in 4.7

    hello everyone,
    When I was installing SAP 4.7 after the Database load jobs I am getting an error like ' JS Callback error while ecevuting script'.... Jobs are loading but after thatI was having this error... I tried several times but the error is the same... Can anyone plz help me out in this regard ?? If anyuone having scrreenshots of 4.7 installation plz help me...
    Byee

    m

  • I can no longer open excel documents in my doc to go app. Error message simple reads can not open attachment. And the attachment is now a winmail.dat

    I can no longer open excel documents in my doc to go app. Error message simple reads can not open attachment. And the attachment is now a winmail.dat

    winmail.dat files usually mean the email has been sent in rich text format - you could either the person who sent it to send it in a different format e.g. plain text or HTML, or there are a few apps in the store that support it (search for winmail.date in the store).
    winmail.dat files : http://support.apple.com/kb/TS1506

  • Could someone please sketch out this simple script for me?

    Could someone please sketch out a simple java script for me. I will have a document with one background
    layer and a layer set (group) called "Analyze" that consists of 63 adjustment layers. The layer names in that "Analyze" group(folder) will be
    "01" ...through "63" with 01 on the bottom and 63 at the top. Initially, all of the adjustment layers will be invisible and  the
    group will be closed (not expanded). I need a simple  script that will check for the first invisible layer in that group
    and make it visible without selecting that layer nor expanding the group. The script has to check
    for the first invisible layer every time it runs because other actions may have turned off a layer in the set.
    The point of this is so I can hotkey flipping on the layers one at a time without expanding the set or
    changing focus off the  background. It seems it should be a simple loop, but I just can't wrap  my head
    around all the objects (e.g. Layer as opposed to Layers  and  Artlayer as opposed to Artlayers)
    and the constants constants.
    for (i = 63; i>0; i--){                 /* I have found layer indexes 0 are the topmost layer */
      if( layerset[i] == INVISIBLE){
               layerset[i] = VISIBLE;
                  break;
    Could someone please write me a simple script that would do this?
    Edit I found this and its very close to what I need:
    var doc = app.activeDocument;
    for(var i = 0 ; i < doc.layers.length;i++){
      doc.layers[i].visible = (i % 2 == 0);
    From here : Function to show/hide layer with Photoshop script (JSX) - Stack Overflow
    In my case I would rewrite it to this
    for(var i = 62; i >=0; i--){
         if(  !doc.layers[i].visible){
              doc.layers[i].visible =TRUE;
              break;
    My problem is I just need  to traverse the layers in my layerset "Analyze"
    How do  I reference just those? Is there a doc.layersets["Analyze"].layers[i].visible = TRUE?
    Message was edited by: Shawn Laughlin To add more information

    Well this works:
    var doc = app.activeDocument;
    var analyze = doc.layerSets.getByName("Analyze").layers
    for(var i = 62 ; i >= 0; i --){
        if (!analyze[i].visible){
            analyze[i].visible =1;
            break;
    Hard to believe TRUE is not a constant in java.

  • Simple Script works on 10.6 but not 10.5.8

    Hi,
    Brand new to Applescript...I made a simple script (saved as an application) to rename Excel Sheet Tabs and it works on my MBP (10.6.2) however when I try sharing with other users (10.5.8), it fails to carry out properly. It opens a blank workbook rather than the "test.xls" workbook and won't go any further. Am thinking it might be due to:
    1) where the script and .xls file were originally created/saved?
    2) 10.6.2 vs. 10.5.8?
    3) method of sharing? Tried attaching to Mac OSX Server Wiki, NAS and e-mailing but still wouldn't work.
    here's the script-
    tell application "Microsoft Excel"
    try
    open workbook workbook file name "test.xls"
    activate object worksheet "names"
    set myRange to range "A2" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 3 to myName
    set myRange to range "A3" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 4 to myName
    set myRange to range "A4" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 5 to myName
    set myRange to range "A5" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 6 to myName
    set myRange to range "A6" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 7 to myName
    set myRange to range "A7" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 8 to myName
    set myRange to range "A8" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 9 to myName
    set myRange to range "A9" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 10 to myName
    set myRange to range "A10" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 11 to myName
    set myRange to range "A11" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 12 to myName
    end try
    end tell
    Any suggestions will be greatly appreciated! THANKS!

    more info:
    a co-worker with a MacBook (10.5.8) was able to download the script and .xls file from our server and it worked...
    An eMac (10.4.11) was not able to run the script.
    All machines are running 2008 Office for Mac

  • Launchd doesn't launch script on time

    I have a launchd configuration file that uses StartCalendarInterval to start an script at a given time (1 minute after midnight). Everything seems to work on my Mac Pro workstation, but on a Mac Mini web server (no keyboard, mouse, or monitor; firewall turned on; very quiet test network) launchd doesn't get around to running the program until very late -- today it was 5 hours late!
    Does anyone know why launchd would be so late at running a program? Is this a known possibility?

    The most obvious question is whether the clock on the system is correct or not?
    Second to that, what do the logs say? Did it try to launch at the correct time but some other factor stalled it for 5 hours? Or did it not launch at all?
    Third, what does the script do and how are you determining that it's running 5 hours late? In other words, if you're basing your 'late' statement on some action the script takes (e.g. emailing results, writing a file, etc.) then have you checked that there's not some earlier process that's taking 5 hours to execute and that's the cause of the delay, rather than launchd not executing the script on schedule?
    The logs, especially /var/log/system.log, should help determine these answers.

Maybe you are looking for