Using a Table Trigger to Trap Error Codes Returned to a SQL Loader seeion

I would be grateful if anyone knows how to go about this.
I am trying to insert into a table, details of SQL Loader's rejected records by possibly using a trigger on the loading table to try and trap the error code returned to SQL Loader.
What I am trying to achieve is to insert in to a table the load or rejected record details that are in SQL Loader’s log file after a load session. For example: records read:, records inserted:, records rejected:...etc..
My main concern is that the loading table is regularly loaded, with 3m records, has 90 columns, and to check by referencing each column's new value, in the table trigger, may mean very long load times.
Anyone got any “how to” ideas?
Many thanks
Regards
Carlos

Folks, thanks for your help.
Previously, I had briefly considered both ideas and they would work.
I dismissed the utl_file package solution because I believed that it would take too long to read in each log file line, search for the text and then inserts it into a table.
I overlooked testing this and when I did (1mb file) it actually was pretty fast. I will go that route.
Thanks for everyone’s help
regards
Carlos

Similar Messages

  • Oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters

    Dear Guru's,
    I am not able to solve the above issue for last couple of days.
    I am newbie to the webservice
    My Issue...
    I am using Jdeveloper 11.1.2.4.0 Release 2
    1. Using Jdev I built one small Web Service with two methods.
            While testing the Webservice...
                   I passed User Id as Parameter and it successfully return the values (user id, user name and description) from fnd_user table
    2. I created another application to consume the web service i created.
                   1. I added the webservice SOAP and added the method.
                   2. Created a jsf page and drag and drop the parameter and return values to the jsf page.
    3. While executing the created jsf page I received the error message as below
    "oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters are {0=Attribute, 1=UserName, 2=UserName}"
    Even I know that this issue is repeated one in our forum, I was not able to solve this issue.
    Can anybody help to solve this issue.
    Thanks and Regards,
    Durai S E

    Dear Guru's,
    I am not able to solve the above issue for last couple of days.
    I am newbie to the webservice
    My Issue...
    I am using Jdeveloper 11.1.2.4.0 Release 2
    1. Using Jdev I built one small Web Service with two methods.
            While testing the Webservice...
                   I passed User Id as Parameter and it successfully return the values (user id, user name and description) from fnd_user table
    2. I created another application to consume the web service i created.
                   1. I added the webservice SOAP and added the method.
                   2. Created a jsf page and drag and drop the parameter and return values to the jsf page.
    3. While executing the created jsf page I received the error message as below
    "oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters are {0=Attribute, 1=UserName, 2=UserName}"
    Even I know that this issue is repeated one in our forum, I was not able to solve this issue.
    Can anybody help to solve this issue.
    Thanks and Regards,
    Durai S E

  • Internal Table with Oracle's Error Codes

    Hi,
    Is there any internal table where is stored every oracle error code with it's Cause, Action and all the other similar stuff?
    Att,

    For a table of all "ORA-" error codes and messages, you could do something like:
    <BR>
    create type t_oracle_error is object (
    error_num varchar2(9),
    error_desc varchar2(1024)
    create type t_oracle_error_tab is table of t_oracle_error;
    create or replace function OracleErrors return t_oracle_error_tab pipelined is
      l_error t_oracle_error := t_oracle_error(null,null);
    begin
      for errNo in reverse -32799..0 loop
        l_error.error_num := errNo;
        l_error.error_desc := sqlerrm(errNo);
        if l_error.error_desc not like '%Message % not found;%' and l_error.error_desc != 'ORA'||to_char(errNo,'FM09999')||': ' then
          pipe row(l_error);
        end if;
      end loop;
      return;
    end OracleErrors;
    select * from table(oracleerrors);
    SQL> select * from table(oracleerrors);
    ERROR_NUM ERROR_DESC
    0         ORA-0000: normal, successful completion
    -1        ORA-00001: unique constraint (.) violated
    -17       ORA-00017: session requested to set trace event
    -18       ORA-00018: maximum number of sessions exceeded
    -19       ORA-00019: maximum number of session licenses exceeded
    -20       ORA-00020: maximum number of processes () exceeded
    -21       ORA-00021: session attached to some other process; cannot switch session
    -22       ORA-00022: invalid session ID; access denied
    -23       ORA-00023: session references process private memory; cannot detach session
    -24       ORA-00024: logins from more than one process not allowed in single-process mode
    -25       ORA-00025: failed to allocate
    -26       ORA-00026: missing or invalid session ID
    -27       ORA-00027: cannot kill current session
    -28       ORA-00028: your session has been killed
    -29       ORA-00029: session is not a user session
    -30       ORA-00030: User session ID does not exist.
    -31       ORA-00031: session marked for kill
    -32       ORA-00032: invalid session migration password
    -33       ORA-00033: current session has empty migration password
    -34       ORA-00034: cannot  in current PL/SQL session
    -35       ORA-00035: LICENSE_MAX_USERS cannot be less than current number of users
    -36       ORA-00036: maximum number of recursive SQL levels () exceeded
    -37       ORA-00037: cannot switch to a session belonging to a different server group
    -38       ORA-00038: Cannot create session: server group belongs to another user
    -50       ORA-00050: operating system error occurred while obtaining an enqueue
    -51       ORA-00051: timeout occurred while waiting for a resource
    -52       ORA-00052: maximum number of enqueue resources () exceeded
    -53       ORA-00053: maximum number of enqueues exceeded
    -54       ORA-00054: resource busy and acquire with NOWAIT specified
    -55       ORA-00055: maximum number of DML locks exceeded
    -56       ORA-00056: DDL lock on object '.' is already held in an incompatible mode
    -57       ORA-00057: maximum number of temporary table locks exceeded
    -58       ORA-00058: DB_BLOCK_SIZE must be  to mount this database (not )
    -59       ORA-00059: maximum number of DB_FILES exceeded
    -60       ORA-00060: deadlock detected while waiting for resource
    -61       ORA-00061: another instance has a different DML_LOCKS setting
    -62       ORA-00062: DML full-table lock cannot be acquired; DML_LOCKS is 0
    -63       ORA-00063: maximum number of LOG_FILES exceeded
    -64       ORA-00064: object is too large to allocate on this O/S (,)
    -65       ORA-00065: initialization of FIXED_DATE failed
    -66       ORA-00066: LOG_FILES is  but needs to be  to be compatible
    -67       ORA-00067: invalid value  for parameter ; must be at least
    -68       ORA-00068: invalid value  for parameter , must be between  and
    -69       ORA-00069: cannot acquire lock -- table locks disabled for
    -70       ORA-00070: command  is not valid
    -71       ORA-00071: process number must be between 1 and
    -72       ORA-00072: process "" is not active
    -73       ORA-00073: command  takes between  and  argument(s)
    -74       ORA-00074: no process has been specified
    -75       ORA-00075: process "" not found in this instance
    -76       ORA-00076: dump  not found
    -77       ORA-00077: dump  is not valid
    -78       ORA-00078: cannot dump variables by name
    -79       ORA-00079: variable  not found
    -80       ORA-00080: invalid global area specified by level
    -81       ORA-00081: address range [, ) is not readable
    -82       ORA-00082: memory size of  is not in valid set of [1], [2], [4]
    -83       ORA-00083: warning: possibly corrupt SGA mapped
    -84       ORA-00084: global area must be PGA, SGA, or UGA
    -85       ORA-00085: current call does not exist
    -86       ORA-00086: user call does not exist
    -87       ORA-00087: command cannot be executed on remote instance
    -88       ORA-00088: command cannot be executed by shared server
    -89       ORA-00089: invalid instance number in ORADEBUG command
    -90       ORA-00090: failed to allocate memory for cluster database ORADEBUG command
    -91       ORA-00091: LARGE_POOL_SIZE must be at least
    -92       ORA-00092: LARGE_POOL_SIZE must be greater than LARGE_POOL_MIN_ALLOC
    -93       ORA-00093:  must be between  and
    -94       ORA-00094:  requires an integer value
    -96       ORA-00096: invalid value  for parameter , must be from among
    -97       ORA-00097: use of Oracle SQL feature not in SQL92  Level
    -99       ORA-00099: timed out while waiting for resource, potential PDML deadlock
    -100      ORA-00100: no data found
    -101      ORA-00101: invalid specification for system parameter DISPATCHERS
    -102      ORA-00102: network protocol  cannot be used by dispatchers
    -103      ORA-00103: invalid network protocol; reserved for use by dispatchers
    -104      ORA-00104: deadlock detected; all public servers blocked waiting for resources
    -105      ORA-00105: dispatching mechanism not configured for network protocol
    -106      ORA-00106: cannot startup/shutdown database when connected to a dispatcher
    -107      ORA-00107: failed to connect to ORACLE listener process
    -108      ORA-00108: failed to set up dispatcher to accept connection asynchronously
    -111      ORA-00111: not all servers started because number of servers is limited to
    -112      ORA-00112: only created up to  (maximum specified) dispatchers
    -113      ORA-00113: protocol name  is too long
    -114      ORA-00114: missing value for system parameter SERVICE_NAMES
    -115      ORA-00115: connection refused; dispatcher connection table is full
    -116      ORA-00116: SERVICE_NAMES name is too long
    -117      ORA-00117: value out of range for system parameter SERVICE_NAMES
    -118      ORA-00118: value out of range for system parameter DISPATCHERS
    -119      ORA-00119: invalid specification for system parameter
    -120      ORA-00120: dispatching mechanism not enabled or installed
    -121      ORA-00121: SHARED_SERVERS specified without DISPATCHERS
    -122      ORA-00122: cannot initialize network configuration
    -123      ORA-00123: idle public server terminating
    -124      ORA-00124: DISPATCHERS specified without MAX_SHARED_SERVERS
    -125      ORA-00125: connection refused; invalid presentation
    -126      ORA-00126: connection refused; invalid duplicity
    -127      ORA-00127: dispatcher  does not exist
    -128      ORA-00128: this command requires a dispatcher name
    ...

  • I have recently restored everything on my iMac after getting a new hard drive. When i try to use Elements, i get the following error code   ERROR  150:30. Any ideas?

    I have recently restored everything on my iMac after getting a new hard drive. When i try to use Elements, i get the following error code   ERROR  150:30. Any ideas?

    Did you use migration assistant to copy over programs, documents, and settings? You can't do that with PSE. Elements is not a tidy package in accordance with the apple developer guidelines. The installer strews stuff all of your hard drive in place the migration assistant isn't programmed to look and you can never hope to find all h the bits. You must always install PSE from scratch on a new machine. By attempting to copy it you have made a lot of trouble for yourself.
    You will need to download and run this:
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    and then you can go around and manually remove what you can reach. Look in applications, your hard drive>library>application support>adobe, your username>library>preferences. In the user library also delete any saved application states for PSE.
    Then you can reinstall from scratch.

  • How to determine the error code, returned from LDAP server

    I use the next code for connect to LDAP server:
            try{
                ctx = new InitialLdapContext(env, null);
                 //if connection successfull ...
            } catch (NamingException){
                 //if error occured ...
            }Is it possible to determine the numeric error code, returned from server?

    I was just working on using openldap, binding to it and checking for expired passwords and locked accounts and it looks like that an AuthenticationException is thrown in these circumstances and the ctx is null so it is not possible process connection response controls. But you can look at operation attributes if you have password policy enabled and you are looking for these type of errors

  • RasClient:dialed a connection named "VPN Connection Name " which has failed. The error code returned on failure is 789 on windows 8.1

    Hello,
    i am trying to connect to my corporation VPN Server " ISA 2006" using windows 8.1 client built in VPN,  but its returned the following error:
     Event ID 20227: dialed a connection named "VPN connection Name" which has failed. The error code returned on failure is 789.
    VPN connection is working fine with windows XP and windows 7 with no issue , this error is only appear when try to connect to using windows 8 client machine.
    this error is shows only on windows 8.1 client , same procedures used to enroll the certificate from internal CA " IPsec Type" is followed .
    below are the  ISA server specifications:
    VPN Server : ISA 2006.
    windows Server version 2003. 
    appreciate your quick help and reply .
    Thanks

    Thanks for your reply.
    i would like to add another point for this case, that when we are trying to enroll a certificate from internal CA web enrollment directly using windows 8 " internet explorer 11"  , its install a certificate without Digital
    Signature and non-repudiation in key usage property, then when try to connect , its will give the above error 789 ..
    when try to enroll a certificate into windows 7 " internet explorer 10" and then export and import  this certificate into windows 8.1 machine "with the name of
    windows 8.1 machine" into windows 8.1 machine, the VPN is working normally and without issue.
    The properties of the Certificate are difference between windows 7 machine and windows 8 machine is key usage missing the Digital Signature and non-repudiation properties when enroll
    from windows  8.1 " internet explorer 11", this is in fact because of
    we don't have an option for key usage " both" when subment a certificate on web enrollment page from windows 8 machine ,, the only option available is exchange "
    no signature and both option available "
    i believe that there is something wrong when using windows 8.1 internet explorer 11 so its gave a certificate with wrong key usage property .
    appreciate your quick help in this .
    thanks

  • List of all HTTP error codes returned by EWS

    Hi everybody,
    I need all the HTTP error codes returned by Exchange when we use Exchange Web Services.
    Thanks & regards,
    Talib Hussain

    We don't have a document that lists every possible error. EWS runs through IIS on the CAS server, so theoretically you could receive any HTTP error that IIS can return.

  • TS3212 every time i try to download itunes my computer comes ups up with an error code half way through  down load error code 2330

    every time i try to download itunes my computer comes ups up with an error code half way through  down load error code 2330

    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Vista instructions in the following document: Check your hard disk for errors
    Windows 7 instructions in the following document: How to use CHKDSK (Check Disk)
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • I tried to charge my iPod Touch 5th generation but it died while charging  and it was tuning and it said i had to connect to iTunes so i did and i had to restore it to use it and while restoring an error code (9) appered and i can't use it. Plz help

       So  I was using my iPod Touch 5th generation and the charger wouldnt charge it and it died then while it was in the process of tuening back on the apple logo dissapeered and it kept on turning on and off so i put it into DFU mode and it said to plug it into itunes to i did and it said i had to restore it to use it but when i tried to restore it it brought up ," Couldnt restore ipod, error code (9) " ..... and i have tried 3 different USB cables and two different computers and USB ports and i have no clue what to do so i would like help from anyone please that would be awesome!!!!
                        Thank you, 
                                           Zac

    Zac henderson wrote:
    ...Couldnt restore ipod, error code (9) " ...
    Try here  >  Configure security software

  • Trying to use Buttons and keep getting an error code

    I am trying to use buttons and I keep getting the error code ReferenceError: Error #1074: Illegal write to read-only property graphics on flash.display.MovieClip.
    There is one button that doesnt appear when I view it live/in browser/ in flash professional
    I have created this button the SAME way, about 36 times, as the other buttons that work fine. What am I doing wrong?
    PLEASE HELP ASAP...

    The error appears to involve trying to assign a value to the graphics property of a MovieClip.  Do you have code that uses something.graphics =

  • Use of LdapRealm results in [LDAP: error code 32 - No Such Object]

    Hi,
    I'm testing with the example 'basic-auth' of the SJSAS7 2004Q2 with the LdapRealm.
    This little test app can successfully authenticate my user against LDAP.
    package de.zdf.qmv.helloworld.test;
    import javax.naming.*;
    import javax.naming.directory.*;
    import java.util.Hashtable;
    public class TestLdap {
      public static void main(String[] args) {
        Hashtable env = new Hashtable();
        env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
        env.put(Context.PROVIDER_URL,            "ldap://123.123.123.123:389/o=aaa");
        env.put(Context.SECURITY_AUTHENTICATION, "simple");
        env.put(Context.SECURITY_PRINCIPAL,      "uid=myuser,ou=ddd,o=ccc,o=bbb,o=aaa");
        env.put(Context.SECURITY_CREDENTIALS,    "mypwd");
        try {
          DirContext ctx = new InitialDirContext(env);
          ctx.close();
        } catch (Exception e) {
          e.printStackTrace();
    }But when I try to use these Settings for the LDAP Security Realms in the AppServer it doesn't work.
    <auth-realm name="ldap" classname="com.iplanet.ias.security.auth.realm.ldap.LDAPRealm">
      <property value="ldap://123.123.123.123:389/o=aaa" name="directory"/>
      <property value="ou=ddd,o=ccc,o=bbb,o=aaa" name="base-dn"/>
      <property value="ldapRealm" name="jaas-context"/>
    </auth-realm>I get this error:
    AM: Processing login with credentials of type: class com.sun.enterprise.security.auth.login.PasswordCredential
    FEIN: Logging in user [myuser] into realm: ldap using JAAS module: ldapRealm
    AM: Login module initialized: class com.iplanet.ias.security.auth.login.LDAPLoginModule
    AM: search: baseDN: ou=ddd,o=ccc,o=bbb,o=aaa  filter: uid=myuser
    WARNUNG: SEC1106: Error during LDAP search with filter [uid=myuser].
    WARNUNG: SEC1000: Caught exception.
    javax.naming.NameNotFoundException: [LDAP: error code 32 - No Such Object]; remaining name 'ou=ddd,o=ccc,o=bbb,o=aaa'Is the base-dn of the LDAP Security Realms properties the equivalent to the SECURITY_PRINCIPAL (without uid= )?
    Is there a missing property in the LDAP Security Realms properties to get this work?
    Thanks for your help

    I have the same error with my code...
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL, "ldap://localhost");
    Context ctx = new InitialContext(env);
    SQLServerDataSource mds = new SQLServerDataSource();
    ctx.bind("jdbc/, mds);
    // ERROR!!!!LDAP: error code 32 - No Such Object
    I just installed the qcslapd.exe, running qcslapd -debug i get the result:
    20030514 14:28:13 conn=6 fd=2 connection from e700 (127.0.0.1)
    20030514 14:28:13 conn=6 op=0 BIND dn="" method=128
    20030514 14:28:13 unknown version 3
    20030514 14:28:13 conn=6 op=1 BIND dn="" method=128
    20030514 14:28:13 conn=6 op=0 RESULT err=2 tag=97 nentries=0
    20030514 14:28:13 conn=6 op=1 RESULT err=0 tag=97 nentries=0
    20030514 14:28:13 conn=6 op=2 SRCH base="jdbc" scope=0 filter="(objectclass=*)"
    20030514 14:28:14 conn=6 op=2 RESULT err=32 tag=101 nentries=0
    can you help... HELP

  • Odd error originating from NI-5411 (Error code: BFFA0002) when trying to load arbitrary waveform

    Hello everyone. 
    We have some equipment (PCI NI-5411) that is misbehaving in an odd and new way. When trying to load an arbitrary waveform onto the AWG (using a library call to the "niFgen Write Binary 16 Waveform"), it produces an error. The error code is "BFFA0002", but I haven't been able to find any information that can show what this error code provides. Previously, we had some problem when the system wouldn't find the file and produces an error even though the file is there. After changing our code so the file access is attempted several times, the problem was resolved. However, that doesn't work in this case and we do not know here the problem is.
    This is a pretty much shooting wild and hoping that something falls down, but if anyone could provide me with information about the error code or another probable error source I would be highly grateful.
    Thanks in advance!
    With best regards,
    Niclas

    Hi Niclas,
    That error code suggests that a file cannot be opened. This error is defined in IVI as  IVI_ERROR_CANNOT_OPEN_FILE.I don't think we return this error code from the NI-FGEN driver.
    You mentioned that you have an issue with finding a file. Is that file specific to your application? How is it being open or used? What API do you use to open that file?
    For NI-FGEN specific error code (and generic IVI error codes), you can query the error message by calling niFgen_error_message function or niFgen Error Message.vi.
    Thanks,
    - Liusdi

  • How to access error description in a string from error code returned by NI-DAQ driver?

    I am tring to write codes to control NI-6703 for PCI using the NI-DAQ driver for C++.
    In the sample codes, it calls "NIDAQErrorHandler" to retrieve the error description and display in the pop-up message box. The method is included with header file "nideqex.h", and implemented w/ the nidex32.lib
    I would like to get the error description in a string rather than getting a message box. Is there a way to do that? Am I missig something here?
    I managed to find the "NIDAQEx.c" source code on the internet, but it seems like the code is outdated, and the library is NOT really compiled from it, since it does not seems to have a call to any method that will return th
    e error description in a string that got used to be displayed in the message box.
    Is there a method that I can call and pass a error code, which will return the error description in a string?

    There is a function documented in dataacq.h called GetNIDAQErrorString that accomplishes what you would like.
    Raecine Meza
    NI
    http://www.ni.com/ask

  • Error code returned if the business rules not executed

    Recently we found that some Hyperion business rules are not executed during the daily batch file but no error code was returned.
    Is there any method to force the return of error code so that we can check the batch result more easier?
    Thanks a lot!

    For information, we are using the batch file under EAS console directory of Essbase:
    \Hyperion\products\Essbase\eas\console\bin\CmdLnLauncher.bat
    @echo off
    set CPATH=..\lib\CmdLnLauncher.jar
    set CPATH=%CPATH%;..\lib\easclientplugin.jar
    set CPATH=%CPATH%;..\lib\log4j-1.2.8.jar
    set CPATH=%CPATH%;..\lib\framework_common.jar
    set CPATH=%CPATH%;..\lib\eas_common.jar
    set CPATH=%CPATH%;..\lib\jaxp-api.jar
    set CPATH=%CPATH%;..\lib\jdom.jar
    set CPATH=%CPATH%;..\lib\dom.jar
    set CPATH=%CPATH%;..\lib\xercesImpl.jar
    java -DHBR_HOME=..\.. -cp %CPATH% com.hyperion.hbr.cmdlnlauncher.CmdLineLauncher %1 %2 %3 %4 %5 %6

  • Error Code 150:30 Will not Load program

    I am running OS X Yosemite Photoshop Elements will not open it gives me a Error Code 150:30. Tried a restart same issue, I can not download and reinstall as it does not start after I go to my orders. I am the license holder. Any suggestions?

    John Hise
    If your program is Photoshop Elements (photo editing), you have posted in the wrong forum. Somehow your thread got posted into the Adobe Premiere Elements Forum (video editing).
    Please re-post your thread in the Adobe Photoshop Elements Forum or wait for a moderator here to see your thread here and move it from here to there.
    Photoshop Elements
    You may want to check out the following Adobe document on troubleshooting your type of issue
    http://helpx.adobe.com/x-productkb/global/error-licensing-stopped-mac-os.html
    By the way, what version of Photoshop Elements are you using on Mac?
    ATR

Maybe you are looking for

  • Acrobat Professional 6 can't display pdf ebooks in MetaProducts Offline Explorer Enterprise!

    Dear all, I have installed Adoe Acrobat Pro 6. Everything works fine. However, Acrobat can't view pdf-formatted files likes ebooks etc in MetaProducts Offline Explorer Enterprise 4.9. Could you please help me? Thank you!

  • Ever since  photoshop CC 2014 came out I can't run it.

    I'm using a pc with windows 7, lightroom and photoshop I get a message from window that says "Adobe Photoshop CC 2014 has stopped working" then it shuts down. This happens when I choose edit in Lightroom and when I try to launch Photoshop directly. I

  • Best combination for adjusting B&W scanned Tif image files

    Hi, I have found it easy to use the many adjustments available in LR 2.3 to get great looking B&W images from RAW files but I have not yet figured out how to get great looking tones from the adjustments available for monochome image Tif files. Anyone

  • HP PAVILION DV 2500 IS FULL OF FACTORY DEFECTS!

    SHORT OF 12 MONTHS, I CAN NO LONGER USE MY HP PAVILION DV 2500.  WHAT DID HP SERVICE CENTER SAY AFTER TWO WEEKS WITH THEM?  REPLACE THE MOTHERBOARD!  IT WILL COST ME  $350 PLUS TO REPLACE IT.  A BIG RIP OFF!  I WILL NEVER EVER BUY ANOTHER HP!  AND I

  • Start a scenario with a http url

    I try to launch a scenario by using an http url witthout success. ( NullPointer exception) I use Tomcat 4.1 and I have deployed Matadata Navigator on it I send the followings parameters to the URL http://localhost:8080/oracledimn/startscen.do name="a