Help with linking ProC sample1.pc

Hi, I can precompile and compile the demo program sample1.pc,
but when I link it fails. Here is the command I'm using:
proc MODE=ORACLE sample1.pc
gcc -I$ORACLE_HOME/precomp/public -L$ORACLE_HOME/lib -lsql
sample1.c
The error I get is
In function 'sq_error':
undefined reference to 'sqlglm'
undefined reference to 'sqlcxt'
In function 'main':
undefined reference to 'sqlcxt'
undefined reference to 'sqlcxt'
undefined reference to 'sqlcxt'
sqlcxt is a function in the sql lib, so I thought the linker
might not be finding the library, but it is. I get an error if
I try making the library path incorrect and using -lsql
I'm using gcc 2.7.2.3 and RedHat 5.2
If anyone can tell me what I need to do or change I would really
appreciate it.
Thanks! R. Patton
null

Valeri Velkov (guest) wrote:
: Hi there ,
: I'm sory I added an extra message repeating yours !
: I'm using RedHat 5.1 and the same gcc 2.7.2.3.
: As some of the header files were not in the /usr/include
: I created symbolic links to the correct directory in the
: /usr/include .
: But my problem is even worse than yours !!!
: proc core-dumps BIG TIME !
: Any help on this will be appreciated !
: Thanks
: Valeri
: : I'm using gcc 2.7.2.3 and RedHat 5.2
: : If anyone can tell me what I need to do or change I would
: really
: : appreciate it.
: : Thanks! R. Patton
Whenever proc core-dumps, the first thing to check is that
LD_LIBRARY_PATH contains $ORACLE_HOME/lib.
Then check that $ORACLE_HOME/precomp/admin/pcscfg.cfg is
correct (I needed to expand $ORACLE_HOME to get it working).
And finally, you NEED to use the supplied makefile (demo_proc.mk)
to call proc. (do a "make -f demo_proc.mk myfile.c"
instead of "proc myfile")
I have been using Pro*C on Linux for some time, and it worked
fine until I upgraded gcc (I now have gcc 2.8.1 installed, and
Pro*C hasn't worked since - so beware)
null

Similar Messages

  • Anyone help with linking a bank account to your apple id. The form wants a phone number I only have a UK mobile number and it doesnt sem to want to accept it keeps l;ooping me back to entering a phone number.

    Anyone help with linking a bank account to your apple id. The form wants a phone number I only have a UK mobile number and it doesnt sem to want to accept it keeps l;ooping me back to entering a phone number.

    If you are trying to setup a charge card number on the Apple Store - make sure you are in the Correct country site - icon bottom right last time I saw it - where you can change country.  

  • Help with linking files

    I have several projects with 1000's of little clips in them- that have become unlinked- normally I can just use link media and that resolves it, but it seems like there has been either name changes to them (numbering in project panel seems different) or pathway to my ext hard drive has changed-help appreciated!!!

    Are you on a Mac, or a PC?
    If PC, what OS version do you have?
    The easiest way to find out exactly how your version of Windows sets drive letters is to go to Help, then type in "drive letter," without the quotation marks in the query box. You will then get all references to drive letter, and choose Setting Drive Letter, or similar syntax. That will step you through the process, and probably even provide a link to the disc management utility for your version.
    If you are on a Mac, then it would be Volume Name, but I cannot help with anything more than that, being a PC-only guy.
    Good luck,
    Hunt

  • Help with linked files/ compound paths please

    Hi - I am working with an illustrator file from another designer which has a compound path with linked files - when you link a new file the image is automatically resized and clipped to the path.  I am able to edit it but i want to make my own from scratch and can't figure it out. I'm working with Illustrator CS6. Any help greatly appreciated. Thanks

    Hi Steve - thanks for the reply - my question was a bit vague as I wasn't entirely sure what I was working with but I think your point about the new linked image scaling to the same size as the existing file has helped me understand it a bit more.  What I want to know how to do is to make an entirely new file with a clipping mask that I then link an image to.  I made a file with a clipping mask on the page and then chose file>place but the image I import is not being clipped (I ticked the link option when importing it) I see it working with the existing file I'm working with but I need to know how to make a new one myself.
    If this makes it clearer here's what I want to do ...
    I am making a banner, I have 3 flat jpegs of t-shirts that I want to place on the banner without their white background.  I made a clipping mask the same shape as the outline of the t-shirt and now I want to import the jpeg so it is a linked file and is clipped by the clipping mask and so I can use it in future to import different t-shirt image in without scaling and clipping them each time.
    REally appreciate your help, thanks.

  • Help with linking Keynotes

    Hey, I am using Keynote 2. Any help with this issue would be greatly appreciated, this is what I've got. . . . . I want to have one Keynote presentation that I use as a sort of Table of Contents and create links to other keynotes that I will be using on any given night. I have the link working fine, but when the linked keynote gets to the last slide the presentation ends, I want it to go back to my contents slide. This is how powerpoint does it. Any suggestions???

    Welcome to the discussions, Amaj10.
    No, Keynote doesn't work that way. If you want a link back to your contents, you need to place a link on the last slide that will link you to the contents presentation.

  • Help with linking buttons to Scenes

    Hey,
    Rookie to Flash and AS3. Just needed some help with my buttons. Im making a flash program about pancakes (random I know). I have a "Mainmenu" scene and then a "Recipe" scene. I have a button on my mainmenu which takes me to the recipe page when I click it, the code behind the button is
    "stop();btn_recipe.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);function mouseDownHandler(event:MouseEvent):void {
    gotoAndStop(1, "Recipe");
    Then when I arrive at my recipe page I have a button which will take me back to my MainMenu, the code behind that button is:
    "stop();btn_home.addEventListener(MouseEvent.MOUSE_DOWN, mouse5DownHandler);function mouse5DownHandler(event:MouseEvent):void {
    gotoAndPlay(1, "MainMenu");
    So I run my program and the first button works and takes me to recipe page but the button to get to the main menu does nothing, click it and no response or anything
    Please help

    First, hopefully having all your code mushed onto the same line is a copy/paste error, otherwise it should look like...
    stop();
    btn_recipe.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
    function mouseDownHandler(event:MouseEvent):void {
         gotoAndStop(1, "Recipe");
    If the intention is to click the buttons to make them work, then you should use CLICK instead of MOUSE_DOWN.  MOUSE_DOWN can be a persistent state whereas CLICK involves releasing it afterwards.
    As for the code to get you back home, where is it located on the timeline?  Are you getting any error messages when you try to use it?
    One thing you should learn to use is the trace() function.  It is useful for troubleshooting.  You can use it now to see if your second button is talking to the function at all...
    stop();
    btn_home.addEventListener(MouseEvent.CLICK, mouse5DownHandler);
    function mouse5DownHandler(event:MouseEvent):void {
         trace("the button works okay");
         gotoAndPlay(1, "MainMenu");
    If you don't get that message in the output panel, you'll know the button is not properly coded to work.
    Most folks here will recommend you get away from using scenes in a design that includes navigation--they have a history of being problematic.  Instead of using scenes, divide the one main timeline up into sections or use movieclips for the sections and manage their visibility... or do a bit of both.

  • Need help with linked lists.

    I have a school assignment to make a linked list with a linked list.
    The first basic is to make a list of people, and link them together in a linked list. So far, so good.
    The problem comes when I'm going to make linked lists in each of these objects that include the relationships between the people in it.
    So If I have 10 peolpe in a list, person 1 might know person 3, 4 and 8. They will all know person 1 back of course. My problem is that it isn't just one group of friends, person 3 might not know person 4 and 8, but maybe he knows person 10. So all need "their own" list.
    Therefor I can't see how I'm supposed to use linked lists for them, as I can't just link them togeter with e.g. "Person nextFriend;" The text says specifically to use linked lists. Well, I'm stuck.
    Edited by: Skruf on Jan 27, 2009 3:22 PM

    Skruf wrote:
    I know it doesn't matter what the objects represent, I just needed a way to explain.
    But a linked list is basically just a redirect to the next in the list, right?No, a linked list is a particular implementation of a list.
    Then I can't see how it's possible to make individual friend lists.No clue what problem you're having.
    People with links
    null - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - nullThat means nothing.
    I can't see how that can be used to make independent links. Do they mean that I'm support to stort it in arrays or something then?
    The person list, is (as you can see in my "illustration") only a "next" and "previous" person, so I can't use that way to link the friends together. nextFriend and lastFriend obviously doesn't work.
    That's my problemLike I said: A Person object contains a linked list. In that linked list you put references to that Person's friends.

  • Help with linked lists and searching

    Hi guys I'm very new to java. I'm having a problem with linked lists. the program's driver needs to create game objects, store them, be able to search the linked list etc. etc. I've read the API but I am really having trouble understanding it.
    First problem is that when I make a new game object through the menu when running the program, and then print the entire schedule all the objects print out the same as the latest game object created
    Second problem is searching it. I just really have no idea.
    Here is the driver:
    import java.util.*;
    public class teamSchedule
         public static void main (String[]args)
              //variables
              boolean start;
              game game1;
              int selector;
              Scanner scanner1;
              String date = new String();
              String venue = new String();
              String time = new String();
              String dateSearch = new String();
              double price;
              String opponent = new String();
              int addindex;
              List teamSchedLL = new LinkedList();
              String dateIndex = new String();
              String removeYN = new String();
              String venueIndex = new String();
              String opponentIndex = new String();
              start = true; //start makes the menu run in a while loop.
              while (start == true)
                   System.out.println("Welcome to the Team Scheduling Program.");
                   System.out.println("To add a game to the schedule enter 1");
                   System.out.println("To search for a game by date enter 2");
                   System.out.println("To search for a game by venue enter 3");
                   System.out.println("To search for a game by opponent enter 4");
                   System.out.println("To display all tour information enter 5");
                   System.out.println("");
                   System.out.println("To remove a game from the schedule enter search for the game, then"
                                            + " remove it.");
                   System.out.println("");
                   System.out.println("Enter choice now:");
                   scanner1 = new Scanner (System.in);
                   selector = scanner1.nextInt();
                   System.out.println("");
                   if (selector == 1)
                        //add a game
                        scanner1.nextLine();
                        System.out.println("Adding a game...");
                        System.out.println("Enter game date:");
                        date = scanner1.nextLine();
                        System.out.println("Enter game venue:");
                        venue = scanner1.nextLine();
                        System.out.println("Enter game time:");
                        time = scanner1.nextLine();
                        System.out.println("Enter ticket price:");
                        price = scanner1.nextDouble();
                        scanner1.nextLine();
                        System.out.println("Enter opponent:");
                        opponent = scanner1.nextLine();
                        game1 = new game(date, venue, time, price, opponent);
                        teamSchedLL.add(game1);
                        System.out.println(teamSchedLL);
                        System.out.println("Game created, returning to main menu. \n");
                        start = true;
                   else if (selector == 2)
                        //search using date
                        scanner1.nextLine();
                        System.out.println("Enter the date to search for in the format that it was entered:");
                        dateIndex = scanner1.nextLine();
                        if (teamSchedLL.indexOf(dateIndex) == -1)
                             System.out.println("No matching date found.  Returning to main menu.");
                             start = true;
                        else
                             //give user option to remove game if they wish.
                             System.out.println(teamSchedLL.get(teamSchedLL.indexOf(dateIndex)));
                             System.out.println("Would you like to remove this game? Y/N");
                             removeYN = scanner1.nextLine();
                             if (removeYN == "Y" || removeYN == "y")
                                  teamSchedLL.remove(teamSchedLL.indexOf(dateIndex));
                                  System.out.println("Scheduled game removed.");
                        System.out.println("\n Returning to main menu. \n");
                        start = true;
                   else if (selector == 3)
                        //search using venue name
                        scanner1.nextLine();
                        System.out.println("Enter the venue to search for in the format that it was entered:");
                        venueIndex = scanner1.nextLine();
                        if (teamSchedLL.indexOf(venueIndex) == -1)
                             System.out.println("No matching venue found.  Returning to main menu.");
                             start = true;
                        else
                             //give user option to remove game
                             System.out.println(teamSchedLL.get(teamSchedLL.indexOf(venueIndex)));
                             System.out.println("Would you like to remove this game? Y/N");
                             removeYN = scanner1.nextLine();
                             if (removeYN == "Y" || removeYN == "y")
                                  teamSchedLL.remove(teamSchedLL.indexOf(venueIndex));
                                  System.out.println("Scheduled game removed.");
                        System.out.println("\n Returning to main menu. \n");
                        start = true;
                   else if (selector == 4)
                        //search using opponent name
                        scanner1.nextLine();
                        System.out.println("Enter the opponent to search for in the format that it was entered:");
                        opponentIndex = scanner1.nextLine();
                        if (teamSchedLL.indexOf(opponentIndex) == -1)
                             System.out.println("No matching opponent found.  Returning to main menu.");
                             start = true;
                        else
                             //give user option to remove game
                             System.out.println(teamSchedLL.get(teamSchedLL.indexOf(opponentIndex)));
                             System.out.println("Would you like to remove this game? Y/N");
                             removeYN = scanner1.nextLine();
                             if (removeYN == "Y" || removeYN == "y")
                                  teamSchedLL.remove(teamSchedLL.indexOf(opponentIndex));
                                  System.out.println("Scheduled game removed.");
                        System.out.println("\n Returning to main menu. \n");
                        start = true;
                   else if (selector == 5)
                        //display tour info
                        System.out.println("Tour Schedule:");
                        System.out.println(teamSchedLL + "\n");
                   else
                        System.out.println("Incorrect choice entered. Returning to menu");
                        System.out.println("");
                        System.out.println("");
                        System.out.println("");
    and here is the game class:
    public class game
         private static String gameDate;
         private static String gameVenue;
         private static String gameTime;
         private static double gamePrice;
         private static String gameOpponent;
         public static String gameString;
         //set local variables equal to parameters
         public game(String date, String venue, String time, double price, String opponent)
              gameDate = date;
              gameVenue = venue;
              gameTime = time;
              gamePrice = price;
              gameOpponent = opponent;
         //prints out info about the particular game
         public String toString()
              gameString = "\n --------------------------------------------------------";
              gameString += "\n Date: " + gameDate + " | ";
              gameString += "Venue: " + gameVenue + " | ";
              gameString += "Time: " + gameTime + " | ";
              gameString += "Price: " + gamePrice + " | ";
              gameString += "Opponent: " + gameOpponent + "\n";
              gameString += " --------------------------------------------------------";
              return gameString;
    }I'm sure the formatting/style and stuff is horrible but if I could just get it to work that would be amazing. Thanks in advance.
    Message was edited by:
    wdewind

    I don't understand your first problem.
    Your second problem:
    for (Iterator it=teamSchedLL.iterator(); it.hasNext(); ) {
    game game = (game)it.next();
    // do the comparation here, if this is the game want to be searched, then break;
    }

  • Please help with this ProC error

    Here's what I'm getting:
    [oracle@dodona proc]$ make -f demo_proc.mk sample1
    make -f /oradb01/app/oracle/product/8.1.6/precomp/demo/proc/demo_proc.mk OBJS=sample1.o EXE=sample1 build
    make[1]: Entering directory `/usr/local/oracle816/app/oracle/product/8.1.6/precomp/demo/proc'
    proc iname=sample1
    proc: error in loading shared libraries: libclntsh.so.8.0: cannot read file data: No such file or directory
    make[1]: *** [sample1.o] Error 127
    make[1]: Leaving directory `/usr/local/oracle816/app/oracle/product/8.1.6/precomp/demo/proc'
    make: *** [sample1] Error 2
    My LD_LIBRARY_PATH is set. LIBHOME used in the demo makefile is set in $ORACLE_HOME/precomp/lib/env_precomp.mk as $(ORACLE_HOME)/lib/.

    You should find a symbolic link in your $ORACLE_HOME/lib directory:
    libclntsh.so -> libclntsh.so.8.0
    If the file or the link doesn't exist for some reason (maybe an installation problem), you can run $ORACLE_HOME/bin/genclntsh to recreate them.
    I also still had problems getting the makefile to find this file, so I modified the $ORACLE_HOME/lib/sysliblist file and added -lclntsh to the end, which works fine for me now.
    Hope this helps... Frank

  • Help with linking tables

    Hello,
    I am not really sure if this is a site that this question should be asked but I have done alot of searching and can't seem to find an answer so....
    I work for a large company that uses Oracle for its databases.
    In my department we use access link tables to look at the Oracle data.
    In one such database I need to link to the oracle tables but only see certain data when I open the link (like a fliter).
    I have no idea how to do this...I just know it can be done.. I have heard that you can use Oracle views to do the filtering on the server side and it would only return the filtered data. I think I have to do this with SQL.
    But I really dont know how to go about it.
    So I am posting here hoping that you guys could help me or point me in the right direction as I don't even know what questions to ask in google :)
    I will be glad to give any information you may need to help me out.
    Thanks a Million.

    user12063135 wrote:
    Hello,
    I have heard that you can use Oracle views to do the filtering on the server side and it would only return the filtered data. I think I have to do this with SQL.
    Thanks a Million.You heard it right and your thouts are are floating in the right direction.
    Use views and you will be fine.

  • Help with link to MP4 Video

    I need some help figuring out why the link to my Mp4 movies
    are not working. I created my website in Dreamweaver on a mac. On
    the video page I have direct link to several Mp4 movies which are
    located is the dame folder as the website is on a remote server.
    The direct link/path is correct but when the link is clicked I get
    a "This page cannot be found page". I also tried embedding the mp4
    into the video page and when the page is viewed I get a Q with a
    question mark over it. I also have links to wmv movies and those
    links all work and play fine. I just don't understand why wmv links
    work and mp4 links don't. I would link to know if there is an
    incompatibility problem and/or some technical issue with mp4's that
    causing the link not to work. I have attached the code I used to
    embed the mp4 and I believe it is correct. If anyone can shed some
    light on this topic I would greatly appreciate it. Thank
    you!

    Check this page and see if it works
    http://webdesign.about.com/od/video/a/add_web_video.htm

  • Need Help with Linking Question

    Not quite sure how to do this.
    I have a gallery page of thumbnails that I want to reference
    a different layout page for the individual image.
    What I want to happen is, when you click the thumbnail on the
    thumbnail gallery page, a new layout page opens in the same browser
    window with that thumbnails larger image. I know how to link the
    new .html page , or the larger image, But I don't know how to link
    them both so they both open?
    I have many images and pages of thumbnails that I have to do
    this with.
    Thanks for any help

    > a new layout page opens in the same browser window
    You want the new page to replace the current page in the
    browser viewport?
    > But I don't know how to link them both so they both
    open?
    I guess I don't understand what "both" is?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Orr 4" <[email protected]> wrote in message
    news:eb26ps$mlp$[email protected]..
    > Not quite sure how to do this.
    > I have a gallery page of thumbnails that I want to
    reference a different
    > layout page for the individual image.
    > What I want to happen is, when you click the thumbnail
    on the thumbnail
    > gallery page, a new layout page opens in the same
    browser window with that
    > thumbnails larger image. I know how to link the new
    .html page , or the
    > larger
    > image, But I don't know how to link them both so they
    both open?
    > I have many images and pages of thumbnails that I have
    to do this with.
    >
    > Thanks for any help
    >

  • Help with links in Dreamweaver8

    I am trying to get on speed with Dreamweaver8, then CS3. I
    built a custom site using Adobe CS2, Fireworks and then
    Dreamweaver8. I have 7 pages built from 3 different templates (with
    the same element but different layout). All the hyperlinks and
    links on the 7 pages worked just fine, but the moment I added a
    pop-up menu to the main page, all the links to other pages stopped
    working. I have looked over it , tried the auto link fix but can't
    seem to fix the broken links. Any tip or advice on how to go about
    this will be appreciated.
    Thanks.

    The ideal ratio for template pages to site pages is 1/#,
    meaning that you
    produce the entire site with a single template. This seems
    impossible at
    first blush, but it's not, particularly once you master the
    use of
    server-side includes, and CSS to build your pages. By this, I
    mean that you
    can handle subordinate section-specific navigation elements
    using
    server-side includes, and you can handle layout differences
    using CSS. It's
    not so hard.
    > On the pop-up, it was a just one menu pop-up on one of
    the links to one of
    > the
    > pages. I created it with the Behavior button in
    Fireworks
    New users find that irresistable. Even a little experience
    with them should
    tell you that it's deadly. There are much better ways to do
    those kinds of
    menus. But without seeing your code, we are all flying blind.
    > I can send you the pages for a review if you give me an
    address I can send
    > them to.
    Please, no. One of the benefits of a public forum like this
    one is that
    many people can participate/collaborate in fixing a problem.
    By sending
    someone a file, rather than making it public, you defeat that
    whole benefit.
    The best bet would be to upload the files to some webspace
    that you control,
    and post a link to the uploaded pages. Can you do that?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "inspt" <[email protected]> wrote in message
    news:[email protected]...
    > Murray wrote - "Why use templates at all with this kind
    of ratio? You know
    > it's
    > not
    > necessary to do this just because your layout changes a
    bit...."
    >
    > Thanks for your reply to my question. In answering your
    question or point
    > you
    > made above. You can easily tell that I am trying to get
    my hands around
    > using
    > the program. The layout of the pages changed almost all
    through the pages
    > and
    > the one way I thought I could get around that was to use
    different
    > template
    > files. At the end of the day, I got myself into more
    headaches and
    > heartaches -
    > all my links just disappeared on me. I am self-taught
    with a painfully
    > learning
    > experience. I believe there should be a better and
    easier way. I honestly
    > do
    > not know. Any help you can give me will be appreciated.
    >
    > On the pop-up, it was a just one menu pop-up on one of
    the links to one of
    > the
    > pages. I created it with the Behavior button in
    Fireworks, then
    > re-imported the
    > changes to Drmvr again and since then, the links got
    screwed up.
    >
    > I can send you the pages for a review if you give me an
    address I can send
    > them to.
    >
    > Thanks a lot for your help.
    >

  • Help with linking pages

    I have a database with 1 table and 4 enteries
    the field are
    idbook,title,desc,cover,page1,page2,page3
    I have a page that displays the title and desc and links to a
    details page that shows title desc cover and this page links to
    page1.cfm that show page 1 info this links to page 2 and so on
    When I select book 2 I get to see book 2 details but when I
    go from book 2 details I get the page 1 book 1 info not the info
    for page2 book2.
    What I am doing wrong I am using url parameters but no matter
    what book I select I always get book 1 page 1 info
    please help thhanks

    jnc1965 wrote:
    >
    > please help thhanks
    >
    You have coded something wrong or have bad data.
    Hope that helps.
    Ian
    P.S. What else can I do without knowing a single thing about
    either your
    data or your code.
    P.S.S. Unless you would like to hire somebody to fix it for
    you, then
    feel free to contact me for contract details.

  • Help with linking to filtered list

    Hi,
    I have a dynamic list which has several fields. One of the fields is Australian states, QLD, NSW.... I am trying to work out, with no success so far, how I would link from another page to the list where the States are filtered.
    The reason for this is so that people from QLD will only see the list for QLD when they click the link and so on.
    if anyone could help me with this I would appreciate it.
    thanks
    Cheers
    laurence

    Günter,
    I did try that but the list still showed all the states. I have done what you suggest in other pages where I have a recordset.
    SELECT *
    FROM file_upload
    WHERE file_upload.`file_state`='NT' AND file_upload.archive ='0'
    ORDER BY file_uploaddate DESC
    What I am trying and have no idea if this is possible, if you don't try you won't progess :-), is to have a link "QLD" on a page that when clicked will filter the list to "QLD".
    Let me know if this does not make sense.
    Cheers
    Laurence

Maybe you are looking for

  • Read from server and display in external frame

    Hello everyone, I am using Eclipse, My project consist of server and client connected through a socket. When I connect to the server, i am getting lots of data from the server and it takes a bit of time, so I was thinking while the user wait for the

  • Oracle9i/Oracle 10g OCA certification

    I have worked on Oracle 9i database and i have basic knowledge about Sql commands and i am planning to go for Oracle 10g Certification does it make any difference if i do not take ORACLE 9i Certification and directly go on to do my Oracle 10g Certifi

  • Spreadsheet Component issues

    I have dashboard using spreadsheet component placed on top of panel contianer. I am using spreadsheet component just to display the data, not used as a selector. During the run time I am seeing that values in the spreadsheet component lay one over ea

  • Updates to IOS6 today and my webmail no longer workers under my internet providors site, how can I uninstall IOS6 I

    Upgraded to IOS6 today and now my webmail under my broadband providor no longer workes it hangs on redirecting. Any ideas how I can solve or uninstall IOS6

  • Can any one can help me.....

    Hay any one can contact me who is using D.S 9i and has worked on Javabean so please contact me, Actually I want to use Javabean in my forms but from the last week I am just visiting internet and contacting people for help...Much people helped me very