Can i login to essbase console by using command prompt

Hi All,
Is thr any possiblity to login in to essbase console by using command prompt
normally we login to console and will give credentails and login as same way can we do from command prompt??
Thanks in advance
Regards,
SM

Hello ,
You can check the login through the Essbase command utility.
go to command prompt . type - essmsh
then you will be able to see MaxL prompt
enter the command login username password;
you can use this utility to load data , import export running calc etc...
Thanks,
KKT

Similar Messages

  • Can't login Oracle BPEL console

    Oracle BPEL PM shows 2 errors:
    1、<2009-03-05 15:20:35,383> <ERROR> <default.collaxa.cube.engine> <DomainObserverRegistry::load> Failed to locate observer class oracle.tip.esb.configuration.deployment.bpel.BPELSvcDeploymentManager
    2、<2009-03-05 14:59:24,836> <ERROR> <collaxa> <ProcessJob::execute> Timed out reading http://pce-01:9700
    then i can't login Oracle BPEL console with domain "default" and default pwd "bpel".
    How can i solve this problem and login BPEL console ?

    For the errors :
    Oracle BPEL PM shows 2 errors:
    1、<2009-03-05 15:20:35,383> <ERROR> <default.collaxa.cube.engine> <DomainObserverRegistry::load> Failed to locate observer class oracle.tip.esb.configuration.deployment.bpel.BPELSvcDeploymentManager
    2、<2009-03-05 14:59:24,836> <ERROR> <collaxa> <ProcessJob::execute> Timed out reading http://pce-01:9700
    You may be having a have a DNS entry issue:
    http://pce-01:9700/BPELConsole
    Change on your workstation the hosts file; c\windows\system32\drivers\etc\hosts
    add the entry
    127.0.0.1 pce-01.<fully quaified domain name>
    127.0.0.1 pce-01
    Restart the SOA Suite.
    Also, regarding the BPEL Console login, generally by default its welcome1, unless you have given a different password at the time of installation when running the irca.sh scripts to create orabpel/oraesb/orawsm schemas.(for SOA Adv install). However, in SOA Basic install, they get installed in olite db, so welcome1 is generally the default password.
    Hope this helps!
    Regards
    Anirudh Pucha

  • Can any one tell me how to use Image Prompt

    Hi
    Can any one tell me how to use Image Prompt in Answers?
    Thanks
    Rahman

    Had a look at this already?
    http://download.oracle.com/docs/cd/E12103_01/books/AnyUser/AboutPrompts.html
    Cheers,
    C.

  • Running a Program in JDeveloper using Command Prompt

    Hi,
    I downoladed Oracle JDeveloper 10g. I had written a simple java class called Echo. java. I want to run the file using command prompt. My JDK has the following path:
    F:\Sowmya
    My java file has the following path:
    F:\Sowmya\jdev\mywork\1\1\src\pkg1
    So, in order to compile the file, I gave the following command:
    F:\Sowmya\jdk\bin>javac F:\Sowmya\jdev\mywork\1\1\src\pkg1\Echo.java
    It worked and the Echo.class file was created.
    But, when I tried to run the file using the following command,
    F:\Sowmya\jdk\bin>java F:\Sowmya\jdev\mywork\1\1\src\pkg1\Echo
    Iam getting the following error:
    Exception in thread "main" java.lang.NOClassDefFoundError: F:\Sowmya\jdev\mywork\1\1\src\pkg1\Echo
    This didnt work either:
    F:\Sowmya\jdk\bin>java F:\Sowmya\jdev\mywork\1\1\classes\pkg1\Echo
    Iam getting the same error.
    Can any one please help me regarding this.
    Thank you,
    Sowmya.

    Yes, my class contains a main. It runs if I click run in JDeveloper. But, there is no output displayed. The following is the code:
    public class Echo {
    public static void main (String[] args) {
    for (String s: args) {
    System.out.println(s);
    }

  • How to use addKeyListener in a program running using command prompt

    Does anyone have any idea how to add the addKeyListener to a program running using command prompt.
    Let me explain how the program run.
    The program is start and accept call from other program. But from time to time, I need to issue some command by pressing the keyboard, let say, ESC is closed the program, F1 is showing the stated. F2.... (This is all need to run in the command prompt windows)
    My problem is this program does not have any gui interface, so how can it be added?
    i do it this way
    public void key(){          
    addKeyListener(this);
    But it have compile error.
    mainServerImpl.java:87: cannot resolve symbol
    symbol : method addKeyListener (mainServerImpl)
    location: class mainServerImpl
    addKeyListener(this);
    I did implement KeyListener. But just don't know how to solve this error.
    can anyone tell me how to solve it or point me a source that can help.
    Thank in advance!
    Regards,
    Tai Tan

    Write your own Thread, to do this:
    public class KeyThread extends Thread {
       public void run {
          while(true) {
             int i = System.in.read();
             if(i == 123) {
                break; // to stop the thread
    // in your main:
    Thread keyThread = new KeyThread();
    keyThread.start(); // calls run() of the thread

  • How to compile & run using command prompt

    Hi all,
    I have a java application consisting of 3 packages & a jar file in the following hierarchy:
    -Project
    -classes
    -src
    -package1
    -package2
    -package3
    -file.jar
    The main class exists in package2 and uses classes within file.jar
    I want the steps to compile and execute the project using command prompt in windows such that the generated classes will be saved in the classes directory
    Can anyone help?
    Thanx in advance

    Hey,
    If your source(*.java) files are in src folder and ur currnet directory is project
    and you want all your class files to be classes folder then you can try this :
    c:\project>javac -cp src\file.jar -d classes\ src\*.javaAssuming that your file.jar file is in src folder.
    The above command will set the classpath to src\file.jar (-cp src\file.jar)
    -d classes\ - will generate all your class files with package hierarchy if any into classes directory.
    src\*.java - specifies the files to be compiled.
    Hope this helps.

  • Uninstalling bulk dll's from gac folder at one time using command prompt

    Hi All,
    I need to unistall bulk dll's at a time from the GAC folder using command prompt ,can any one suggest how to do this.

    Hi,
    1. Create a batch file as "Uninstall.bat".
    2. Edit this file and copy the below statements in it:
    gacutil.exe /uf DLL1
    gacutil.exe /uf DLL2
    gacutil.exe /uf DLL3
    gacutil.exe /uf DLL4
    gacutil.exe /uf DLL5
    replace DLL1 to DLL5 with your actual DLL names, which you want to uninstall.
    3. Open Visual Studio Command Prompt as Administrator.
    4. Browse to the location where you have placed the above batch file.
    5. Run the batch file.
    Hope this will help.
    HTH,
    Sumit
    Sumit Verma - MCTS BizTalk 2006/2010 - Please indicate "Mark as Answer" or "Mark as Helpful" if this post has answered the question

  • Using command prompt for help generating

    Hi all!
    Can I use command prompt for generating webhelp instead of
    RoboHelp HTML environment?
    thank you

    See this recent post.
    Click
    here.

  • Using command prompt with Java

    I am trying to use command prompt within a java program and I can't figure out how to enter commands from java. I know how to start up command prompt but can someone guide me on a way to actually enter commands into the command prompt? Thanks.

    The Java� Tutorial - Lesson: Basic I/O
    ~

  • How to run ODI scenario using command prompt

    Hi expets
    Please let me know if we can run ODI scenario using command prompt or any way other than operator.
    Regards
    Janakiram

    Go to <ODI_HOME>/oracledi/bin in command prompt and invoke startscen command with teh below parameters.
    Edited by: Guru Sankar on Feb 28, 2011 4:19 PM

  • How can we write the code for opening the command prompt and closing the

    how can we write the code in java for opening the command prompt and closing the cmd prompt from eclipse (cmd prompt should close when click on the turminate button in eclipse)

    rakeshsikha wrote:
    how can we write the code for opening the command prompt and closing theBy typing in Eclipse (which you seemingly have)?

  • Can you specify the RH version from a command prompt?

    When using command prompts to generate WebHelp output, is there a way to specify which version of Robohelp will be used?
    Here's the situation:
    We recently upgraded all of our help projects to RH8, installed RH8 on our software build server, and are now successfully using command prompts to generate RH8 output files (webhelp) during our s/w build process.
    However, since the help system for our last major release is still in RH7, we also need to be able to automatically generate output in RH7 using the same build server, which has both versions of the s/w are installed. This is in case we need to send out a patch release before our next major release becomes available.
    When we ran the build program for the last software release (the one with the RH7 help system), the command prompts now cause RH8 to run and to generate RH8 output. But since these files are still in RH7 format, the generated output has various issues with lists and templates--basically all the stuff that I spent 2-3 days fixing manually fix when upgrading to RH8.
    Anyone know how to control which Robohelp version will run when using command prompts? (using RH8 help files with the last software release is not an option--there have been too many changes).
    Thanks.

    I have a feeling that I once tried to change the default version of RoboHelp and it wasn't successful first time. As it was not that important, I didn't poke around any more.
    Maybe you could try changing the default version but I wouldn't like to answer for any undesired results you may get. I suspect by far the easier option is to install RH7 on another machine.
    One other warning. I do recall that on one machine after uninstalling RH7, I had to reinstall RH8 as it created problems.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Can't Login from Essbase Studio

    Hello Everyone,
    I am new to Essbase. I have successfully installed Essbase in Unix server. But when i tried to login from essbase studio which I have installed in windows. I got the following error from log files in the server.
    [ESSBASE0] [ERROR:32] [TCP-17] [] [ecid: 1361889277748,0] [tid: 1098848576] Network error: Timed out before receiving all data
    and I got following error in the client side
    Error Connecting to Essbase Studio Server
    Reason :
    Network Error
    ps: I can ping to the server and also login to Essbase Administration Services

    Hello John,
    I can also connect ./start_BPMS_bpms1_CommandLineClient.sh from command line in Unix server. But i couldn't connect from my studio console install in windows.
    I am getting the following error.
    Network communication with the server failed. Check your network connection and try again.
    Connection timed out: connect
    Help!!!
    Edited by: Khadka on Feb 28, 2013 9:34 PM

  • Can't Login to Netware 4 server using Client 3.4

    Hi,
    I have a small network with a dedicated server and two workstations
    connected using a linksys switch. The dedicated server is running
    netware 4.x (an old character based netware system). Both workstations
    have Windows 98 and log in to the server using Novell Intranetware 4.11
    software for Windows 95, which is several years old. Recently, I added a
    workstation and downloaded client 3.4 to use to access the server rather
    than install the Intranetware. It turns out that I can't get this
    workstation to log into the server using client 3.4. I get the login
    screen, but it reports it can't find a server or tree, even though I
    entered them correctly. Does anybody know why it won't access the server
    while the other workstations can?
    Thanks very much.

    On Sun, 10 Jul 2005 17:58:38 GMT, [email protected] wrote:
    >No, I didn't try installing it IPX only. Would I just reinstall the
    >client software and choose IPX? Also, what is the term frame type mean?
    It is a method for packaging data for transmital over IPX.
    >Where do I find out what frame type the computers have?
    At the console enter the command CONFIG. The displayed output will
    include the frame type. On the workstation, go into the Control
    Panel, Network, and find the NWLink IPX/SPX/NetBios Compatible
    Transport Protocol, and open its properties. Set the frame type to
    match the server. If more than one frame type was displayed on the
    server, use 808.2 if it is listed.
    >Is there any
    >other info I might need besides the login, server name, tree, and
    >context? This new workstation has Windows 98. In the Windows control
    >panel under network settings, what client should be installed? It gives
    >3 options.
    >
    > 1. Netware client 32 bit
    > 2. Netware client shell 4.x
    > 3. Netware client 3.x
    These option are for the Microsoft client for NetWare, which is not
    aware of NDS. Install the Novell Client for NetWare. Choose Custom
    install, IPX only.
    Donald Albury
    Novell Product Support Volunteer SysOp
    Sorry, no replies to e-mail responses
    "If something is so complicated that you can't
    explain it in 10 seconds, then it's probably not
    worth knowing anyway." Bill Waterson

  • I can not login to any mail accounts using my browser...

    I can not login in any of my mail accounts (e.g. yahoo, hotmail, gmail) using safari, google chrome even messengers. However, I can browse easily. Moreover, apple mail is not working either. I have tried to reset all my three accounts but my MacBook Air can not contact with Incoming or Outgoing server. Please, help me in solving the problem.

    Hi
    It is because you are putting the www. in front of each of them
    Try:
    http://mail.unnayan.org
    http://mail.yahoo.com
    http://mail.google.com
    http://mail.live.com
    That should work

Maybe you are looking for

  • ISE 1.3 Load Balancing

    Hello, I've got 4x ISE appliance, 2x Administration and 2x PSN 1 Administration primary / Monitoring secondary 2 Policy Service Node 3 Administration secondary / Monitoring Primary 4 Policy Service Node Both PSN's are in the same Node Group... ISE is

  • 39L1350U doesn't display in native resolution on HDMI input from PC

    Hello all, My 39L1350U won't use its native resolution (dot by dot) when I'm connecting a PC to its HDMI inputs.  The PC is outputting a true 1920x1080 resolution, which the TV recognizes.  For every picture size option, the image is either shrunk, w

  • Macbook air Safari close button issues

    I got my new Macbook Air in Sep 2011. Recently when I use Safari, open multiple tabs the close button on them disappears. Also, the Command Q is not working either. I am not using it in full screen mode. Sometimes scroll bar also does not work in Saf

  • HD movie on standard screen.

    I have done several movies in iMovies but when I play them on a standard television, some of the sides get cut off. Is there some way to change it to play on a standard tv without that happening? Thanks.

  • Mon mac reste bloquer sur la pomme et l'ecran et rayé blanc et bleu

    salut j'ai un imac intel core 2 duo 3,O6 GHZ , Mon mac ne depasse plus la pomme de demarrage et l'ecran et blanc et rayé bleu . j'ai deja essayé de faire cmd+opt+p+R. mais rien ne fait si vous pouvez m'aider cela serait tres gentil.