Doubts on Exceptions

Hi,
Need some inputs from MDM Implementation experts.
I have started working on SP06 sometime back (After working on SP04). Currently I am implementing MDM SP06 (latest patch) on Unix.
I need some guidance from guys who have already implemented MDM on SP06 wrt Exceptions.
1. After go-live, what types of exceptions do people receive?
As far as my understanding goes Structural exceptions should not come as structures of entire landscape would have been finalised. With SP06 I have heard you can make config changes in mdis.ini file and Import manager to make sure Value exceptions do not come. So are we left with only Import Exceptions post go-live?
I might be wrong on a few points so your comments on same are valuable.
2. I understand that if you get errors in 100 records out of 1000. MDIS writes 100 xml files for each failed record in Exception folder along with main log file.
If I am not incorrect MDM stores the entire file only for Structural Exception, not for Value/Import exceptions (for which it writes one XML per failed record). Please correct me here.
3. Lastly there are guys here who have implemented this. So what are their suggestions with respect to Exceptions. Some best practices, use cases, dos and donts etc would be very beneficial here.
In case you need to pass some documents please refer my Business card for further details (e mail).
Regards,
Dev.
Edited by: Devashish Bharti on Jun 16, 2008 5:40 PM
Edited by: Devashish Bharti on Jun 16, 2008 5:40 PM

Guys Any one?

