Maxl Script to Start and Stop Service

Hi All,
to stop essbase service i had used below  script in maxl  but it did not work
alter system shudown;
is there any script that  i want to stop Essbase services through MAXL  ?
is there any script i want to start essbase services through MAXL?
Thanks

Its as simple as this :
  alter system kill request all;
  alter system logout session all;
  alter system unload application all ;
  alter application 'App' disable connects;
Use all these when you are trying to Isolate the system from users .
But to answer your question Unload command is nothing but Stop , load is start !

Similar Messages

  • Batch file to start and stop services

    I've setup a CF Probe on my Development Server to ensure my
    CF Production server is up and running (services = Apache and CF
    Application Server). It checks the PROD login page and if it times
    out in 30 sec the probe fails. I understand I can execute a file
    (batch file with net start and net stop) but the problem is I need
    to have the probe somehow point to the .bat file on the PROD server
    and not on the local machine. How can I remotely access this batch
    file and execute it? I don't know how to point to the file on the
    other server... can anyone help?

    Hi Ken,
    You had pointed me in the right direction regarding the
    psstools in order to create a batch file that can remotely start
    and stop services.
    i used the psexec command and am able to successfully restart
    the services needed remotely... however when i pick the file in the
    coldfusion administrator (in the probes section) how to i point to
    the batch file to run? it seems like the probe is not running the
    script like i want... the file is located on the c:\ so i entered
    c:\test2.bat...
    Thanks,
    Matt
    Matt,
    You should review the online help in the cfadmin for probes
    and the links it points you to in the developer's guide. Basically
    you need to define a new probe in the cfadmin by clicking the
    "Define New Probe" button. One of the probe's attributes will be
    what action. Define the action as a program and point it at a batch
    file running psexec. You will probably need to run CFMX as a
    specific user and not as localsystem, which is the default.

  • Does Golden Gate provide any Webservices to start and stop services?

    Hi all,
    We are trying to use GG in our application. But we need a way to start and stop services from java code.
    Is there any Webservice interface or API to start and stop Golden gate services like GG manager, extract and replicat processes??
    Thanks in advance for your help.
    Yamini.

    You can control this at a database level using EVENTACTIONS parameter.
    Create a table at source & target called "EVENT" with field EVENT_TYPE ( example names only - please call it what you like ) .
    at Replicat config actions based on the data passed into the EVENT_TYPE column
    MAP GG_ADM.EVENT TARGET GG_ADM.EVENT, &
    FILTER ( (@STREQ(@IF(@COLTEST(EVENT_TYPE,PRESENT),EVENT_TYPE,"No EVENT"),"STOP") = 1)), &
    EVENTACTIONS (IGNORE , LOG,STOP);
    You'll need a seperate replicat to handle the start
    MAP GG_ADM.EVENT TARGET GG_ADM.EVENT, &
    FILTER ( (@STREQ(@IF(@COLTEST(EVENT_TYPE,PRESENT),EVENT_TYPE,"No EVENT"),"START_APP_02") = 1)), &
    EVENTACTIONS ((SHELL (${GG_HOME}/diroby/start.ksh R1APP_02 )));
    Hope that helps

  • Starting and stopping services of SAP and database

    pls tell what are the Starting and stopping services of SAP and database

    Hi Ranga,
    The services dealing with SAP and database(Ex: Oracle in this case) are:
    SAP<SID>_<Instance No.>  (For ex: SAPECC_01)
    SAPOsCol
    Oracle<SID><No>Listener
    OracleCSSservice
    OracleService<SID>
    Reward points if it is helpful##
    Thanks & Regards,
    Santhosh P
    Please change the status to answered if you got the solution...
    Message was edited by:
            Santhosh Kumar P

  • How to create a .exe script to start and stop Oracle EBS R12 in Linux

    Hello,
    I have installed Oracle EBS R12 in Linux enterprise through Virtual box on windows 7 professional. It takes a long time to start and stop EBS as I have to start and stop the scripts manually - can someone please help me with the following (I have tried searching the web and Oracle for help but have had no joy);
    Q1. I want to create a executable file in Linux so I can double click the file in Linux to start EBS automatically instead of going through each script manually
    Q2. I want to create a executable file in Linux so I can double click the file in Linux to stop EBS automatically instead of going through each script manually
    you help will be appreciated.
    Ali

    I have installed Oracle EBS R12 in Linux enterprise through Virtual box on windows 7 professional. It takes a long time to start and stop EBS as I have to start and stop the scripts manually - can someone please help me with the following (I have tried searching the web and Oracle for help but have had no joy);
    Q1. I want to create a executable file in Linux so I can double click the file in Linux to start EBS automatically instead of going through each script manually
    Q2. I want to create a executable file in Linux so I can double click the file in Linux to stop EBS automatically instead of going through each script manually
    you help will be appreciated.Please see these links.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Autostart+AND+Services&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Auto+AND+Start+AND+Services&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Managing Server Processes
    http://docs.oracle.com/cd/E18727_01/doc.121/e13675/T530130T530133.htm#5274555
    Thanks,
    Hussein

  • Windows script to start and stop jobserver only, with BOXI31

    hi,
    my question is easy but i have found nothing : on BOXI31
    how  to start and stop jobserver (adaptive...) automaticaly with windows script ?
    in tasklist command, jobserver have no services name...
    thank's

    In XI R2 you can stop & start job servers by their types, but in XI 3.1 I don't think you can do that, b'cos it doesnt list by server type just shows jobserver for crystal, webi & deski.
    Thanks,
    Hari

  • Starting and Stopping Services Based on Network

    Hi everyone,
    This is something I've been playing with and I'd like to share it with you and get your thoughts.
    The services I want to run at any given point depend on what network I'm attached to. For example, if I'm at home, I'll want avahi-daemon and cupsd started but I won't need iptables, since I'm behind my router's firewall. On the other hand if I'm at an internet cafe I need iptables but not the other two.
    What I've done is set up a script in /etc/NetworkManager/dispatch.d which starts services based on the UUID of each connection (extracted from that connection's file in /etc/NetworkManager/system-connections.
    I'm currently using the following script:
    #!/bin/bash
    IF=$1
    STATUS=$2
    function start_service {
    for i in "$@"
    do
    if [ `/usr/bin/systemctl show "$i".service | grep -c "ActiveState=inactive"`=1 ]
    then
    /usr/bin/systemctl start "$i".service
    fi
    done
    function stop_service {
    for i in "$@"
    do
    if [ `/usr/bin/systemctl show "$i".service | grep -c "ActiveState=active"`=1 ]
    then
    /usr/bin/systemctl stop "$i".service
    fi
    done
    if [ "$IF" = "wlan0" ] && [ "$STATUS" = "up" ]; then
    UUID=`nmcli --nocheck -t --fields UUID con status`
    case $UUID in
    f5320fcd-43e2-4cc1-ba1a-9606f66b5332)
    start_service avahi-daemon cupsd
    logger "M5DKQ (home network) up"
    5bfff3c5-c349-436b-953b-90de15c854d7)
    start_service iptables
    logger "EVO (4G hotspot) up"
    40d74743-f809-41ce-821c-71f9f40b8513)
    logger "GuestAccess (office guest network) up"
    start_service iptables
    logger "Starting cafe-specific services"
    esac
    fi
    if [ "$IF" = "wlan0" ] && [ "$STATUS" = "down" ]; then
    stop_service avahi-daemon cupsd iptables
    logger "Stopped location-specific services"
    logger "wlan0 down"
    fi
    Is there a better way to do this, like maybe a systemd custom target? Is there a cleaner way to script this?
    Thanks in advance,

    Hi Ranga,
    The services dealing with SAP and database(Ex: Oracle in this case) are:
    SAP<SID>_<Instance No.>  (For ex: SAPECC_01)
    SAPOsCol
    Oracle<SID><No>Listener
    OracleCSSservice
    OracleService<SID>
    Reward points if it is helpful##
    Thanks & Regards,
    Santhosh P
    Please change the status to answered if you got the solution...
    Message was edited by:
            Santhosh Kumar P

  • Script to start and stop screen sharing

    I've had no luck finding an applescript that will launch system preferences and select screen sharing in the sharing tab. I want to use this as a rule in Mail so I can open screen sharing and subsequently close after use with Jaadu on my iphone for only the time while I want to access my home computer.
    Is there anyone skilled at writing that for me?
    Thanks,
    Michelle

    You can do it on the command line but you have to have admin privileges
    sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -help
    kickstart -- Quickly uninstall, install, activate, configure, and/or restart
    components of Apple Remote Desktop without a reboot.
    kickstart -uninstall -files -settings -prefs
    -install -package <path>
    -deactivate
    -activate
    -configure -users <user1,user2...>
    -access -on -off
    -privs -all -none
    -DeleteFiles
    -ControlObserve
    -TextMessages
    -ShowObserve
    -OpenQuitApps
    -GenerateReports
    -RestartShutDown
    -SendFiles
    -ChangeSettings
    -ObserveOnly
    -mask <mask>
    -allowAccessFor
    -allUsers [-privs <priv options>]
    -specifiedUsers
    -computerinfo -set1 -1 <text>
    -set2 -2 <text>
    -set3 -3 <text>
    -set4 -4 <text>
    -clientopts
    -setmenuextra -menuextra yes
    -setdirlogins -dirlogins yes
    -setdirgroups -dirgroups ardadmin,ardinfo
    -setreqperm -reqperm no
    -setvnclegacy -vnclegacy yes
    -setvncpw -vncpw mynewpw
    -setwbem -wbem no
    -stop
    -restart -agent -console -menu
    -targetdisk <mountpoint>
    -verbose
    -quiet
    -help ## Show verbose documentation
    Examples:
    - Uninstall program files (but not preferences and settings), install the given package, and then restart the service.
    kickstart -uninstall -files -install -package RDAdminInstall.pkg -restart -console
    - Install the given package and then restart the ARD agent.
    kickstart -install -package RDClientInstall.pkg -restart -agent
    - On 10.4 and earlier, stop the Remote Management service but, if activated, it will start after the next computer restart.
    - On 10.5 and later, use kickstart -deactivate instead.
    kickstart -stop
    - Stop the Remote Management service and deactivate it so it will not start after the next computer restart.
    kickstart -deactivate -stop
    - Restart the agent.
    kickstart -restart -agent -console
    - Activate the Remote Management service and then restart the agent.
    kickstart -activate -restart -agent -console
    - Activate the Remote Management service, enable access, and restart the agent.
    kickstart -activate -configure -access -on -restart -agent
    - Disable user access.
    kickstart -configure -access -off
    - Give admin and bob all access.
    kickstart -configure -access -on -privs -all -users admin,bob
    - Use Directory Server accounts for authentication. Users must be a member of one of the directory
    - groups to authenticate.
    kickstart -configure -clientopts -setdirlogins -dirlogins yes -setdirgroups -dirgroups ardadmin,ardcontrol
    - Disable the Remote Management menu extra.
    kickstart -configure -clientopts -setmenuextra -menuextra no
    The following examples are only for Mac OS X 10.5 and later.
    - Allow access for only these users (the users must be specified in a separate command).
    kickstart -configure -allowAccessFor -specifiedUsers
    - Allow access for all users and give all users full access.
    kickstart -configure -allowAccessFor -allUsers -privs -all
    - Start the Remote Management service.
    kickstart -activate
    Version 0.9
    RUNNING FROM THE COMMAND LINE
    This script can be run like any UNIX tool from the command line or
    called from another script.
    Before starting:
    - Use this script at your own risk. Read it first and understand it.
    - Log in as an administrator (you must have sudo privileges)
    - Copy this script to any location you like (such as /usr/bin/local/)
    - Ensure this file has Unix line endings, or it won't run.
    Running:
    - Run the script using "sudo" (enter your password if prompted)
    sudo ./kickstart -restart -agent
    Command-line switches:
    The optional "parent" switches activate the top level kickstart features:
    -uninstall
    -install
    -deactivate
    -activate
    -configure
    -stop
    -restart
    These features can be selected independently, but will always be done
    in the order shown above.
    For anything interesting to happen, you must specify one or more of
    the parent options, plus one or more child options for those that
    require them. Child options will be ignored unless their parent
    option is also supplied.
    All options are switches (they take no arguments), except for -package
    <path> -users <userlist> and -mask <number>, as noted below.
    -uninstall ## Enable the "uninstall" options:
    -files ## Uninstall all ARD-related files
    -settings ## Remove access privileges in System Preferences
    -prefs ## Remove Remote Desktop administrator preferences
    -install ## Enable the "install" options:
    -package path ## Specify the path to an installer package to run
    -configure ## Enable the "configure" options:
    -users john,admin ## Specify users to set privs or access (default is all users)
    -activate ## Activate ARD agent in Sys Prefs to run at startup
    -deactivate ## Deactivate ARD agent in Sys Prefs to run at startup
    -access ## Set access for users:
    -on ## Grant access
    -off ## Deny access
    -privs ## Set the user's access privileges:
    -none ## Disable all privileges for specified user
    -all ## Grant all privileges (default)...
    ## ... or grant any these privileges...
    -DeleteFiles ##
    -ControlObserve ## Control AND observe (unless ObserveOnly is also specified)
    -TextMessages ## Send a text message
    -ShowObserve ## Show client when being observed or controlled
    -OpenQuitApps ## Open and quit aplicationns
    -GenerateReports ## Generate reports (and search hard drive)
    -RestartShutDown ##
    -SendFiles ## Send and/or retrieve files
    -ChangeSettings ## Change system settings
    -ObserveOnly ## Modify ControlObserve option to allow Observe mode only
    -mask number ## Specify "naprivs" mask numerically instead (advanced)
    -allowAccessFor ## Specify the Remote Management access mode
    -allUsers ## Grant access to all local users
    -specifiedUsers ## Only grant access to users with privileges
    -computerinfo ## Specify all four computer info fields (default for each is empty)
    -set1 -1 <text>
    -set2 -2 <text>
    -set3 -3 <text>
    -set4 -4 <text>
    -clientopts ## Allow specification of several opts.
    -setmenuextra -menuextra yes|no ## Set whether menu extra appears in menu bar
    -setdirlogins -dirlogins yes|no ## Set whether directory logins are allowed
    -setdirgroups -dirgroups grp1,grp2 ## Set directory groups allowed
    -setreqperm -reqperm yes|no ## Allow VNC guests to request permission
    -setvnclegacy -vnclegacy yes|no ## Allow VNC Legacy password mode
    -setvncpw -vncpw mynewpw ## Set VNC Legacy PW
    -setwbem -wbem yes|no ## Allow incoming WBEM requests over IP
    -stop ## Stop the agent and/or console program (N/A if targetdisk is not /)
    -restart ## Enable the "restart" options: (N/A if targetdisk is not /)
    -agent ## Restart the ARD Agent and helper
    -console ## Restart the console application
    -menu ## Restart the menu extra
    -targetdisk ## Disk on which to operate, specified as a mountpoint in
    ## the current filesystem. Defaults to the current boot volume: "/".
    ## NOTE: Disables the -restart options (does not affect currently
    ## running processes).
    -verbose ## Print (non-localizable) output from installer tool (if used)
    -quiet ## No feedback; just run.
    -help ## Print this extended help message
    ARD has four main components:
    1) ARD Helper
    2) ARD Agent & associated daemons
    3) ARD Menu Extra (controlled by the SystemUIServer)
    4) ARD Admin Console (if you have an Administrator license)
    What this script does:
    1) Any running ARD components will be stopped as needed. For example,
    they'll be stopped before an uninstall, reinstall, or restart
    request. They will not be restarted unless you specify the
    -restart options.
    2) Components will be restarted as required. For example, restarting
    the administrator console forces a restart of the agent.
    Restarting the agent, in turn, forces a restart of the helper.
    3) If you -uninstall but don't specify a new installer to run, then
    the -restart family of switches will be ignored.
    4) Options can be specified in any order, but remember that the
    options are ignored unless their parent options are specified. For
    example, -package is ignored unless -install is specified.
    RUNNING THIS SCRIPT FROM A GUI
    You can make yourself a GUI-based kickstarter program to run this
    script if you like. The options, set in the console, can be conveyed
    via environment variables to this script, per a spec shown in the
    source code for this script (or the traditional way using command-line
    switches). Be sure the console application runs this script with sudo
    privileges. The console should also specify its own location in the
    APP environment variable, and may specify the location of a
    STRINGS_FILE to use to load string definitions for any localizable
    messages produced by this script.
    A GUI console could stay up & running between runs of the script but
    should avoid running multiple instances of this script at the same
    time.
    WARNING
    This script can be used to grant very permissive incoming access
    permissions. Do not use the -activate and -configure features unless
    you know exactly what you're doing.

  • EHPI not able to start and stop services shadowsystem

    All,
    I am working on an installation of EHP4 but am running in the following issue:
    When I get to the phase SHDINST_OS the EHPI is not able to stop and start the service for the shadowsystem. The ehpi log gives:
    Phase SHDINST_OS:
    SAPehpi> Starting subprocess sapstartsrv.exe with id 7348 at 20100512081320
    Environment: JAVA_HOME=C:\Program Files\Java\jdk1.5.0_19
    Environment: PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
    Environment: Path=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files\Microsoft SQL Server\90\DTS\Binn\;F:\usr\sap\HRS\SYS\exe\uc\NTAMD64;F:\usr\sap\HRS\SYS\exe\nuc\NTAMD64
    Environment: auth_shadow_upgrade=0
    Environment: dbs_mss_schema=hrs
    Service not started.
    Process with ID 8132 terminated with status -1
    The EHPI gives:
    An error occurred during the installation of the
    SAP service SAPHRS_03:
    Possibly the password for user .\SAPServiceHRS entered in phase
    INITPUT was wrong. You can reset it by calling 'SAPehpi set stdpar'.
    Try to execute SAPSTARTSRV.EXE manually using the following syntax:
    G:\EHPI\abap\exe\sapstartsrv.exe -r
    -p G:\EHPI\abap\HRS\SYS\profile\START_DVEBMGS03_NLDBHRS01 -s HRS -n 03
    -U .\SAPServiceHRS -P <PASSWORD> -e NLDBHRS01\hrsadm
    and check if the service SAPHRS_03 can be stopped and restarted.
    When I follow up on the sapstartsrv first I can start/create it but that when I restart the EHPI it fails again on the same issue.
    Anybody any ideas?
    the passwords given in the EHPI are the ones of the SAPService user in the windows environment
    Chris

    Hi
    Have you tried below option as suggested in logs ?
    > Possibly the password for user .\SAPServiceHRS entered in phase
    > INITPUT was wrong. You can reset it by calling 'SAPehpi set stdpar'.
    > Try to execute SAPSTARTSRV.EXE manually using the following syntax:
    > G:\EHPI\abap\exe\sapstartsrv.exe -r
    > -p G:\EHPI\abap\HRS\SYS\profile\START_DVEBMGS03_NLDBHRS01 -s HRS -n 03
    > -U .\SAPServiceHRS -P <PASSWORD> -e NLDBHRS01\hrsadm
    > and check if the service SAPHRS_03 can be stopped and restarted.
    >
    Thanks
    Sunny

  • How to create services start and stop automation script for diff servers

    Hi All,
    i want to create a bat file for automation purpose to start and stop services
    i have some services in 1st server aand some in 2nd server and some in 3rd servers.
    has you all know i have to follow sequences to start and stop services can any help me in creating .bat by linking 3 servers fo starting and stoping services.
    Thanks in advance
    Regards
    SM

    Hi,
    this is the list of start oder for services in 11.1.2.1 from the Installation and Configuration Guide
    1. Databases for repositories.
    2. Any corporate user directories that you plan to configure for use with Shared Services.
    3. Foundation Services Managed Server application server, which includes Shared Services,
    and EPM Workspace.
    4. Reporting and Analysis Framework — Agent Service (if required for your environment)
    5. Reporting and Analysis Framework Application Server (if required for your environment)
    6. Web server
    The remaining services and processes can be started in any order:
    1. Performance Management Architect Services
    2. Performance Management Architect application server
    3. Performance Management Architect Data Synchronizer application server
    4. Essbase Server
    5. Administration Services application server
    284 Starting and Stopping EPM System Products
    6. Integration Services Server
    7. Essbase Studio Server
    8. Provider Services application server
    9. Financial Reporting Services
    10. Financial Reporting application server
    11. Web Analysis application server
    12. Calculation Manager application server
    13. Planning application server and the Hyperion RMI Registry
    14. Financial Management service
    15. Financial Management Web application server
    16. Strategic Finance service
    17. Performance Scorecard application server
    18. Performance Scorecard Alerter application server
    19. Profitability and Cost Management application server
    to start services on different servers you can use the sc command in your batch file
    for eg
    sc \\10.121.201.21 start HypS9FrameworkAgent

  • Script to auto start and stop an application

    Ok, I'm looking for an easy solution, maybe someone can point me in the right direction:
    I have a security camera program that runs on a Mac Mini that I would like to start and stop at a specific time of day. Is there an easy way to create an Applescript to do that?
    Thanks much in advance.

    Two scripts and iCal can do this for you. However, it assumes that your workstation is always logged into the Finder and that your app can be scripted beyond start and stop.
    --Script 1, launch application
    tell application "name of security app"
    activate
    -- do more stuff here like start capture
    end tell
    --Script 2, quit the application
    tell application "name of security app"
    quit
    end tell
    Save them both as scripts and then use iCal to make two repeating events. One to start the app and the other to stop it. Attach your scripts as event actions. Then sit back and let the iCal schedular the rest.

  • Starting and Stopping Repository Mgr Service

    Hello All,
    I am running Forte 3.0.D.0 on Windows NT 4.0. At night, I run batch files to backup and clean the repository.
    With previous versions of Forte (before 2.H) my scripts simply did an rpstop, rpcopy, rpclean and finally a rpstart to start the repository again. This worked great.
    Now, however, I am running the Repository Manager as an NT service, so I can no longer run rpstop or rpstart (rpstart does not start the Repository Manager service).
    One solution I have found is to use Net Stop and Net Start to stop and start the Repository Manager service, so my script looks something like this:
    rpcopy...
    net stop "Forte Repository Manager 3.0.D.0"
    rpclean...
    net start "Forte Repository Manager 3.0.D.0"
    This seems to work fine most of the time, but occasionally the service won't stop or start (like when a workspace is open). My questions are:
    1) Are there any other command line processes that people know of to start and stop a service?
    2) What is Forte's recommended process for starting and stopping the Repository Manager service in a script?
    Thanks for your help
    John Bruning
    IBIS Consulting Inc.
    www.ibis-consulting.com

    Your object could actually bind to a port using serverSocket.accecpt() and when a connection comes in, it exists.

  • Re: Starting and Stopping Repository Mgr Service

    John,
    Try this
    Shutdown 0
    from the Escript.
    Herman Magno
    Credit Lyonnais, NY
    Hello All,
    I am running Forte 3.0.D.0 on Windows NT 4.0. At night, I run batchfiles to backup and clean the repository.
    >>
    With previous versions of Forte (before 2.H) my scripts simply did anrpstop, rpcopy, rpclean and finally a rpstart to start the repository again.
    This worked great.
    >>
    Now, however, I am running the Repository Manager as an NT service, soI can no longer run rpstop or rpstart (rpstart does not start the Repository
    Manager service).
    >>
    One solution I have found is to use Net Stop and Net Start to stop andstart the Repository Manager service, so my script looks something like
    this:
    >>
    rpcopy...
    net stop "Forte Repository Manager 3.0.D.0"
    rpclean...
    net start "Forte Repository Manager 3.0.D.0"
    This seems to work fine most of the time, but occasionally the servicewon't stop or start (like when a workspace is open). My questions are:
    >>
    1) Are there any other command line processes that people knowof to start and stop a service?
    >>
    2) What is Forte's recommended process for starting andstopping the Repository Manager service in a script?
    >>
    >>
    Thanks for your help
    John Bruning
    IBIS Consulting Inc.
    www.ibis-consulting.com

    Your object could actually bind to a port using serverSocket.accecpt() and when a connection comes in, it exists.

  • Apple mobile device service started and stopped

    my iPod touch cant be synced or even recognized on my iTunes and it says i gotta *start the apple mobile device service*.
    i finally found it and it tells me that *"apple mobile device service started and stopped..."*
    how can i fix it?
    help!!!!

    Hello and Welcome to Apple Discussions. 
    Follow the instructions in this article:
    http://docs.info.apple.com/article.html?artnum=307078
    mrtotes

  • How to start and stop the BI Services in Solaris 10

    Hello All,
    Can anyone guide me on how to start and stop the BI Services in Solaris 10. In windows there are options set in Start->Programs->Middleware_Home->Start/Stop BI Services.
    Primarily after doing changes to the scheduler configuration, I need to restart the services to get it implemented? If yes how can I do it?
    Any help will be appreciated
    Thank you
    Ash
    Edited by: 902739 on Jan 11, 2012 12:17 PM

    Please help me by showing action plan for stop sap , offline backup and then start sap.
    i am little bit confuse How to start and stop SAP on cluster for offline backup
    Below are the systems name with host name , please explain me in sequence
    Systems name                                   Hostname
    # Hope SAP ERP Prod DB Primary       gsgbbux860
    # Hope SAP ERP Prod DB Standby      gsgbbux861
    # Hope SAP ERP Prod Cluster              gsgbbux862
    # Hope SAP ERP App 1                       gsgbbux864
    # Hope SAP ERP App 2                       gsgbbux865
    Thanks in advance
    Zaheer

Maybe you are looking for

  • How can I transfer pictures from my iPhone 5s to iphone 6

    I Cannot get my pictures to transfer to my new iPhone 6 when I from my old iPhone 5S. It usually always transfers everything when you sign in with your apple ID

  • Pages 5.2 resists change of color of text!?

    Frequently when I change the color of a text, Pages 5.2 will not allow me to revert to previous color or select a different color for a text. I have to quit Pages in order to regain this normal function.  Any other way (other than re-start computer)?

  • Sequential processing of messages with bpm process

    hi, i have a bpm process that i want to process my messages sequential. for this i initially have played around with crerating my own queue but that didn t work. then i mocved to use the collect pattern and then process the messages. this works only

  • How do I decrease the space before a footnote

    I cannot figure out how to decrease the amount of "leading" space before the footnotes begin.  The paragaraph before the footnote line has not ended, so cannot simply decrease the amount of space after that particular paragraph.  The answer must be p

  • How : Invoke asynchronous BPM process with callback within loop?

    Hi All, I'm currently using the 11g suite to create 2 BPM processes (Validate and Review). Process Validate is asynchronous and has a callback facility. I intend to invoke Validate from Review as a subprocess. My question would be, is it possible to