Job cannot run

Hello Sir or Madam,
I have a database of ERP system, sometime jobs of this database not run completely and broken status is Y (Yes), red mark has been set on. Although sessions of this database are not in Blocked status, I do not know why.
Pls you answer me, this is database of my company and I have controled it.
Van Le

You can look in your alert log to see why the jobs are failing. Alert log provides error messages for failing database jobs.

Similar Messages

  • Job cannot run  properly

    hi
    im developing a data warehouse for information system (IS). i've already finish develop it using OWB 9i. the problem i've is when i want to schedule a job, it cannot done properly which means the status are fail. i alwayz got error msg
    wb_module_run.tcl FAILED
    Oratxt = ORA-04068: existing state of packages has been discarded
    ORA-04063: package body "ISSQ_DW.TIME_MAPPING" has errors
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 23
    the validation of the package are valid
    and i also check for the solution in here but its still happens when i follow the troubleshoot.
    please help me
    one more is it the scheduling the job are for entering the data from database into data warehouse automatically?

    Hello fimine
    I recommend double checking that the remote server's folders that are not being seen by the px4 are infact shared from that remote machine.  If they are not, copy jobs will have problems accessing the folders.
    I also recommend trying to use the remote machine's ip address for now to see if there is any change in behavior.
    If the issue does not happen when using the ip address, it my be an issue with how your network's DNS is setup.
    LenovoEMC Contact Information is region specific. Please select the correct link then access the Contact Us at the top right:
    US and Canada: https://lenovo-na-en.custhelp.com/
    Latin America and Mexico: https://lenovo-la-es.custhelp.com/
    EU: https://lenovo-eu-en.custhelp.com/
    India/Asia Pacific: https://lenovo-ap-en.custhelp.com/
    http://support.lenovoemc.com/

  • Help! job scheduled in DB13 cannot run successfully

    Hi! I am a basis administrator of an automobil company.
    Job scheduled in DB13 in our PRD system cannot run successfully.
    We have Central instance(ci) and Database instance(db) installed on seperated hosts. We use SUN cluster 3.1 technology.
    The problem occurs after my college restarted the whole system accidentally. After that, all the job scheduled in DB13 report the same error,job log looks like:
    Job started
    Step 001 started (program RSDBAJOB, variant &0000000000192, user ID ***)
    No application server found on database host - rsh will be used
    Execute logical command BRCONNECT On host orahost
    Parameters: -u / -c -f check
    BR801I BRCONNECT 6.20 (113)
    BR252E Function fopen() failed for '/oracle/PR1/sapcheck/cduuoiij.chk' at location main-8
    BR253E errno 2: No such file or directory
    I manually type the 'rsh' command on ci to invoke 'brconnect' on db. It works all right. And I check the rfc destination 'SAPXPG_DBDEST_ORAHOST' in sm59 , it's normal. There is no gateway instance on database server.
    The parameter 'SAPDBHOST' = orahost (the database server is  called orahost)
    the parameter 'SAPLOCALHOST' = cihost(the central instance is located on cihost)
    Any suggestion is very appreciated.
    Thx!

    Hi Joe,
    DB13 will run only on application server as for that matter any SAP program. It will then connect to database at OS level. I mean you normal reports also fetch data from database for which they have to connect to DB  but they all run on application server. The problem is coming in connection to database through the application layer.
    Please again review the OSS notes sent by Sunil and me. I think a greater focus on Sunil`s notes should help you out.
    Regards.
    Ruchit.

  • DBMS_JOB.RUN: cannot run a job from a job

    I'm trying to set up a job to automatically run every October 1st. The "submit" part of this job is pretty simple, but I am getting some errors on the "run" part:
    declare
    job_nbr binary_integer;
    BEGIN
    dbms_job.submit(job => job_nbr,
              what => 'RESET_ORDER_NBR_SEQ;',
              next_date => to_date('10/1/2008', 'mm/dd/yyyy'),
              interval => 'add_months(sysdate,12)');
    dbms_job.run(job_nbr);
    COMMIT;
    END;
    When I run this script, I get the following error: "ORA-32317: cannot run a job from a job". I know this is due to the dbms_job.run because I don't get the error when I comment this line out. Also, even when I moved the dbms_job.run into its own script (and even hard-coded the job_nbr, so the dbms_job.run was the only line in the script), it still gave me the same error. This is working in SQL Developer when but not in Application Express. It seems to be something specific to the "run", since "submit" and "remove" work fine. Has anyone had any problems like this?

    MBETTIS,
    Rather than including dbms_job.run in your PL/SQL block, why don't you just schedule the job to run via next_date?
    Also, the interval will be computed after the job successfully executes. So if your job takes 5 minutes to run, the value of SYSDATE in your interval may "slide" after each execution. Consider using some form of TRUNC against the SYSDATE in your interval if you want to achieve a consistent execution time.
    Joel

  • HELP: scheduled jobs no run---searched a lot but still cannot resolve

    As for this problem, I have searched a lot by google, but I still cannot resolve it.
    I am using 11g on Linux.
    I delete all of jobs in my database.Then I configured a very simple periodic job as follows:
    begin
    DBMS_SCHEDULER.create_job (job_name => 'test2',
    program_name => 'test_program',
    repeat_interval => 'freq=secondly; INTERVAL= 4',
    auto_drop => FALSE);
    dbms_scheduler.set_attribute(name => 'test2',
    attribute => 'max_runs',
    VALUE => 100);
    dbms_scheduler.enable('test2');
    end;
    The program which the job is associated with is as follows:
    create or replace PROCEDURE TEST AS
    BEGIN
    INSERT INTO print_tab VALUES('come on');
    commit;
    END TEST;
    However the table is always empty and the job never runs, and the state shows "SCHEDULED".
    The facts are as follows:
    1. My database worked very fine until yesterday. This problem occurs suddenly.
    2. I also tried to reboot the system, but it did not work.
    3. I can manually run the job by DBMS_SCHEDULER.RUN_JOB('test2', TRUE);
    4 The process of CJQ, J0 are both running;
    5. the value of "job_queue_processess" is 10000, and also i changed it to other values, it did not work;
    6. the value of "MAX_JOB_SLAVE_PROCESSES" is 999.
    I really do not understand the reason. Who could you give me some guidance. If you need more diagnostic, please tell me how to get them. Great thanks.
    Message was edited by:
    KingMing

    There are many logs in      /u01/app/oracle/diag/rdbms/orcl/orcl/alert, which I checked from the manager console. Could you please help me take a look? Thanks
    r 22, 2008 8:16:47 PM EDT     UNKNOWN     16     
         Thread 1 advanced to log sequence 3114
    Apr 22, 2008 8:16:47 PM EDT     UNKNOWN     16     
         Current log# 3 seq# 3114 mem# 0: /u01/app/oracle/oradata/orcl/redo03.log
    Apr 22, 2008 8:16:46 PM EDT     UNKNOWN     16     
         Thread 1 cannot allocate new log, sequence 3114
    Apr 22, 2008 8:16:46 PM EDT     UNKNOWN     16     
         Private strand flush not complete
    Apr 22, 2008 8:16:46 PM EDT     UNKNOWN     16     
         Current log# 2 seq# 3113 mem# 0: /u01/app/oracle/oradata/orcl/redo02.log
    Apr 22, 2008 8:00:46 PM EDT     UNKNOWN     16     
         Thread 1 advanced to log sequence 3113
    Apr 22, 2008 8:00:46 PM EDT     UNKNOWN     16     
         Current log# 2 seq# 3113 mem# 0: /u01/app/oracle/oradata/orcl/redo02.log
    Apr 22, 2008 1:25:35 PM EDT     UNKNOWN     16     
         Thread 1 advanced to log sequence 3112
    Apr 22, 2008 1:25:35 PM EDT     UNKNOWN     16     
         Current log# 1 seq# 3112 mem# 0: /u01/app/oracle/oradata/orcl/redo01.log
    Apr 22, 2008 4:39:32 AM EDT     UNKNOWN     16     
         Thread 1 advanced to log sequence 3111
    Apr 22, 2008 4:39:32 AM EDT     UNKNOWN     16     
         Current log# 3 seq# 3111 mem# 0: /u01/app/oracle/oradata/orcl/redo03.log
    Apr 21, 2008 9:15:42 PM EDT     UNKNOWN     16     
         Thread 1 advanced to log sequence 3110
    Apr 21, 2008 9:15:42 PM EDT     UNKNOWN     16     
         Current log# 2 seq# 3110 mem# 0: /u01/app/oracle/oradata/orcl/redo02.log
    Apr 21, 2008 8:15:54 PM EDT     UNKNOWN     16     
         Thread 1 advanced to log sequence 3109
    Apr 21, 2008 8:15:54 PM EDT     UNKNOWN     16     
         Current log# 1 seq# 3109 mem# 0: /u01/app/oracle/oradata/orcl/redo01.log
    Apr 21, 2008 8:15:54 PM EDT     UNKNOWN     16     
         Thread 1 cannot allocate new log, sequence 3109
    Apr 21, 2008 8:15:54 PM EDT     UNKNOWN     16     
         Private strand flush not complete
    Apr 21, 2008 8:15:54 PM EDT     UNKNOWN     16     
         Current log# 3 seq# 3108 mem# 0: /u01/app/oracle/oradata/orcl/redo03.log
    Apr 21, 2008 3:19:00 PM EDT     NOTIFICATION     16     
         process start     ksbrdp:3527:3697353022     CJQ0 started with pid=39, OS id=8880
    Apr 21, 2008 3:19:00 PM EDT     NOTIFICATION     16     
         process start     ksbs1p_real:2133:2371767696     Starting background process CJQ0
    Apr 21, 2008 3:15:48 PM EDT     NOTIFICATION     16     
         admin_ddl     opiexe:2995:2802784106     Completed: ALTER DATABASE OPEN
    Apr 21, 2008 3:15:46 PM EDT     UNKNOWN     16     
         db_recovery_file_dest_size of 2048 MB is 0.00% used. This is a
    Apr 21, 2008 3:15:46 PM EDT     UNKNOWN     16     
         user-specified limit on the amount of space that will be used by this
    Apr 21, 2008 3:15:46 PM EDT     UNKNOWN     16     
         database for recovery-related files, and does not reflect the amount of
    Apr 21, 2008 3:15:46 PM EDT     UNKNOWN     16     
         space available in the underlying filesystem or ASM diskgroup.

  • Cannot run procedue with UTL_FILE as an Oracle job

    I have a simple stored procedure in a 10gR2 db which will open a file to write and write a line of text using UTL_FILE. I can run the procedure manually from Toad or SQLPlus successfully. If I create a job to run the stored procedure it will work if I run the job manually but if I let the job auto execute I get the following errors:
    ORA-12012: error on auto execute of job 1065
    ORA-29283: invalid file operation
    ORA-06512: at "SYS.UTL_FILE", line 475
    ORA-29283: invalid file operation
    ORA-06512: at "LEADMIN.PRC_SAMPLE_BATCH2", line 16
    ORA-06512: at line 1
    My procedure:
    CREATE OR REPLACE PROCEDURE LEADMIN.prc_sample_batch2
    IS
    CURSOR c1 IS
    SELECT directory_path
    FROM all_directories
    WHERE directory_name='TEST_LOG';
    l_file utl_file.file_type;
    l_path VARCHAR2(600);
    l_filename VARCHAR2(20) := 'samplebtch.2.txt';
    BEGIN
    open c1;
    fetch c1 into l_path;
    close c1;
    l_file:=utl_file.fopen(l_path,l_filename,'w');
    utl_file.put_line(l_file,'Testing Message'||SYSDATE||chr(10));
    utl_file.fclose(l_file);
    END;
    The Oracle Directories have been defined and work. All permissions have been checked and again the procedure works if you manually execute it.
    This worked in the database in the past but now it will not work. Jobs running procedures not using UTL_FILE run successfully.
    Has anyone seen this before?

    Yes I did with the same results. I can run the procedure manually successfully. I can create a job under the same user, run the job manually successfully but if I let the job auto execute it fails with the same errors.

  • Cron job not running - script uses rsync, ssh (with id_rsa)

    Does anyone know how to get cron to run a rsync/ssh script which uses id_rsa for passwordless logins?
    I have a backup script I have slaved for months over that works wonderfully when running it from the command line.
    It uses rsync and connects with SSH (passwordless using ssh keys). I have setup id_rsa and id_rsa.pub for passwordless logins (this is my user account, and connects using root@ to the server)
    As stated all works find when run from the command line. But when I setup a cron job to run this file (exact same line I run from the command line) it does not execute. Actually, it does run, as I have an email notifiction which sends to me. It is just the rsync/ssh part that does not run.
    I have spent days and days trying to figure it out. No error messages occur, nothing.  Took me a while to find out cron is emailing the user account on Lion the messages (not to a proper email address).
    The error shows a permission denied, which I believe to be the cron user cannot use the id_rsa/ssh connection.
    Cron is running the script as my user, the same I use on the command line. I even tried copying the id_rsa to the root user .ssh folder in case cron is running as root but that does not work either.
    So does anyone know how to get cron to run this rsync/ssh script which used id_rsa for passwordless logins?
    Thanks a lot

    YES! Got it working, finally!
    So the issue is indeed cron/launchd not being able to access the ssh-agent which holds the key.
    So this is the solution...
    Download keychain for Mac:
    http://www.funtoo.org/wiki/Keychain
    Then once its installed and configured, the script to run needs this added to the top:
    eval `keychain --noask --eval id_rsa` || exit 1
    Note I am using id_rsa whereas keychains instructions refer to id_dsa so I just changed it and it works OK.
    When the script runs the first time it asks for the key password. Then it works from then on.
    What I do not know yet is will I need to re-enter the password when I logoff/logon again. That will cause an issue as I auto restart the Mac every day which means if I am off for a few days backup will stop (can you see the madness in this issue!).

  • An unexpected error occurred while the job was running. (ID 104 Details: The parameter is incorrect (0x80070057))

    We are using DPM Version: 4.1.3465.0 with System Center 2012 Service Pack 1 to back up VMs in our Hyper V Cluster. We have a total of 37 VMs with a combination of 2008r2 servers and 2012 servers. One of our 2012 servers will not backup, and we consistently
    get the message "An unexpected error occurred while the job was running. (ID 104 Details: The parameter is incorrect (0x80070057))". I have seen this error message when I Googled it, but cannot get past it. I have deleted the Protection Group and
    data and tried to re-create, but get the same errors. I also thought the the server might be mis-reporting the data size, but I expanded that to cover the replication data. I have also tried to perform consistancy checks multiple times with no luck. I have
    not seen a difinitive answer from my Google searches, so was hopeful someone has seen this also, and have had success in resolving. Currently this server has no backup recovery points, so I am worried if it does crash. I think I have the rollups installed
    as well.

    Hi Kelly,
    does the issue still persists?

  • HOW TO SCHEDULE A JOB TO RUN EVERY 30 MINS WITHOUT USING SCHEDULAR?

    Hi,
    I have a requirement where i need to schedule the job to run every 30 mins for 10 am to 10 pm. I ran into problems using odi schedular. Let me tell you what i did..
    i have chosen the active mode between 10 am to 10 pm
    selected on startup/simple.
    and on the repetitions tab selected many times with 30 mins duration.
    the problem was-----
    a)it was not stopping at 10 pm but continues after 10 pm
    b)randomly picking up more times than the 1/2 hour duration.
    looking for---
    a solution that runs my scenario every 30 mins from 10 am to 10 pm without using the schedular...which i cannot trust.
    Regards
    Venkat

    Venkat,
    Here is an alternate solution that i can think of:
    create a package with the following components:
    Variable(Refresh) -> OK -> Execute StartScen(YourJob) in Asynchronous mode -> odiSleep(30 mins) -> Loop to Variable Refresh
    Variable (Refresh) -> KO -> odiSleep(30 mins) {if the refresh of the variable fails to get any value then skip the Job execution}
    The Refresh query should be
    select 1 from dual where to_char(sysdate, 'hh24mi') between  '1000' and '2200'

  • Error while executing the Job:Cannot assign NULL to host variable 1

    Hello!
    I have the following issue:
    Error while executing the Job:Cannot assign NULL to host variable 1. setNull() can only be used if the corresponding column is nullable. The statement is "INSERT INTO "VIRSA_... (see log for details)
    Note 1362138 - Rule generation - null pointer exception virsa_cc_rtmap  doesn't me. After uploading files of ZCC_DOWNLOAD_SAPOBJ and ZCC_DOWNLOAD_DESC I got the same problem during job running...
    How can I find out where is the problem?

    Hi
    That looks like your fields are disabled but they could still be causing the problem edited ( nah - talking rubbish as you've put dummy " " in there) edited - the 'null' error caused many background jobs to fail but, once we had the evidence to show the space (somebody had pressed enter instead of delete/backspace to clear the entry) it stopped the problem - just a bit of learning on the job which we all go through for the GRC chaps in KL.
    A " " would be valid but a    (I know you can't see it but it's there wouldn't be      )
    edited.When you did an edit/replace did it say it had replaced anything please?edited
    The word doc option does sound good!
    Cheers
    David
    Edited by: David Berry on Nov 4, 2010 7:33 PM

  • CS4 install problem "you cannot run...architecture not supported" error

    Just received my copy of CS4 (Mac) from amazon.com. Installed it. But could not get it to run. Got a "You cannot run....architecture not supported" error message. Can't understand why? This is my first version of Photoshop CS. Didn't install CS3...etc. Nor did I previously install the "master" edition. And I am running a MBP 2.5GHz laptop. So it has to be software related. A corrupt file perhaps?
    I also cannot install Adobe AIR. Suddenly 3 windows pop up. Telling me I can't install AIR.
    Not happy. Expensive software not running. Not good. :P What gives???
    Please help me soon!

    Where were you yesterday Buko?? :) Where would one find the "CS4 Cleanscript" any how? Would have been nice if you provided a link. Heh...
    Any how. Last night. I did d/l the trial version of CS4 Extended. Installed it. Then read the READ.ME file. Stresses that you MUST use their uninstall program. That you can't simply drag the folder to the TRASH (or use AppDelete or AppZapper...as you would be doing the same thing pretty much). So, I used Adobe's CS4 uninstaller. Did a very thorough job of removing the right files.
    I managed to sucessfully install my copy of CS4. I even got the proper SETUP dialogue box this time (6 tabs). Previously only 3 tabs were visible. This one asks you to input your serial # and even register before you finish.
    Now I see the blue PS folder icon. Have copied a few PS program icons to my dock. Working now as it should.
    Moral of the story? Read the READ.ME file!! And use proprietary uninstall programs for huge complicated programs like PS CS4. :) Later guys.

  • Missing required files (cannot run iTunes)

    Hey guys, every time I finish installing iTunes and try to open it, I get an error saying "iTunes cannot run because some of its required files are missing. Please reinstall iTunes"
    I've un-install/re-installed/fixed iTunes but the same error message appears whenever I try to access iTunes (as a result of iTunes not being able to work, iPod acts like a regular flash drive; i.e. plug in, and it'll open folder, not iTunes)
    I've tried looking around for some sort of quick fix, but nothing covers my situation (and I've tried other fixes not for my particular case, but they don't work either)
    Any help/input is appreciated.

    This is kind of irritating; is there a proper support center or something whom I could contact and get feedback on this issue?
    Your iPod allows you "one complimentary support incident, which must be used within the first 90 days of product ownership." You say you've had your iPod for a month but I'd suggest you hold off using the freebie for a little while and see if we can figure something out here. For a couple of reasons: One, you'll have the complimentary incident available for another couple of months ... just in case ... and two, I don't know if they'd come up with a solution right off the bat.
    For the time being can you try running just QuickTime - which iTunes make use of in doing its job - on your computer and let us know how that goes. If it fails to start, report any error messages you get.
    Also, you might want to run through the General Installation Troubleshooting section of this article in the Apple Knowledge Base.

  • An unexpected error occurred while the job was running. (ID: 104)

    I'm getting this error in the event logs when trying to run a consistency check / sync with one of our file servers.
    This server was working fine, but w needed to migrate the data to a new partition (GPT) to allow it to expand past the 2TB limit of MBR partitions.  I added a new 3TB disk migrated the data and changed the drive letter to what the old partition was
    prior.  Since then we seem to get this error.
    I have installed the update roll up on both the server and the agent side.  I have also removed the server from the protection group then re-added it.  I've also removed and reinstalled the agent on the file server.
    Any help is appreciated!  Here's the full error from the DPM server:
    The replica of E:\ on server is inconsistent with the protected data source. All protection activities for data source will fail until the replica is synchronized with consistency check. (ID: 3106)
    An unexpected error occurred while the job was running. (ID: 104)

    Server Version is Windows 2012 R2 STD.  DPM is 4.2.1235.0 (DPM 2012 R2).  I expanded the production file server.  All that server does is host up file shares.
    I suspected the fact that I created a new volume and changed drive letter back to the original to be the source cause of the issue.  What I ended up doing is blowing away the backups from this server on disk and re-adding it to the protection group. 
    It now runs much longer, but still times out at random with the error mentioned above.
    Vijay:  The error was copied from Event Viewer.  Not sure what else you require?  Event ID is 3106 from DPM-EM.
    The DPM logs say:
    Affected area: E:\
    Occurred since: 2015-01-05 2:04:38 AM
    Description: The replica of Volume E:\ on servername is inconsistent with the protected data source. All protection activities for data source will fail until the replica is synchronized with consistency check. You can recover data from existing recovery
    points, but new recovery points cannot be created until the replica is consistent.
    For SharePoint farm, recovery points will continue getting created with the databases that are consistent. To backup inconsistent databases, run a consistency check on the farm. (ID 3106)
     An unexpected error occurred while the job was running. (ID 104 Details: The semaphore timeout period has expired (0x80070079))
    Date inactivated: 2015-01-05 7:03:04 AM
    Recommended action: No action is required because this alert is inactive.
    Affected area: E:\
    Occurred since: 2015-01-05 2:04:38 AM
    Description: The replica of Volume E:\ on servername is inconsistent with the protected data source. All protection activities for data source will fail until the replica is synchronized with consistency check. You can recover data from existing
    recovery points, but new recovery points cannot be created until the replica is consistent.
    For SharePoint farm, recovery points will continue getting created with the databases that are consistent. To backup inconsistent databases, run a consistency check on the farm. (ID 3106)
     An unexpected error occurred while the job was running. (ID 104 Details: The semaphore timeout period has expired (0x80070079))

  • Cannot run the JNI application in debug mode in eclipse

    Hi ,
    I have created a C++/Java project in Eclipse on windows XP.
    I can run the app. but I cannot debug it. I get the following error.
    Failed to connect to remote VM. Connection refused.
    java.net.ConnectException: Connection refused: connect
    java.net.PlainSocketImpl.socketConnect(Native Method)
    java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
    java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
    java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
    java.net.Socket.connect(Socket.java:452)
    java.net.Socket.connect(Socket.java:402)
    java.net.Socket.<init>(Socket.java:309)
    java.net.Socket.<init>(Socket.java:124)
    org.eclipse.jdi.internal.connect.SocketTransportImpl.attach(SocketTransportImpl.java:47)
    org.eclipse.jdi.internal.connect.SocketAttachingConnectorImpl.attach(SocketAttachingConnectorImpl.java:103)
    org.eclipse.jdt.internal.launching.SocketAttachConnector.connect(SocketAttachConnector.java:131)
    org.eclipse.jdt.internal.launching.JavaRemoteApplicationLaunchConfigurationDelegate.launch(JavaRemoteApplicationLaunchConfigurationDelegate.java:75)
    org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:569)
    org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:788)
    org.eclipse.debug.internal.ui.DebugUIPlugin$6.run(DebugUIPlugin.java:955)
    org.eclipse.core.internal.jobs.Worker.run(Worker.java:66)
    I compiled my C program with :
         options[0].optionString = "-Xdebug";
         options[1].optionString = "-Xnoagent";
         options[2].optionString = "-Djava.compiler=NONE";
         options[3].optionString = "-Djava.class.path=.";
         options[4].optionString = "-Xrunjdwp:transport=dt_socket,address=8888,server=y,suspend=y";
    In the debug window in eclipse i have created a new config. under remote java application. I have set the connect tab = myproject.
    Connection type = Standard(socket attach) and connection properties: host = localhost , port=8888.
    Any help?

    It looks like you are doing basically the same thing as we are doing, and it seems to work for us. Do you see a message from the JVM that says:
    Listening for transport dt_socket at address: 8888
    The one strange thing that we are seeing is if we throw an exception in Java and clear it in C++ (using ExceptionClear) the subsequent entry into the eclipse debug session behaves very strange.
    Anyway, here is what we are doing:
    J2SE 5.0
    Eclipse Version: 3.1.0 Build id: I20050401-1645
    jvmOptions[0].optionString = "-Djava.compiler=NONE";
    jvmOptions[1].optionString = (char *)classPath.c_str();
    jvmOptions[2].optionString = "-Xdebug";
    jvmOptions[3].optionString = "-Xnoagent";
    jvmOptions[4].optionString = "-Xrunjdwp:transport=dt_socket,address=8888,server=y,suspend=n";
    jvmOptions[5].optionString = "-verbose:jni";
    memset(&vm_args, 0, sizeof(vm_args));
    vm_args.version = JNI_VERSION_1_4;
    vm_args.nOptions = JNI_ARG_SIZE;
    vm_args.options = jvmOptions;
    vm_args.ignoreUnrecognized = JNI_TRUE;
    The eclipse remote java application is the same as your:
    Connection type = Standard(socket attach)
    Connection properties: host = localhost , port=8888.

  • Cannot run a UNICODE kernel against a non-UTF8 database

    Hi,
    I am trying to install SAP ECC 6.0 SR2 . am using  windows 2003 server oracle 10g db.
    please help me how to resolve this...
    sapparam: sapargv( argc, argv) has not been called.
    sapparam(1c): No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    D:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: START OF LOG: 20100717144107
    D:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    D:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled Jul 17 2007 01:28:45
    D:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe -testconnect
    DbSl Trace: ORA-1403 when accessing table SAPUSER
    DbSl Trace: Cannot run a UNICODE kernel against a non-UTF8 database (charset = AL32UTF8)
    (DB) ERROR: db_connect rc = 256
    DbSl Trace: Default conn.: already connected to DEV
    (DB) ERROR: DbSlErrorMsg rc = 29
    D:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: job finished with 1 error(s)
    D:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: END OF LOG: 20100717144108

    Reinstallae the server .problem solved thanks to 3everyone

Maybe you are looking for

  • I have music on one computer but need to move to another

    I am sure this has been asked several times but I have not been able to find a concrete answer. I have two laptops. The original one has tons of songs that have not been purchased through itunes but instead downloaded from CD's and an Itunes account

  • How do i know what is the latest version of PeopleSoft Enterprise Portal?

    Hi, I would like to know what is the latest version of PeopleSoft Enterprise Portal. The problem is we want to upgrade our current Portal to the latest one.Also i want to know if the version has a Release Value Proposition. Thanks, Sriram

  • URGENT: Certification Question

    Hi there - we are running a Certification program that has a Due Date of today (September 5, 2008). Will users still be able to access the course through the certification link after today or will it shut down completely? Do I need to extend the dead

  • What is layer_quantity in cst_quantity_layers

    Hi, I need to know is layer_quantity in cst_quantity_layers represent the current OH or Qty get costed (exists in MTA) or something else? Regards Emad

  • Yes or no????????

    is it really best yet to get a new ipod ,because I lost my old one?