Parsing & Formatting Dates..

static String date_pst = "Jan 12, 1952 10:00:00 AM PST";
static DateFormat df = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.FULL);
static TimeZone tz_pst = TimeZone.getTimeZone("PST");
public static void main(String[] args) throws ParseException {
System.out.println("Date Object from String : " + df.format(df.parse(date_pst)));
/*op : Date Object from String : January 12, 1952 10:00:00 AM PST */
Date parse_date = df.parse(date_pst);
Date format_date = new Date(df.format(parse_date));
System.out.println("Formatted Date : "+df.format(parse_date));
/* op : Formatted Date : January 12, 1952 10:00:00 AM PST */
System.out.println(parse_date);
/* op : Sat Jan 12 23:30:00 IST 1952 */
String is having time set in pst zone...once its parsed its showing Sat Jan 12 23:30:00 IST 1952 ..(time corresponding to tat in string in local timezone)...but wen its formatted with no info about timezone...ie
df.format(parse_date) its showing the actual string time itself...how its possible...ie date object constructed from parse is in IST timezone ten hw its formatted to PST again..

Double post.. Reply here: [http://forums.sun.com/thread.jspa?threadID=5415975]

Similar Messages

  • How to parse system date to return Date and in yyyy-MM-dd format?

    DateFormat dateFormat = new SimpleDateFormat ("yyyy-MM-dd");
    java.util.Date date = new java.util.Date ();
    String dateStr = dateFormat.format (date);
    try{
    Date date2 = dateFormat.parse (dateStr);
    }catch(ParseException pe){
    pe.printStackTrace();
    Actually, After parsing the date from string, again it is converted into dfault format i.e. 21 Jan 00.00.00 etc...
    But I want this parsing date in yyyy-MM-dd format and again to return date.
    Can anybody tell me how to do this?

    DateFormat dateFormat = new SimpleDateFormat
    ("yyyy-MM-dd");
    java.util.Date date = new java.util.Date ();
    String dateStr = dateFormat.format (date);
    try{
    Date date2 = dateFormat.parse (dateStr);
    }catch(ParseException pe){
    pe.printStackTrace();
    Actually, After parsing the date from string, again
    it is converted into dfault format i.e. 21 Jan
    00.00.00 etc...
    But I want this parsing date in yyyy-MM-dd format and
    again to return date.
    Can anybody tell me how to do this?A Date object does not have a format, it represents a moment in time. You can use SimpleDateFormat to return a String representing that moment in time in many formats - this does not change the Date object to have that format (which it cannot since it does not contain a format).

  • Exception in XML Parser (format problem?)

    Hi Experts,
    I am working on IDOC -> AS2 Configuration and the AS2 Configuration has the below structure
    <RecordSet>
         <Row1>
                       <row1 - field1>
                       <row1 - field2>
                       <row1 - field3>
         </Row1>
         <Row2>
                       <row2 - field1>
                       <row2 - field2>
                       <row2 - field3>
         </Row2>
         <Records>
              <Record1>
                        <Record1-Field1>
                        <Record1-Field1>
                        <Record1-Field1> 
              </Record1>
              <Record2>
                        <Record2-Field1>
                        <Record2-Field1>
                        <Record2-Field1> 
              </Record2>
         </Records>
    </RecordSet>
    We are getting the expected Structure when we AS2 Receiver has the xml format. But while doing module development with the strctxml2Plain, we are getting the below error  in RWB CC Monitoring.
    Message processing failed. Cause: com.sap.aii.messaging.adapter.trans.TransformException: Error converting Message: 'java.lang.Exception: Exception in XML Parser (format problem?):'java.lang.NullPointerException''; nested exception caused by: java.lang.Exception: Exception in XML Parser (format problem?):'java.lang.NullPointerException'
    Any ideas, why this error we are getting.....
    Thanks in advance,
    Regards,
    Vasu

    Hi Vasu,
    Not in the Mapping of IR.
    In BIC Mapping Designer you have to test with the standard Mappings by providing the sample file whether the Conversion is happening correctly or not.
    You have to take the same input file that what ever you are having now.
    So that it will say clearly what is the problem in converting the XMLto the required EDI Format...
    Check whether you have any Date Format Values are comming from the input file.
    Regards
    Seshagiri

  • Attempt to process file failed with Exception in XML Parser-format problem

    Hi all,
    Iam getting an unusual error in the J2EE stack in XI.
    And the message is:
    006-11-30 17:31:07 Error Attempt to process file failed with Exception in XML Parser (format problem?):'com.sap.engine.lib.xml.parser.NestedSAXParserException: Fatal Error: com.sap.engine.lib.xml.parser.ParserException: Invalid char #0xf(:main:, row:1, col:1044002)(:main:, row=1, col=1044002) -> com.sap.engine.lib.xml.parser.ParserException: Invalid char #0xf(:main:, row:1, col:1044002)' 2006-11-30 17:31:07 Error Exception caught by adapter framework: null 2006-11-30 17:31:07 Error Delivery of the message to the application using connection AFW failed, due to: RecoverableException.
    My scenerio iam posting IDOC to a flat file with content conversion in the receiver side,the mapping got executed successfully and in the audit log i found that the error was after the 'Start converting XML document content to plain text'.
    This means that error occured during content conversion of XML to the prescribed file format.
    Can anyone suggest any better approach using which we may trace the junk data in IDoc. Manual adhoc approach could take time and is error prone.
    Thanks in advance...
    karun

    Hi Bhavesh,
    Thanks for the early reply. I checked the mapping and everything is fine and the output is also in valid XML format.
    The audit log shows that the mapping got executed successfully and the error is after the step 'Start converting XML document content to plain text '. Is there any constraint in the file adapter regarding the message size for parsing.
    2006-11-30 17:30:50 Success Transfer: "BIN" mode, size 2912595 bytes, character encoding -
    2006-11-30 17:30:50 Success Start converting XML document content to plain text
    2006-11-30 17:31:07 Error Attempt to process file failed with Exception in XML Parser (format problem?):'com.sap.engine.lib.xml.parser.NestedSAXParserException: Fatal Error: com.sap.engine.lib.xml.parser.ParserException: Invalid char #0xf(:main:, row:1, col:1044002)(:main:, row=1, col=1044002) -> com.sap.engine.lib.xml.parser.ParserException: Invalid char #0xf(:main:, row:1, col:1044002)'
    2006-11-30 17:31:07 Error Exception caught by adapter framework: null
    2006-11-30 17:31:07 Error Delivery of the message to the application using connection AFW failed, due to: RecoverableException.
    2006-11-30 17:31:07 Success The asynchronous message was successfully scheduled to be delivered at Thu Nov 30 17:36:07 GMT 2006.
    2006-11-30 17:31:07 Success The message status set to WAIT.
    2006-11-30 17:31:08 Success Acknowledgement creation triggered for type: SystemErrorAck
    2006-11-30 17:31:08 Success Acknowledgement sent successfully for type: SystemErrorAck
    2006-11-30 17:36:08 Success Retrying to deliver message to the application. Retry: 1

  • Parsing formatted String to Int

    How can I parse formatted string to Integer ?
    I have a formated string like this $900,000 and I need to convert it to 900000 so I could do calculations with it.
    I tried something like this
    NumberFormat nf = NumberFormat.getIntegerInstance(request.getLocale());
    ttlMargin=nf.parse(screenVal);I got this exception
    "java.lang.NumberFormatException: For input string: "$1,050,000""

    I am working on the JSP file that provides
    margins,sales etc. I am reading this data off the
    screen where it is beeing displayed according to the
    accounting practices.
    That's why I get it as a formatted string and why I
    am trying covert that string to the numberScreen-scraping is a problematic, bad design. It sounds like what you really want is to call a web service which returns its results as data that a program can understand (XML, for example), not HTML (which is meant more for humans to read). I know, you probably can't change the design at this point... just food for thought. In the meantime, you'll probably have to manually parse those strings yourself by stripping out the '$' and ',' characters and then use parseInt on the result.

  • Formatting dates in a table in webdynpro java for mutliple entries.

    Hi all,
    I have a requirement to format date values in a table for multiple entries to dd/MM/yyyy format in webdynpro java for mutiple line items in that table.
    Please help me out with the technique for the same.
    Thanks and Regards,
    Soumyadeep.

    Hi,
    here is the code for changing the formatting the date.
    Date currentDate = new Date ();
                DateFormat df =  DateFormat.getDateInstance(DateFormat.SHORT);
                String today = df.format(currentDate);
                SimpleDateFormat sdfInput = new SimpleDateFormat("dd/mm/yyyy");
                SimpleDateFormat sdfOutput = new SimpleDateFormat ("mm/dd/yyyy");
    try {
                      String dateft = sdfOutput.format((Date) sdfInput.parse(df.format(currentDate)));
                } catch (ParseException e) {

  • Problem formatting date.

    I have a problem in validating and formatting date input by the user. The user input format is dd-MM-yyyy. I have to validate it and format it to dd-MMM-yy format. I tried the below code.
    import java.util.*;
    import java.text.*;
    public class DateFormatter{
         public static void main(String[] args){
              String str = "24-12-20gg";
              SimpleDateFormat sdf = new SimpleDateFormat("dd-MM-yyyy");
              try{
                   sdf.setLenient(false);
                   Date date = sdf.parse(str);
                   System.out.println(date);
              }catch(Exception e){
                   System.out.println(e);
    The above code parses the date as - Tue Dec 24 00:00:00 IST 0020 . I want to throw an exception if it is not a date and is not of four digits. Any solution ?.

    Why not Java support such things. This will help to avoid reinventing the
    wheel.Java does support such things; there is no need to reinvent the wheel. Example:
    import java.text.*;
    import java.util.*;
    public class DateParseDemo {
        public static void main(String[] args) {
            new DateParseDemo().go();
        public void go() {
            String format = "dd-MM-yyyy";
            String goodDate = "24-12-2003";
            String badDate = "Dec 24, 2004";
            if (dateIsValid(format, goodDate)) {
                System.out.println("\"" + goodDate + "\" is valid!");
            if (!dateIsValid(format, badDate)) {
                System.out.println("\"" + badDate + "\" is NOT valid!");
        public boolean dateIsValid(String format, String date) {
            boolean valid = false;
            DateFormat df = new SimpleDateFormat(format);
            Date parsed;
            try {
                parsed = df.parse(date);
                valid = true;
            } catch (ParseException pe) {
                // log exception
            return valid;

  • How to parsing xml data in sql statement??

    Hi friends, I have a table which contain column as clob ,stores in xml format, for example my column contain xml data like this
    <Employees xmlns="http://TargetNamespace.com/read_emp">
       <C1>106</C1>
       <C2>Harish</C2>
       <C3>1998-05-12</C3>
       <C4>HR</C4>
       <C5>1600</C5>
       <C6>10</C6>
    </Employees>
      Then how to extract the data in above xml column data using SQL statement...

    Duplicate post
    How to parsing xml data in sql statement??

  • How to parse timestamp data

    Hi,
    I am not able to parse timestamp data. I am bringing this timestamp from AD through LDAP attribute through java code. I want date and time from this timestamp so that I can compare it with another date and time and get the difference between the two.
    If anybody knows the solution for this then please let me know.
    Thanks,
    Kalpana.

    Hi Kalpana,
    try this to convert AD date to java date format
         final long FILETIME_EPOCH_DIFF = 0xa9735dcc400L;
         final long HUNDRED_NANO_PER_MILLI_RATIO = 10000L;
         long activeDirDate = 129476773898586231L;
         long l1 = activeDirDate / 10000L;
         long l2 = l1 - FILETIME_EPOCH_DIFF;
         Date newdate = new Date(l2);
         System.out.println("AD Date is in Java Date format : "+newdate);
    Thanks,
    Pallavi

  • Parse a Date to String

    Hi
    i would use this to parse String to Date :
    public Date parseFromString(String dateString){
          try {
              java.text.SimpleDateFormat formatter
                  = new java.text.SimpleDateFormat("dd/MM/yy");
              return formatter.parse(dateString);
          catch (Exception e) {
          return null;
      }how can i parse a Date to string?
    Thanks
    D

    check the API Docs for SimpleDateFormat - particularly the format method. public StringFormatFromDate(Date date){
          try {
              java.text.SimpleDateFormat formatter
                  = new java.text.SimpleDateFormat("dd/MM/yy");
              return formatter.format(date);
          catch (Exception e) {
               // You really shouldn't catch Exception - and you really should do something in your catch
               // blocks so you don't post a question like "my code executes no problem, but nothing happens...
               e.printStackTrace();
          return null;
      }

  • Parsing a date string

    I need to parse a bunch of date strings in 'UTCG' format (whatever that really means).
    They all look like:
    1 Jan 2001 00:00:00.00
    I can't figure out which of the Java date formats parse this. I've tried many varients of:
    DateFormat.getTimeInstance(DateFormat.MEDIUM,Locale.GERMANY)
    without success.
    Help!!!!

    Here is a bit of info from the API doc - notice in the first paragraph it talks about the Date object, format seems similar. At the bottom of info is the Short, Long, etc, format tyoes, check those out... - Bart
    public abstract class DateFormat
    extends Format
    DateFormat is an abstract class for date/time formatting subclasses which formats and parses dates or time in a language-independent manner. The date/time formatting subclass, such as SimpleDateFormat, allows for formatting (i.e., date -> text), parsing (text -> date), and normalization. The date is represented as a Date object or as the milliseconds since January 1, 1970, 00:00:00 GMT.
    DateFormat provides many class methods for obtaining default date/time formatters based on the default or a given locale and a number of formatting styles. The formatting styles include FULL, LONG, MEDIUM, and SHORT. More detail and examples of using these styles are provided in the method descriptions.
    DateFormat helps you to format and parse dates for any locale. Your code can be completely independent of the locale conventions for months, days of the week, or even the calendar format: lunar vs. solar.
    To format a date for the current Locale, use one of the static factory methods:
    myString = DateFormat.getDateInstance().format(myDate);
    If you are formatting multiple dates, it is more efficient to get the format and use it multiple times so that the system doesn't have to fetch the information about the local language and country conventions multiple times.
    DateFormat df = DateFormat.getDateInstance();
    for (int i = 0; i < a.length; ++i) {
    output.println(df.format(myDate) + "; ");
    To format a date for a different Locale, specify it in the call to getDateInstance().
    DateFormat df = DateFormat.getDateInstance(DateFormat.LONG, Locale.FRANCE);
    You can use a DateFormat to parse also.
    myDate = df.parse(myString);
    Use getDateInstance to get the normal date format for that country. There are other static factory methods available. Use getTimeInstance to get the time format for that country. Use getDateTimeInstance to get a date and time format. You can pass in different options to these factory methods to control the length of the result; from SHORT to MEDIUM to LONG to FULL. The exact result depends on the locale, but generally:
    SHORT is completely numeric, such as 12.13.52 or 3:30pm
    MEDIUM is longer, such as Jan 12, 1952
    LONG is longer, such as January 12, 1952 or 3:30:32pm
    FULL is pretty completely specified, such as Tuesday, April 12, 1952 AD or 3:30:42pm PST.

  • Parsing a date string without knowing the pattern

    Hi guys.
    Imagine this tool that works with files. At a certain point the tool reads a date from a certain file. The date may come in different flavours (read patterns), depending from file to file, I do not have control over there, so I'm stuck in this moment when I have to parse the date without knowing it's pattern. In one file it's 05-12-2005, in others it's 2007-11-03 12:50:00.
    How do I proceed here?
    Thanks.

    This is going to be a problem.
    The most obvious advice would be to create a list of known patterns and then try each of them with the String in question. One of the downsides of this is that you may get false positives, because for example you interpret a month as a day or vice-versa.
    I think your starting place will be to figure out how many different date formats you actually have. If the answer truly is more than you can count or new ones are created all the time then you are going to have address that somehow because you simply can't have that. There's just no way to deal with a unlimited number of formats.
    If you do get a list of formats then I would try what I first suggested but think of ways in which you can avoid false positives.

  • Parsing Options Data from Files

    With the help of the folks on this discussion board, I now have a directory filled with daily options data for all traded options. What I would like to do now is parse the data out so that I have one file with all the options data for one or two stocks.
    Now I have a file named in the YYYYMMDD.txt format for every trading day. The data in the file looks like this:
    AAF,A,,,,,5.65,0,30.0,6.25,6.5,334,2008
    AAG,A,,,,,1.71,4,35.0,1.7,1.79,2049,2008
    I need to pull information out of that file for specific symbols, and concatenate the date, which can be derived from the file name, at the end of each line.
    So far I have a script that goes through the files and parses the information, but I do not know how to insert the information into a blank document and add the date. Here is what I have so far.
    set fPath to "path:to:directory:"
    tell application "Finder" to set tList to name of every file of folder fPath
    repeat with i in tList
    do shell script "grep ,PGH, " & quoted form of POSIX path of fPath & i
    end repeat
    Thank you in advance.

    Thanks for the quick reply.
    Here is an exert from an example file that I included in my original post. Let me describe the information a little bit, and I think you will see where I am going with grep.
    AAF,A,,,,,5.65,0,30.0,6.25,6.5,334,2008
    AAG,A,,,,,1.71,4,35.0,1.7,1.79,2049,2008
    The first data is the options symbol, and the second is the underlying stock symbol for the option. I have only included two rows but the text files include hundreds of thousands of rows. The first two rows that I am using in my example are for Agilent Technologies whose stock symbol is "A".
    So if I use the UNIX command GREP and do , stock symbol , plus the file I can pull out the options information I am interested in for just one stock. In the case of my original post, I was trying to get information for PGH.
    For example,
    grep ,PGH, /path/to/file/20080102.txt
    returns:
    PGHAC,PGH,,,,,2.7,0,15.0,2.8,3.1,81,2008
    PGHAD,PGH,,,,,0.05,16,20.0,0.0,0.05,5995,2008
    PGHAV,PGH,,,,,5.5,0,12.5,5.2,5.6,0,2008
    PGHAW,PGH,,,,,0.6,96,17.5,0.45,0.7,3659,2008
    PGHAX,PGH,,,,,0.1,0,22.5,0.0,0.05,1476,2008
    PGHBC,PGH,,,,,,0,15.0,2.8,3.1,0,2008
    PGHBD,PGH,,,,,,0,20.0,0.0,0.1,0,2008
    PGHBV,PGH,,,,,,0,12.5,5.3,5.6,0,2008
    PGHBW,PGH,,,,,0.55,0,17.5,0.6,0.75,22,2008
    PGHBX,PGH,,,,,,0,22.5,0.0,0.05,0,2008
    PGHDC,PGH,,,,,2.7,0,15.0,2.8,3.1,376,2008
    PGHDD,PGH,,,,,0.15,8,20.0,0.1,0.15,3048,2008
    PGHDV,PGH,,,,,5.6,0,12.5,5.3,5.6,29,2008
    PGHDW,PGH,,,,,0.95,26,17.5,0.85,1.0,2485,2008
    PGHDX,PGH,,,,,0.15,0,22.5,0.0,0.1,224,2008
    PGHGC,PGH,,,,,2.9,10,15.0,2.8,3.2,133,2008
    PGHGD,PGH,,,,,0.3,16,20.0,0.2,0.3,563,2008
    PGHGV,PGH,,,,,5.6,0,12.5,5.2,5.6,10,2008
    PGHGW,PGH,,,,,1.05,7,17.5,0.95,1.15,1347,2008
    PGHGX,PGH,,,,,,0,22.5,0.0,0.1,0,2008
    PGHMC,PGH,,,,,0.05,0,15.0,0.0,0.05,915,2008
    PGHMD,PGH,,,,,2.1,25,20.0,1.95,2.2,1072,2008
    PGHMV,PGH,,,,,0.03,0,12.5,0.0,0.05,30,2008
    PGHMW,PGH,,,,,0.1,5,17.5,0.1,0.25,4430,2008
    PGHMX,PGH,,,,,4.6,0,22.5,4.4,4.8,164,2008
    PGHNC,PGH,,,,,0.1,0,15.0,0.05,0.1,30,2008
    PGHND,PGH,,,,,2.55,0,20.0,2.15,2.4,35,2008
    PGHNV,PGH,,,,,,0,12.5,0.0,0.05,0,2008
    PGHNW,PGH,,,,,0.4,5,17.5,0.35,0.5,38,2008
    PGHNX,PGH,,,,,,0,22.5,4.6,5.0,0,2008
    PGHPC,PGH,,,,,0.2,10,15.0,0.15,0.25,431,2008
    PGHPD,PGH,,,,,2.6,35,20.0,2.55,2.8,326,2008
    PGHPV,PGH,,,,,0.1,0,12.5,0.0,0.1,115,2008
    PGHPW,PGH,,,,,0.85,0,17.5,0.75,0.9,1431,2008
    PGHPX,PGH,,,,,4.5,0,22.5,4.9,5.2,91,2008
    PGHSC,PGH,,,,,0.5,0,15.0,0.35,0.5,57,2008
    PGHSD,PGH,,,,,3.3,0,20.0,3.0,3.4,527,2008
    PGHSV,PGH,,,,,0.15,30,12.5,0.05,0.15,0,2008
    PGHSW,PGH,,,,,1.45,1,17.5,1.3,1.45,664,2008
    PGHSX,PGH,,,,,5.3,0,22.5,5.3,5.7,117,2008
    Which is the options data for one stock on one day. But I want the options data for one stock for everyday. I hope this makes sense.

  • Parse table data from HTML page

    Hello. I have a program that creates an HTML page with several tables to present some data. What I would like to do is extract the data row by row from one of the tables, and parse the data I'm interested in from each row. Can anyone suggest how I should approach this problem?

    Andrew,<br /><br />1. If you want to append these data to the existent one, you've to read the XMP of the file.<br /><br />2. You've to add or modify the Dublin Core Description field <dc:description><br /><br />For example:<br /><rdf:Description rdf:about='uuid:d659be9a-21d7-11d9-9b6a-c1fd593acb83'<br />  xmlns:dc='http://purl.org/dc/elements/1.1/'><br /> <dc:format>image/jpeg</dc:format><br /> <dc:description><br />  <rdf:Alt><br />   <rdf:li xml:lang='x-default'>Image Caption</rdf:li><br />  </rdf:Alt><br /> </dc:description><br /></rdf:Description><br /><br />3. You've to replace the app1 block on the JPG with the new XMP<br /><br />Regards,<br /><br />Juan Pablo

  • OWB11gR2 - simple and easy way to load XML formatted data into db tables?

    Hi,
    we're currently trying to load table data stored in XML files into our datawarehouse using OWB 11gR2.
    However, we're finding this is not quite as trivial as loading flat files...
    Most postings on this forum points to the blog-entry title "Leveraging XDB" found here (http://blogs.oracle.com/warehousebuilder/2007/09/leveraging_xdb.html).
    This blog also references the zip-file owb_xml_etl_utils.zip, which seems to have disappeared from it's original location and can now be found on sourceforge.
    Anyway, the solution described is for OWB 10g, and when trying to import experts from the zip-file etc. we end up not being able to run the "Create ETL from XSD" expert, as the 11gR2 client is different from the 10g and does not have the Experts menu et.al.
    Also, this solution was published over 3 years ago, and it seems rather strange that importing XML-formatted data should still be so cumbersome in the newer warehouse builder releases.
    The OWB 11gR2 documentation is very sparse (or rather - quite empty) on how to load XML data, all it has is a few lines on "XML Transformations", giving no clue as to how one goes about loading data.
    Is this really the state of things? Or are we missing some vital information here?
    We'd have thought that with 11g-releases, loading XML-data would be rather simple, quick and painless?
    Is there somewhere besides the blog mentioned above where we can find simple and to the point guidelines for OWB 11gR2 on how to load XML-formatted data into Oracle tables?
    Regards,
    -Haakon-

    Yes it is possible to use SQL*Loader to parse and load XML, but that is not what it was designed for and so is not recommended. You also don't need to register a schema, just to load/store/parse XML in the DB either.
    So where does that leave you?
    Some options
    {thread:id=410714} (see page 2)
    {thread:id=1090681}
    {thread:id=1070213}
    Those talk some about storage options and reading in XML from disk and parsing XML. They should also give you options to consider. Without knowing more about your requirements for the effort, it is difficult to give specific advice. Maybe your 7-8 tables don't exist and so using Object Relational Storage for the XML would be the best solution as you can query/update tables that Oracle creates based off the schema associated to the XML. Maybe an External Table definition works better for reading the XML into the system because this process will happen just once. Maybe using WebDAV makes more sense for loading XML to be parsed (I don't have much experience with this, just know it is possible from what I've read on the forums). Also, your version makes a difference as you have different options available depending upon the version of Oracle.
    Hope all that helps as a starter.
    Edited by: A_Non on Jul 8, 2010 4:31 PM
    A great example, see the answers by mdrake in {thread:id=1096784}

Maybe you are looking for

  • Oracle 9i installed, now slower boot times

    I recently installed Oracle 9i on my Dell home computer running Windows xp professional. Since then, I've experienced significantly slower boot times. Please let me know what I can do. Thanks. Rob

  • Can I restore a wrinkled black and white picture

    How Can I restore a wrinkled black and white picture

  • SIP and VOIP

    Hey.. I have almost succesfully published and allowed RTP and SIP through TMG, we can make calls from the VOIP phone, but we are unable to receive calls. When we call the VOIP phone then it sends UDP traffic ranging from 10.000 to 50.000 and that UDP

  • SRM and XI

    Hi Experts, I am currently going to work on SRM scenarios which will be Integrated with other systems via XI. I have already gone and still going through the documents provided by SAP and mentioned in different blogs in SDN, they are very useful. Sti

  • IPad mini with retina frequent random restart with 802 update

    I Have updated my iPad mini2 to iOS 802, since then it started randomly with blue screen. it restarts 1-2 times every hour During use. It is very much frustrating to use. any solution?