Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 4 of 4

Thread: extracting data from server parallely from jsp page

  1. #1
    Junior Member
    Join Date
    Jun 2012
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default extracting data from server parallely from jsp page

    I have a home page.jsp where there are number of links to fetch data from Oracle data
    base.

    For quick operation, the links should be allowed to fetch data parallely i.e. if the client
    clicks at one link and starts extracting data from database at the same time if he/she clicks
    at the other link the page should start fetching data from the database.

    I came to know that oracle does not allow to run multiple queries parallely. so how can I do it?


  2. #2
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: extracting data from server parallely from jsp page

    Moved to JavaServer Pages: JSP & JSTL
    Quote Originally Posted by nischalinn View Post
    I came to know that oracle does not allow to run multiple queries parallely. so how can I do it?
    Where did you get that information? Did you try to run the queries? Was there a problem with delay?

  3. #3
    Junior Member
    Join Date
    Jun 2012
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: extracting data from server parallely from jsp page

    @ copeg ya Oracle did not allow parallel processing of queries. I tried that. We can do it via java threading but I do not know how to implement threading with jsp pages.

  4. #4
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: extracting data from server parallely from jsp page

    @ copeg ya Oracle did not allow parallel processing of queries.
    Do you mean you are allowed a single processor instance? You did not answer my latter 2 questions...there is no reason to optimize something that doesn't need optimizing

    Quote Originally Posted by nischalinn View Post
    We can do it via java threading but I do not know how to implement threading with jsp pages.
    If you think you should, you should think hard about your design.

Similar Threads

  1. Replies: 1
    Last Post: April 9th, 2012, 05:13 PM
  2. [SOLVED] Extracting data from data base (yes)
    By bobbyk in forum Collections and Generics
    Replies: 1
    Last Post: March 13th, 2012, 07:07 AM
  3. Problem extracting data from file
    By hello_world in forum File I/O & Other I/O Streams
    Replies: 17
    Last Post: August 21st, 2011, 09:35 PM
  4. Replies: 1
    Last Post: August 12th, 2011, 10:09 AM