Similar Messages

  • *** Doubt regarding Exception Block ***

    Hi,
    I have a doubt regarding exception.
    My SP has 5-6 select queries that is used in" open <cursor name> for select ...."
    also a 'select count(id) into...' statement.
    Do I need to have an Exception block inside? I dont have any user defined execptions at all. So will there be any exceptions that gets generated in a select query?
    Also 'WHEN OTHERS THEN' is it OK to use where I dont know what all excaptions might occur?
    Regds,
    S

    Hi,
    Oracle will raise an error NO_DATA_FOUND , if any of your SELECT statement returns zero records, If you want your process to fail then you can have one common handler (either write to a error_log_table) do all the error_handling.
    If you want to continue for some SQL's to move to the next statement then you can do some thing like this.
    begin
    select statement
    when no_data_found then --not an issue, if no data is returned.
    NULL;
    Refere to this link for more information.
    http://download-west.oracle.com/docs/cd/B10501_01/appdev.920/a96624/07_errs.htm#1079
    thanks

  • Doubt about exceptions.

    hai,
    here there is user eit function module.
    call customer-function '014'
    exporting
    is_header          = is_caufvd
    is_component       = cs_resbd_new
    is_component_old   = is_resbd_old
    is_materialview    = is_msfcv
    i_fcode            = c_fcode
    i_marked           = c_flg_sel
    exceptions
    no_changes_allowed = 01.
    directly it taking data from screen. so here i have doubt that when that exception will raise.
    tell me what is main use of exception.
    some fm there is more than one exceptions is there?
    so plz tell me about the use exception & changing  in function module.

    Hi,
    CALL customer-function '014', is called from a standard program. There might be a case where depending on certain conditions you want to restrict the user from making changes on the screen. In that case you you will raise the exeption in the implementation of the user exit where you write your own code.
    In this case
    RAISE no_changes_allowed.
    For further details on how to raise the exception, refer to the keyword 'RAISE'
    regards,
    Advait

  • Doubt in exception!

    hi...
    i created a procedure for deleting a row in a table...and included an exception to handle the error if no data found...
    it works/display th message if i use raise_application_error...but it is not working when i use predefined exception..i.e No_data_found...
    for ur view th code n th table i used...below
    1 create or replace procedure del_job(p_jobid varchar2)
    2 is
    3 begin
    4 delete from job
    5 where job_id=p_jobid;
    6 exception
    7 when no_data_found then
    8 dbms_output.put_line('no jobs deleted');
    9 /*if sql%notfound then
    10 raise_application_error(-20203,'no jobs deleted');
    11 end if;
    12 */
    13* end;
    SQL> /
    Procedure created.
    SQL> exec del_job('sq_rep');
    PL/SQL procedure successfully completed.==>here there is no display message..
    select * from job;
    JOB_ID JOB_TITLE MIN_SALARY MAX_SALARY
    it_dba dba
    plz guide me...

    Hi ,
    Can you modify procedure in the following way. It will work for predefined Exceptions also
    create or replace procedure del_job(p_jobid varchar2)
    2 is
    3 begin
    4 delete from job
    5 where job_id=p_jobid;
    6if sql%notfound then
    7 raise_application_error(-20203,'no jobs deleted');
    8 end if;
    9 exception
    10 when no_data_found then
    11 dbms_output.put_line('no jobs deleted');
    12 end;
    SQL>
    Let me know any issues with this
    Ok

  • Doubt in Exception I used

    hi...
    i created a procedure for deleting a row in a table...and included an exception to handle the error if no data found...
    it works/display th message if i use raise_application_error...but it is not working when i use predefined exception..i.e No_data_found...
    for ur view th code n th table i used...below
    1 create or replace procedure del_job(p_jobid varchar2)
    2 is
    3 begin
    4 delete from job
    5 where job_id=p_jobid;
    6 exception
    7 when no_data_found then
    8 dbms_output.put_line('no jobs deleted');
    9 /*if sql%notfound then
    10 raise_application_error(-20203,'no jobs deleted');
    11 end if;
    12 */
    13* end;
    SQL> /
    Procedure created.
    SQL> exec del_job('sq_rep');
    PL/SQL procedure successfully completed.==>here there is no display message..
    select * from job;
    JOB_ID JOB_TITLE MIN_SALARY MAX_SALARY
    it_dba dba
    plz guide me...

    no_data_found raises only for select statements, the use of sql%notfound is correct for delete and update statements. You may use a raise no_data_found if You want to replicate what happens for selects.

  • Can you please clarify  the doubt in Exception.

    public class TraverseExceptionChain
        static public void traverseExceptionChain(Throwable t)
           while(t != null)
             System.out.println(t);
             t = t.getCause();
        public static void main(String args[])
           int array[] = new int[10];
            try
               array[500] = 1;
            catch(Exception e)
               Exception e2=new Exception("Two",e);
               Exception e3=new Exception("Three",e2);
               traverseExceptionChain(e3);
    }O/P:
    java.lang.Exception: Three
    java.lang.Exception: Two
    java.lang.ArrayIndexOutOfBoundsException: 500
    Can any body explain program especially catch block???

    Exception e3 has as cause e2 which has aa cause e, where having a cause means 'this exception is caused by another exception'.
    Usually exceptions as wrapped like this to add extra information, while retaining the original exception information.

  • Doubts in Exception

    Hi All,
    I cannot figure out the error when I run the following procedure. Could anyone help me understand the error please..
    code:
    select * from DATE_TAB;
    LAST_PRO_ KEY
    01/JUN/08 87
    03/JUN/08 1
    01/JUN/08 2
    02/JUN/08 3
    04/JUN/08 4
    05/JUN/08 5
    06/JUN/08 6
    07/JUN/08 7
    08/JUN/08 8
    09/JUN/08 9
    create or replace procedure proc1(n in number)
    as
    nk number;
    dte date;
    myexcp exception;
    begin
    select LAST_PRO_DATE,key into dte,nk from DATE_TAB where key=n;
    dbms_output.put_line(dte||','||nk);
    exception
    when no_data_found
    then
    raise myexcp;
    when myexcp
    then
    dbms_output.put_line('In MY EXCEPTION');
    end;
    SQL> declare
    2 begin
    3 proc1(34);
    4 end;
    5 /
    declare
    ERROR at line 1:
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "SINGHPR1.PROC1", line 16
    ORA-01403: no data found
    ORA-06512: at line 3
    Many thanks,
    PJ

    1) you cannot use a "when no_data_found" in an execution block.
    It has to be part of the exception block.
    2)
    create or replace procedure proc1(n in number) as
      nk  number;
      dte date;
      myexcp exception;
    begin
        select count(key1) into nk from DATE_TAB where key1 = n;   
        if nk=0 then
          raise myexcp;
        else
          select dt, key1 into dte, nk from DATE_TAB where key1 = n;
          dbms_output.put_line(dte ||','|| nk);       
        end if;
    exception
      when myexcp then
        dbms_output.put_line('In MY EXCEPTION');
      when no_data_found then
        dbms_output.put_line('In no_data_found EXCEPTION');
        raise;
      when others then
        dbms_output.put_line('In OTHERS EXCEPTION');
        raise;
    end proc1;In this case, when the count is returning zero rows, we are explicitly raising the user-defined exception, in the execution block, using ...
    raise myexcp;
    So, the execution is terminated & the control is passed to the exception block where we are handling the "myexcp" exception.
    3) But in your case ... create or replace procedure proc1(n in number)
    as
    nk number;
    dte date;
    myexcp exception;
    begin
    begin
      select LAST_PRO_DATE,key into dte,nk from DATE_TAB where key=n;
      dbms_output.put_line(dte||','||nk);
    exception
    when no_data_found then
    raise myexcp;
    end;
    exception
    when myexcp then
    dbms_output.put_line('In MY EXCEPTION');
    when no_data_found then
    dbms_output.put_line('In No DATA');
    end;you were trying to raise "myexcp" in the exception block & not in the execution block. Hope you are able to make out the difference.
    Now, re-phrasing your question ...
    "Does it mean that when we raise a user defined exception,
    in the exception block in a procedure
    having single begin-end block then the user defined exception is not handled,
    because it cannot propagate more ...
    ... But if we put a begin and end before the select statement
    it should be caught.Am I right?" ...
    The answer is ... "YES"

  • Doubt on exceptions

    what is the difference between throws and try,catch.
    which is more advantage to use.

    all you need to know is explained here:
    [http://java.sun.com/docs/books/tutorial/essential/exceptions/]

  • Exceptions in Query designer

    Hello experts,
    I have a basic doubt on Exceptions in the Query designer.
    Say I create an exception which says any value between 1 and 10 is good and should have a certain color and another exception on the same key figure which says that values between 8 and 12 are bad and denote with a different color.
    Now I get a value 0f 9 for my Kf then how does BI process the exception?
    Thanks and Regards
    Ankit

    Hi,
    You have to make exception for values 1-10 as per the requirement.
    and starting from 11-12 give another with diff color and notation. Like wise it's better to identify.
    Reg
    Pra

  • Highest peak rates for replicated DVD-9 or DVD-5?

    Which is the highest peak rate that is most commonly used for replicated discs for all the data streams, and for video? I've tested some well authored popular mass production music dvds with DGIndex and often found video peak rates to go over 8.5 or even 9.
    Still quite often it's said for example here http://www.createspace.com/Special/AuthoringNightmares/03/BitsAndBytes.jsp?cfxwasredirect ed=true
    that for replicated discs you shouldn't go over 8Mbps rates for video.
    I'm having one subtitle track and, 2.0 Dolby Digital and 5.1 Dolby Digital audio tracks in my project, but if the spec says the peak limit for all the assets in DVD-video is around 10Mbps, 9.8Mbps (as I think Neil referred in his alternate bit budgeting guide: http://www.adobeforums.com/webx/.3bb7dccd ) or as 9.6 (as I think Neil referred in: http://www.adobeforums.com/webx/.3bc2e248/0 ) why the video peak rate needs to be that much under what would be possible to be used with subtitles, 2.0 and 5.1 audios? There is like 0.448 Mbps for 5.1audio, 0.256Mbps for 2.0audio, 0.04 Mbps for subtitle, it would leave at least 8.5 Mbps for video? So, it is a little bit confusing what really is the usable DVD peak for replicated DVDs (DVD-5 or DVD-9)? Is it ok in my project to use 8.6Mbps for video if it fits the 9.6Mbps or what ever is the exact scope?

    HI David - if going to replication on DLT then you can max out the bit rate if you wish to... however you need to think about whether you need to.
    There is a law of diminishing returns here - anything above about 8mbps and I doubt anyone except a well trained 'eye' could see any difference in the quality. All you'll be doing is increasing the file size. Also, it's worth remembering that there are still players which have trouble reading higher rates off a replicated disc (check the DVD FAQ - section 1.41 makes for interesting reading, although not all of these are down to high bit rates, of course).
    I tend to encode at various rates with short samples of material and look for the differences. Where I can't see any, I opt for the lower rate. So far this has served me well!
    Don't forget that a duplicated disc is using a very different material for the reflective layer and it is far less reflective than a replicated disc. This is largely why you need to keep the duplicated disc bit rate low - players struggle to read the higher bit rates from the less reflective surface and so stutter on playback.
    Personally, if you can't see any difference between 7mbps and 9.8mbps I'd advise staying at 7. If there is a difference for your footage then try again with 8mbps, but don't be lulled into a false sense of security over the fact that a replicated disc should be able to have 10.08mbps combined bitrate... the quality of the player is really the issue. Whilst most will, some won't, though all should!

  • Encode Rates For Replicated DVD

    We're about to send off a master DVD-R to replicate a DVD.
    I've been told, but can't confirm, that I can go sky high on my video encode rates for replicated DVDs.
    That's the opposite of what I've read for duplicating DVDs.
    Any of those out there confirm that I can go to 8 or 9 mbps for an under 1 hour DVD with Dolby2 audio?
    Or should I stay at 7.0 as I've always done.
    thanks

    HI David - if going to replication on DLT then you can max out the bit rate if you wish to... however you need to think about whether you need to.
    There is a law of diminishing returns here - anything above about 8mbps and I doubt anyone except a well trained 'eye' could see any difference in the quality. All you'll be doing is increasing the file size. Also, it's worth remembering that there are still players which have trouble reading higher rates off a replicated disc (check the DVD FAQ - section 1.41 makes for interesting reading, although not all of these are down to high bit rates, of course).
    I tend to encode at various rates with short samples of material and look for the differences. Where I can't see any, I opt for the lower rate. So far this has served me well!
    Don't forget that a duplicated disc is using a very different material for the reflective layer and it is far less reflective than a replicated disc. This is largely why you need to keep the duplicated disc bit rate low - players struggle to read the higher bit rates from the less reflective surface and so stutter on playback.
    Personally, if you can't see any difference between 7mbps and 9.8mbps I'd advise staying at 7. If there is a difference for your footage then try again with 8mbps, but don't be lulled into a false sense of security over the fact that a replicated disc should be able to have 10.08mbps combined bitrate... the quality of the player is really the issue. Whilst most will, some won't, though all should!

  • Exception - Doubt in Finally

    i have doubt in finally block..
    we know, the finally block statements execute whether the
    exception raises in try block or not..
    but in my program the print statement working after try block
    without using finally block..
    pls anyone expalin about this very clearly..
    for example:
    class excep{
         static void demo(){
              try{
                   int i=1/0;
                   System.out.println(i);
              }catch(ArithmeticException e){
                   System.out.println(e.getMessage());
              System.out.println("Executing Finally");
         public static void main(String ar[]){
              demo();
    output:
    / by zero
    Executing Finally
    thanks

    Hi
    If in your catch block you would have thrown a new exception or the same exception that you got, then the system.out.println wouldn't have been executed. Only if it would have been inside a finally block.
    So:
    class excep{
    static void demo(){
    try{
    int i=1/0;
    System.out.println(i);
    }catch(ArithmeticException e){
    throw new Exception();
    System.out.println("Executing Finally");
    public static void main(String ar[]){
    demo();
    you wouldn't get "Executing Finally" on the console.
    but:
    class excep{
    static void demo(){
    try{
    int i=1/0;
    System.out.println(i);
    }catch(ArithmeticException e){
    throw new Exception();
    finally {
    System.out.println("Executing Finally");
    public static void main(String ar[]){
    demo();
    "Exceuting Finally" would be printed to the console.

  • Exception Handling - Doubt

    1)
    public class Thrwodemo {
          * @param args
         static void demoproc() {
             try {
               throw new NullPointerException("demo");
             } catch(NullPointerException e) {
               System.out.println("Caught inside demoproc.");
               throw e; // rethrow the exception
           public static void main(String args[]) {
             try {
               demoproc();
             } catch(NullPointerException e) {
               System.out.println("Recaught: " + e);
    }Output
    Caught inside demoproc.
    Recaught: java.lang.NullPointerException: demo
    2)
    public class Thrwodemo {
          * @param args
         static void demoproc() {
             try {
               throw new IllegalAccessException("demo");
             } catch(IllegalAccessException e) {
               System.out.println("Caught inside demoproc.");
               throw e; // rethrow the exception
           public static void main(String args[]) {
             try {
               demoproc();
             } catch(IllegalAccessException e) {
               System.out.println("Recaught: " + e);
    }Compilation error
    Unreachable catch block for IllegalAccessException. This exception is never thrown from the try statement body
    First one compiles fine and gives the output but the second one gives the compilation error. Can someone please explain where i am going wrong? Both the programs are same except the exception thrown.
    Message was edited by:
    Chem_Aura

    oh!! yeah sure..
    The reason is NullPointerException is an unchecked exception and IlleagalAccessException is a checked exception. that's why NullPointerException doesn't require the throws stament where as IllegalAccessException do..
    Thank you!!

  • Doubt in AXIS-Exception in thread "main" . how can i run this program

    hi
    I am new to axis., I done few webservice program using Jwsdp
    i can't resolve the reason for this exception.
    I have set all the classpath and other path variable that is necessary for axis .,
    I got this example from http://javaboutique.internet.com/tutorials/Axis/index.html
    Can any one help to solve this problem.,
    **************Code***************
    import java.util.*;
    public class NHLService {
      HashMap standings = new HashMap();
      public NHLService() {
        // NHL - part of the standings as per 04/07/2002
        standings.put("atlantic/philadelphia", "1");
        standings.put("atlantic/ny islanders", "2");
        standings.put("atlantic/new jersey", "3");
        standings.put("central/detroit", "1");
        standings.put("central/chicago", "2");
        standings.put("central/st.louis", "3");
      public String getCurrentPosition(String division, String team) {
        String p = (String)standings.get(division + '/' + team);
        return (p == null) ? "Team not found" : p;
    package hansen.playground;
    import org.apache.axis.client.Call;
    import org.apache.axis.client.Service;
    import javax.xml.rpc.namespace.QName;
    import java.net.*;
    public class NHLServiceClient {
       public static void main(String [] args) throws Exception {
           Service service = new Service();
           Call call = (Call)service.createCall();
           String endpoint = "http://localhost:8081/axis/NHLService.jws";
           call.setTargetEndpointAddress(new URL(endpoint));
           call.setOperationName(new QName("getCurrentPosition"));
           String division = args[0];
           String team = args[1];
           String position =
             (String)call.invoke(new Object [] {new String(division), new String(team)});
           System.out.println("Got result : " + position);
    }************ classpath***************
    :/home/sujithkr/webservices/xml-axis/java:
    /home/sujithkr/webservices/xml-axis/webapps/axis/WEB-INF/lib/axis.jar
    /home/sujithkr/webservices/xml-axis/lib/activation.jar
    :/home/sujithkr/webservices/xml-axis/webapps/axis/WEB-INF/lib/clutil.jar
    :/home/sujithkr/webservices/xml-axis/webapps/axis/WEB-INF/lib/commons-logging.jar
    :/home/sujithkr/webservices/xml-axis/webapps/axis/WEB-INF/lib/jaxrpc.jar
    :/home/sujithkr/webservices/xml-axis/webapps/axis/WEB-INF/lib/log4j-core.jar
    :/home/sujithkr/webservices/xml-axis/webapps/axis/WEB-INF/lib/tt-bytecode.jar
    ********************Error Report*******************************
    java hansen.playground.NHLServiceClient atlantic philadelphia
    Exception in thread "main" Error while compiling: /usr/local/tomcat/webapps/axis//NHLService.java
    at org.apache.axis.message.SOAPFaultBuilder.endElement(Unknown Source)
    at org.apache.axis.encoding.DeserializationContextImpl.endElement(Unknown Source)
    at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(AbstractSAXParser.java:633)
    at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanEndElement(XMLNSDocumentScannerImpl.java:719)
    at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:1685)
    at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:368)
    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:834)
    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)
    at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)
    at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1242)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:375)
    at org.apache.axis.encoding.DeserializationContextImpl.parse(Unknown Source)
    at org.apache.axis.SOAPPart.getAsSOAPEnvelope(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at hansen.playground.NHLServiceClient.main(NHLServiceClient.java:21)
    suse-1:/home/sujithkr/webservices # clear
    suse-1:/home/sujithkr/webservices # java hansen.playground.NHLServiceClient atlantic philadelphia
    Exception in thread "main" Error while compiling: /usr/local/tomcat/webapps/axis//NHLService.java
    at org.apache.axis.message.SOAPFaultBuilder.endElement(Unknown Source)
    at org.apache.axis.encoding.DeserializationContextImpl.endElement(Unknown Source)
    at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(AbstractSAXParser.java:633)
    at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanEndElement(XMLNSDocumentScannerImpl.java:719)
    at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:1685)
    at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:368)
    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:834)
    at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)
    at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)
    at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1242)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:375)
    at org.apache.axis.encoding.DeserializationContextImpl.parse(Unknown Source)
    at org.apache.axis.SOAPPart.getAsSOAPEnvelope(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at org.apache.axis.client.Call.invoke(Unknown Source)
    at hansen.playground.NHLServiceClient.main(NHLServiceClient.java:21)
    thank you for helping me in your hectic schedule....

    Please post your code using code tags.
    When I try to compile or build i cant.What is your question? Exactly what error message do you get?

  • Doubt on try/catch exception object

    why it is not advisable to catch type exception in try catch block. Its confusing me. If i catch exception object then it will show whatever exception occured.
    btw, i was just go through duke stars how it works and saw this
    http://developers.sun.com/forums/top_10.jsp
    Congrats!

    Because there are many different kinds of Exception. If you have some specific local strategy for dealing with a particular excepion then you should be using a specific catch block.
    If you don't then you should allow the expection to end the program, and ideally you should deal with all the expceptions in one top-level handler, so you should throw, rather than catch the exceptions in your methods. Often at the outer most level of the program or thread you will actually catch Throwable (not just Exception) to deal with any unanticipated problems in a general kind of way.
    Also, you should be keeping track of what exceptions might be thrown, so that rather than using Exception in a throws clause or catch block, you should use the particular exceptions. Exceptions, generally, indicate a recoverable error that you really ought to be recovering from rather than just printing a stacktrace.
    That's why exceptions are treated differently from runtime errors.

Maybe you are looking for

  • XDK for Windows 98

    Hi, I would like to work with the XML abilities of Oracle. I have installed Oracle Personal Edition 8i on a Windows 98. It seems that XDK is available only for Windows NT. Is this correct? Is it possible to use the XDK on Windows 98? If so, I have an

  • Black Line in IPAD screen

    The New Ipad Having Black line in the screen...

  • Dial-Up connection program

    Hallo there, I would be grateful you could give me some insight into writing a dial-up connection program. Also, I'd like to know whether there are any specs on modems' api's. As if this was not enough, I was wondering whether is was possibile to see

  • Server state saving restores view even request params changed for same page

    hi all, i've a problem with the state saving method of JSF... environment: JSF1.1, WAS6, Spring2.0.. i have two buttons those POP UP an IFRAME inside with a details page.. <input type="button" onclick="openDetailsPage('detailsPage.jsp?id=1');" value=

  • Connecting Firewire to Mavbook

    I have an external hard disk am using with my iMac. It uses a cable with a fairly standard looking connector at the iMac end. I would like to use this hard disk with my MacBook. Do I need any kind of adapter to match the cable to the Macbook? Or, doe