Hmm an error here...strange

Hi ppl, I'm having some strange error which i didn't got till i formated my PC...I have installed Eclipse, jdk1.5 and java3d1.4 when i'm compiling my programs which are using java Loaders it's giving me this error:
Exception in thread "Thread-2" java.lang.UnsatisfiedLinkError: no j3dcore-ogl in java.library.path
     at java.lang.ClassLoader.loadLibrary(Unknown Source)
     at java.lang.Runtime.loadLibrary0(Unknown Source)
     at java.lang.System.loadLibrary(Unknown Source)
     at javax.media.j3d.MasterControl$5.run(MasterControl.java:838)
     at java.security.AccessController.doPrivileged(Native Method)
     at javax.media.j3d.MasterControl.loadLibraries(MasterControl.java:821)
     at javax.media.j3d.VirtualUniverse.<clinit>(VirtualUniverse.java:252)
     at ObjLoad.init(ObjLoad.java:141)
     at com.sun.j3d.utils.applet.MainFrame.run(MainFrame.java:267)
     at java.lang.Thread.run(Unknown Source)
if u need code i can diponibalize it here...
Thanks everyone who read it.

OK guys thnx every1 who looked here ;)
I have solved it...just got newest version of Java3d and it worked
thnx 1 more time=)

Similar Messages

  • HI i have strange errors here. Oracle 9i Installation

    HI i have strange errors here.
    "Thrown when IP Address of a host cannot be determined"
    I am using SUN 0S, version 5.9
    %uname -a
    SunOS -i 5.9 Generic_117171-14 sun4u sparc SUNW,Ultra-Enterprise
    %uname -r
    5.9
    %uname -n
    -i
    %hostname
    -i
    when i type "hostname" its returning "-i". quite strange.any one have any solution for this?

    HI,
    are you check below thread.
    Thrown when IP Address of a host cannot be determined
    regards
    Taj

  • Any obvious errors here?

    // From JAVA PROGRAMMING: FROM THE BEGINNING, by K. N. King /
    // Copyright (c) 2000 W. W. Norton & Company, Inc. //
    import jpb.*;
    import java.io.*;
    import java.lang.Thread;
    public class bjack{
         public static int playerCount=0;
    public static int dealerCount=0;
    public static int computerCount=0;
    // public static int cCard1 = 0;
    //public static int cCard2 = 0;
    public static int newCard = 0;
    int ep, pl;
    BJStates bjstates;
         public bjack (BJStates parent, int episodes, int plays)
              bjstates = new BJStates(this, 1000, 100);
              //int ep, pl;
    public static void main(String[] args) {
         int playerWins = 0;
         int dealerWins = 0;
         int computerWins = 0;
         SimpleIO.prompt("Learn or Play?");
    String userInput1 = SimpleIO.readLine();
    if (userInput1.equalsIgnoreCase("P"))
         while (true) {
         // Choose two cards for both player and dealer
    Card playerCard1 = Card.pickRandom();
    Card playerCard2 = Card.pickRandom();
    Card dealerCard1 = Card.pickRandom();
    Card dealerCard2 = Card.pickRandom();
    Card computerCard1 = Card.pickRandom();
    Card computerCard2 = Card.pickRandom();
    Card nCard = Card.pickRandom();
    // Display player's cards
    System.out.println("Your cards: " + playerCard1 +
    " " + playerCard2);
    System.out.println("Computer cards: " + computerCard1 +
    " " + computerCard2);
    System.out.println("Dealer cards: " + dealerCard1 +
    " " + dealerCard2);
    // Compute initial counts for player and dealer and computer
    int playerCount = getCount(playerCard1) +
    getCount(playerCard2);
    int dealerCount = getCount(dealerCard1) +
    getCount(dealerCard2);
    int computerCount = getCount(computerCard1)+
                             getCount(computerCard2);
    //int cCard1 = getCount(computerCard1);
    //int cCard2 = getCount(computerCard2);
    int newCard = getCount(nCard);
    // Check whether player's count is 21. If so, dealer
    // must have 21 or lose automatically.
    if (playerCount == 21) {
    if (dealerCount != 21 && computerCount != 21)
    dealerCount = 0;
    computerCount = 0;
    } else {
    // Player's count was not 21. Ask player to draw
    // additional cards and determine new value of
    // player's hand.
    playerCount = getPlayerCards(playerCard1,
    playerCard2);
    // Player loses if new count exceeds 21
    if (playerCount > 21)
    playerCount = 0;
    else {
    // Player's count does not exceed 21. Show dealer's
    // cards.
    //System.out.println("Dealer's cards: " +
    // dealerCard1 + " " + dealerCard2);
    // Draw additional cards for dealer and determine
    // new value of dealer's hand
    dealerCount = getDealerCards(dealerCard1,
    dealerCard2);
    // Dealer loses if new count exceeds 21
    if (dealerCount > 21)
    dealerCount = 0;
    // Compare player's count with dealer's count to
    // determine the winner; display the outcome and
    // update the win counts
    if (playerCount > dealerCount && playerCount > computerCount) {
    System.out.println("You win!");
    playerWins++;
    } else if (playerCount < dealerCount && computerCount < dealerCount) {
    System.out.println("Dealer wins");
    dealerWins++;
    } else if (playerCount < computerCount && dealerCount < computerCount){
         System.out.println("Computer wins");
    computerWins++;
    else
         System.out.println("Tie");
    // Display the win counts
    System.out.println("Dealer: " + dealerWins +
    " Player: " + playerWins + " Computer:" + computerWins);
    // See if user wants to play again; exit from loop if
    // answer is no
    SimpleIO.prompt("Play again (Y/N)? ");
    String userInput = SimpleIO.readLine();
    if (!userInput.equalsIgnoreCase("Y"))
         break;
    System.out.println();
    else if (userInput1.equalsIgnoreCase("L"))
         while(true)
              ///BJStates.
              /*Buffer sharedLocation = new UnsychronizedBuffer();
              bjothers Bjothers = new bjothers( sharedLocation );
              Bjothers.start();*/
              /*public void run()
              /*X whatever = new X();
              class X implements Runnable {
                   X() {
    Thread t = new Thread(this);
    t.start();
    public void run() {
    //bjothers(); //some code that executes the functionality of the thread
         bjothers Bjothers = new bjothers();
         //     public void run() {
    /// BJStates();
    /*public void Work() {
    while(true)
    System.out.println("+|+");
                   //parent.initbjothersVariables();
                        //BJStates.curEpisode = 0;
                        //B//JStates.curPlay = 0;
                        //running = true;
                        //thisThread.start();
                        //Q.setName("Current");
                        //BPlayers.player[0].setCurrentStrategy(Q);
                        //BPlayers.player[1].setCurrentStrategy(Q);
              bjstates = new BJStates(this, ep, pl);
              bjstates.setEpisodes(ep);
              bjstates.setPlays(pl);
              bjstates.start();
         //startLearning();
              SimpleIO.prompt("Stop ");
    String userInput2 = SimpleIO.readLine();
    if (userInput2.equalsIgnoreCase("S"))
         break;
    // NAME: getDealerCards
    // BEHAVIOR: Adds cards to the dealer's hand until the
    // value reaches 17 or more
    // PARAMETERS: card1 - One of dealer's original two cards
    // card2 - The other original card
    // RETURNS: Value of the dealer's hand, including
    // original cards and new cards
    private static int getDealerCards(Card card1, Card card2) {
    int dealerCount = getCount(card1) + getCount(card2);
    int aceCount = 0;
    // Determine number of aces among original pair of cards
    if (card1.getRank() == Card.ACE)
    aceCount++;
    if (card2.getRank() == Card.ACE)
    aceCount++;
    while (true) {
    // If the dealer's count exceeds 21 and the hand
    // contains aces still valued at 11, then reduce the
    // number of aces by 1 and reduce the count by 10
    if (aceCount > 0 && dealerCount > 21) {
    aceCount--;
    dealerCount -= 10;
    // Return if dealer's count is at least 17
    if (dealerCount >= 17)
    return dealerCount;
    // Pick a new card and update the dealer's count
    Card newCard = Card.pickRandom();
    System.out.println("Dealer drew: " + newCard);
    dealerCount += getCount(newCard);
    // Check whether the new card is an ace
    if (newCard.getRank() == Card.ACE)
    aceCount++;
    // NAME: getPlayerCards
    // BEHAVIOR: Adds cards to the player's hand until the
    // value exceeds 21 or the player decides to
    // stand
    // PARAMETERS: card1 - One of player's original two cards
    // card2 - The other original card
    // RETURNS: Value of the player's hand, including
    // original cards and new cards
    private static int getPlayerCards(Card card1, Card card2) {
    int playerCount = getCount(card1) + getCount(card2);
    int aceCount = 0;
    // Determine number of aces among original pair of cards
    if (card1.getRank() == Card.ACE)
    aceCount++;
    if (card2.getRank() == Card.ACE)
    aceCount++;
    while (true) {
    // If the player's count exceeds 21 and the hand
    // contains aces still valued at 11, then reduce the
    // number of aces by 1 and reduce the count by 10
    if (aceCount > 0 && playerCount > 21) {
    aceCount--;
    playerCount -= 10;
    // Return if player's count exceeds 21
    if (playerCount > 21)
    return playerCount;
    // Ask user whether to stand or hit
    SimpleIO.prompt("(S)tand or (H)it? ");
    String userInput = SimpleIO.readLine();
    if (!userInput.equalsIgnoreCase("H"))
    return playerCount;
    // Pick a new card and update the player's count
    Card newCard = Card.pickRandom();
    System.out.println("You drew: " + newCard);
    playerCount += getCount(newCard);
    // Check whether the new card is an ace
    if (newCard.getRank() == Card.ACE)
    aceCount++;
    //Computer Cards
    //public void run() {
         /*     int s;
              while (true) {
              try {
                        Thread.currentThread().sleep(10);
              } catch (Exception e)
                        System.out.println("Exception on sleep");
                        // Sarsa Strategy
                             s = bjothers.calcState(card);
                   // select the best action associated with s
                   curAction = strat[strategy].selectAction(s);
                   //take choosed action
                   switch(curAction) {
                             case BStrategy.HIT : {
                                  addCard(Cards.next());
                             drawCards();
                             points = calcPoints();
                             if (points<=21) {
                                       setCanPlay(true);
                             else
                                       setCanPlay(false);
                             break;
                             case BStrategy.STAND : {
                             setCanPlay(false);
                             break;
                             default : {setCanPlay(false);}
    // NAME: getCount
    // BEHAVIOR: Returns the Blackjack value of a particular
    // card
    // PARAMETERS: c - a Card object
    // RETURNS: The Blackjack value of the card c. The value
    // of a card is the same as its rank, except
    // that face cards have a value of 10 and aces
    // have a value of 11.
    private static int getCount(Card c) {
    switch (c.getRank()) {
    case Card.TWO: return 2;
    case Card.THREE: return 3;
    case Card.FOUR: return 4;
    case Card.FIVE: return 5;
    case Card.SIX: return 6;
    case Card.SEVEN: return 7;
    case Card.EIGHT: return 8;
    case Card.NINE: return 9;
    case Card.ACE: return 11;
    default: return 10; // TEN, JACK, QUEEN, KING
    public void startLearning(int ep, int pl) {
         bjstates = new BJStates(this, ep, pl);
         bjstates.setEpisodes(ep);
         bjstates.setPlays(pl);
         bjstates.start();
    }

    any obvious errors here?Yup:
    No code tags
    No indentation
    Too long to read
    All cluttered up

  • ITunes startup error message (strange & seemingly very rare!)

    Hello,
    I get a strange error message when I start iTunes on my Windows Vista Ultimate machine :
    "*A folder was specified instead of a file*".
    That's it. After dismissing the message, everything works fine. This is a brand new behaviour. It just happened suddenly.
    Of course I tried a few reinstalls, deleting the prefs file, the iPhone file, etc., to no avail.
    Thanks for your time!
    Olrik

    Hmmmm. That's certainly fairly exotic.
    I'm wondering here if this is an issue with iTunes having difficulty finding your library file.
    The default location for the iTunes library file on Vista (where <username> is the name of your usual Vista user account) is in:
    C:\Users\<username>\Music\iTunes\
    So if you hold down shift when opening iTunes and then click "choose library", as per the following document:
    How to open an alternate iTunes Library file or create a new one
    ... and select your default .itl file, can you launch without that message?
    If so, does iTunes launch without that message on subsequent launch attempts?

  • I can't see the error here

    I'm getting the error 'Column not allowed here'.
    Here's the code and description of resulting table:
    CREATE OR REPLACE PROCEDURE prod_sales_sum_sp
    IS
    CURSOR cur_sales
    IS
      SELECT bi.idproduct id,
        TO_CHAR(b.dtordered,'MON') mth,
        TO_CHAR(b.dtordered, 'YYYY') yr,
        SUM(bi.quantity) quantity,
        SUM(bi.quantity*bi.price) totalsum
         FROM bb_basket b INNER JOIN bb_basketitem bi
         USING (idbasket)
         WHERE b.orderplaced = 1
         GROUP BY bi.idproduct,TO_CHAR(b.dtordered,'MON'),TO_CHAR(b.dtordered, 'YYYY');
    BEGIN
    FOR rec_sales IN cur_sales LOOP
      INSERT INTO bb_prod_sales (idproduct, month, year, qty, total)
      VALUES (id, mth, yr, quantity, totalsum);
    END LOOP;
    END;
    SQL> desc bb_prod_sales
    Name                                                  Null?    Type
    IDPRODUCT                                                      NUMBER(2)
    MONTH                                                          CHAR(3)
    YEAR                                                           CHAR(4)
    QTY                                                            NUMBER(5)
    TOTAL                                                          NUMBER(6,2)
    SQL> select * from bb_prod_sales;
    no rows selectedBasically, we see that the table has five columns: idproduct, month, year, qty, and total. It also has no values at this point in time.
    I'm trying to create this procedure to update the table by inserting values into the table.
    With the error being provided, isn't that basically saying I'm using a column name while I'm trying to insert my values? I've set alias names so there are no conflicts, and it's still giving me the error.
    Can you guys see anythign?

    Hi,
    The way to reference columns in a record is record_name.column_name, so you should say:
    VALUES (rec_sales.id, rec_sales.mth, rec_sales.yr, rec_sales.quantity, rec_sales.totalsum);

  • Anyone see a SQL syntax error here?

    Hey all,
    I am getting an error due to a SQL syntax error. I thought this looked good...but maybe a couple more sets of eyes looking at it will see what I did...
    here it is:
    stmt.executeUpdate("UPDATE member SET (Age = '" + Agetxf.getText() + "' Location = '" + Locationtxf.getText() + "' College ='" + Collegetxf.getText() + "' Major ='" + Majortxf.getText() + "' Profession='" + Professiontxf.getText() + "') WHERE UserID ='" + CreateAccount.getUserID() + "'");
    Thanks in advance...
    Atreides

    Hi,
    Each field should be seperated with comma as below.
    stmt.executeUpdate("UPDATE member SET Age = '" + Agetxf.getText() + "', Location = '" + Locationtxf.getText() + "', College ='" + Collegetxf.getText() + "', Major ='" + Majortxf.getText() + "', Profession='" + Professiontxf.getText() + "' WHERE UserID ='" + CreateAccount.getUserID() + "'");Regards,
    Ram

  • I am getting an error here...

    I am trying to add the driver class to this program as my instructor has asked, but can not seem to get it to work properly. In the book that I have it is used like I have it here, but netBeans says that inner classes can not have static declarations. my question is that if I cant have a static declaration here like the boook has, then how do I get the program to run with no main()? Here is the code that I have for the program with the error in it.:
    * increasingOrder.java
    * Created on October 23, 2006, 10:48 PM
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    * @author Joseph Porter
    import java.util.*;
    public class increasingOrder
        /** Creates a new instance of increasingOrder */
        public increasingOrder() {
        public static void smallestNumber(int a,int b, int c){
            if(a<b&&a<c)
                System.out.println("The smallest number is "+a);
                    if(b<a&&b<c)
                        System.out.println("The smallest number is "+b);
                            if(c<a&&c<b)
                                System.out.println("The smallest number is "+c);
        public static void middleNumber(int a,int b,int c){
            if(a>b&&a<c)
                System.out.println("The middle number is "+a);
                    if(b>a&&b<c)
                        System.out.println("The middle number is "+b);
                            if(c>a&&c<b)
                                System.out.println("The middle number is "+c);
        public static void largestNumber(int a,int b,int c){
            if(a>b&&a>c)
                System.out.println("The largest number is "+a);
                    if(b>a&&b>c)
                        System.out.println("The largest number is "+b);
                            if(c>a&&c>b)
                                System.out.println("The largest number is "+c);
         * @param args the command line arguments
        public class Driver
            public static void main(String[] args)
                int inputA;
                int inputB;
                int inputC;
                Scanner keyboard=new Scanner (System.in);
                System.out.println("Input the first integer:");
                inputA=keyboard.nextInt();
                System.out.println("Input the second integer:");
                inputB=keyboard.nextInt();
                System.out.println("Input the third integer:");
                inputC=keyboard.nextInt();
                increasingOrder.smallestNumber(inputA,inputB,inputC);
                increasingOrder.middleNumber(inputA,inputB,inputC);
                increasingOrder.largestNumber(inputA,inputB,inputC);
            // TODO code application logic here
    }

    I have modified it just a little bit and it works
    here is the code:
    * increasingOrder.java
    * Created on October 23, 2006, 10:48 PM
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    * @author Joseph Porter
    import java.util.*;
    class increasingOrder
        /** Creates a new instance of increasingOrder */
        public increasingOrder() {
        public static void smallestNumber(int a, int b, int c){
            if(a<b && a<c)
                System.out.println("The smallest number is "+a);
            else if(b<a && b<c)
                 System.out.println("The smallest number is "+b);
            else if(c<a && c<b)
                 System.out.println("The smallest number is "+c);
        public static void middleNumber(int a, int b, int c){
            if(a>b && a<c)
                System.out.println("The middle number is "+a);
            else if(b> a&& b<c)
                 System.out.println("The middle number is "+b);
            else if(c>a && c<b)
                 System.out.println("The middle number is "+c);
        public static void largestNumber(int a, int b, int c){
            if(a>b && a>c)
                System.out.println("The largest number is "+a);
            else if(b>a && b>c)
                 System.out.println("The largest number is "+b);
            else if(c> a&& c>b)
                 System.out.println("The largest number is "+c);
         * @param args the command line arguments
        public class Driver
             public static void main(String[] args){
                  int inputA;
                 int inputB;
                 int inputC;
                 Scanner keyboard=new Scanner (System.in);
                 System.out.println("Input the first integer:");
                 inputA=keyboard.nextInt();
                 System.out.println("Input the second integer:");
                 inputB=keyboard.nextInt();
                 System.out.println("Input the third integer:");
                 inputC=keyboard.nextInt();
                 increasingOrder.smallestNumber(inputA, inputB, inputC);
                 increasingOrder.middleNumber(inputA, inputB, inputC);
                 increasingOrder.largestNumber(inputA, inputB, inputC);
            // TODO code application logic here
        oh, you can copy and paste, but you need to edit it a bit, cause with the code tag here, somehow it turn a<c to a><c

  • What's going on with the errors here?

    Hi all,
    My run arrow is unbroken, but my error list shows four errors (and numerous warnings). I have always thought that errors caused broken run arrows? In my error list, snapshot below (with some confidential info smeared out), I get 4 errors and 68 warnings. If I uncheck the Show Warnings tag, the warnings and errors disappear! (second snapshot below). Anyone know what's up here? If it helps, I've included the strict type-defined cluster that the errors are referring to.
    My second confusing issue: I'm not sure I understand how a front panel control based on strict type-defined cluster can have an undefined type? If it's referring to some of the elements within the cluster (which are all refnums) then there's nothing I can do as three of them are string refnums and have the "Include type def" option ghosted out!? (they can be seen as the three controls without red stars in the third snapshot).
    Anyone with any pearls of wisdom?
    Cheers,
    Thoric
    Thoric (CLA, CLED, CTD and LabVIEW Champion)

    Am a glutton for punishment. Tried this from home, replaced the strict type-defined cluster of indicator refnums with a new custom control - identical in design. Reloaded main vi from project and all is well
    Most bizarre bug there though. Have had things get corrupted before, but usually when it's a far bigger custom control, not one so small/simple.
    Thanks for the help!
    Thoric
    Message Edited by Thoric on 06-16-2008 08:04 PM
    Thoric (CLA, CLED, CTD and LabVIEW Champion)

  • IPhone 3GS error - very strange

    Something really awkward happened with my iPhone 3GS today.
    As I wanted to transfer a song to my iPhone, I connected it to the iTunes and have been through the classic procedure of synchronization. However, certain errors occured already during that time. The loading bar, situated on the top of the iTunes window, showed that the synchronization was complete to about 95% - and it stopped there. I shut iTunes completely 20 minutes later, but the mobile screen showed that the iPhone was still being synchronized. Then I ended the synchronization manually on the iPhone by swiping my finger on the cancel toolbar, and then I shut it down, just to be safe.
    The problem is that the iPhone has been shutting itself down for three hours now. I see nothing but a blank screen with the round loading symbol. The iPhone hasn't freezed - it just won't turn off. I tried everything - I connected it to the iTunes, but iTunes says that it cannot connect with the iPhone due to an "unknown problem". I pressed all the buttons on the phone, but it just doesn't bring me anywhere. The phone keeps shutting itself down, but it doesn't switch off completely.
    What am I to do?

    Hold HOME and SLEEP at the same time for 10-15 seconds, until an Apple logo appears. If the phone does not restart see: http://support.apple.com/kb/HT1808
    Before doing this, however, disable your firewall/antivirus and connect the phone only to a USB port directly on the computer, not to a hub.

  • Apple TV HDCP error - very strange

    hello,
    So my Apple TV is a couple years old now and I have never had any issues with it - it has been working with 3 different TVs of mine over the last couple years - I have just tried to use it in a different TV and I keep getting the HDCP error every time I try to play anything on it.
    My friend uses his Apple TV perfectly fine on this TV and I have tried with his HDMI cable etc. and I still have the same error which makes me think it is an issue with the box itself.
    It is still working just fine on my other TV it's just the new one it won't work on - I have tried all the usual diagnostics even resetting everything to factory settings.
    Any ideas anyone?

    Hi leistmacman,
    Thanks for using Apple Support Communities. Based on what you stated, it sounds like the Apple TV is giving an HDCP error. I would recommend that you read this article, it may be able to help the issue.
    Apple TV (2nd and 3rd generation): About Apple TV and HDCP - Apple Support
    Cheers,
    Mario

  • Why error here?

    Hello
    i dont understand the error of these lines, why there are such these error in java but not c and c++
    int ch=0;
    if(ch!=0)
    String[] str={"a","b","c"};why we can not define a string within a if statement?
    thanks in advance

    Hello
    i dont understand the error of these lines, why there
    are such these error in java but not c and c++
    int ch=0;
    if(ch!=0)
    String[] str={"a","b","c"};why we can not define a string within a if
    statement?
    thanks in advanceYou can define a String array in an if-statement; however, you have to have some code other than just a declaration. The only place that String array can be used is in the body of the if-statement (its scope).
    // I did not try to compile this so there could be type-o's
    if (ch!=0) {
        String[] str={"a","b","c"};
        System.out.println(str);
    }

  • What's the error here?

    CONVERT(varchar, CONVERT(date, Date), 3) AS Date,
    How do I put this in my where statement
    my date is my database is date, and example is 15/2/2014

    CONVERT(varchar, CONVERT(date, Date), 3) AS Date,
    How do I put this in my where statement
    my date is my database is date, and example is 15/2/2014
    You can try something like,
    WHERE CONVERT(VARCHAR(12), date, 103) = '15/02/2014'
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    Praveen Dsa | MCITP - Database Administrator 2008 |
    My Blog | My Page

  • Can anyone help me again? some errors here say that my query is too long!!

    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:743)
    at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:207)
    at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:946)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1168)
    at oracle.jdbc.driver.OracleStatement.executeUpdateInternal(OracleStatement.java:1614)
    at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:1579)
    MY CODE IS
    query = "INSERT INTO tmp_careservice" +
    "(SERVICETYPE," +
    "SERVICEITEM" +
    "SEQ" +
    "APPLY_STARTDATE" +
    "APPLY_ENDDATE" +
    "NAME" +
    "POINT" +
    "POINTTYPE" +
    "COMPTYPE" +
    "POINTCALCTYPE" +
    "CALC_MIN" +
    "CALC_MAX" +
    "CALC_WIDTH" +
    "CALC_UNIT" +
    "CALC_UNITCOUNT" +
    "COMBINATETYPE" +
    "PLACETYPE" +
    "STAFFTYPE" +
    "CARELEVEL1" +
    "CARELEVEL2" +
    "CARELEVEL3" +
    "CARELEVEL4" +
    "CARELEVEL5" +
    "CARELEVEL6" +
    "CARELEVEL7" +
    "CARELEVEL8" +
    "CARELEVEL9" +
    "CARELEVEL10" +
    "SERVICETIME_LOWER" +
    "SERVICETIME_UPPER" +
    "REMARKTYPE" +
    "SUPPLYTYPE" +
    "COMPLIMITTYPE" +
    "COMPLIMITDAYS" +
    "EXPENSE1" +
    "EXPENSE2" +
    "EXPENSE3" +
    "EXPENSE4" +
    "EXPENSE5" +
    "EXPENSE6" +
    "EXPENSE7" +
    "EXPENSE8" +
    "EXPENSE9" +
    "EXPENSE10" +
    "SERVICETIMETYPE" +
    "FLAG1" +
    "FLAG2" +
    "FLAG3" +
    "FLAG4" +
    "FLAG5" +
    "FLAG6" +
    "FLAG7" +
    "FLAG8" +
    "FLAG9" +
    "FLAG10" +
    "FLAG11" +
    "FLAG12" +
    "FLAG13" +
    "FLAG14" +
    "FLAG15" +
    "FLAG16" +
    "FLAG17" +
    "FLAG18" +
    "FLAG19" +
    "FLAG20" +
    "FLAG21" +
    "FLAG22" +
    "FLAG23" +
    "FLAG24" +
    "FLAG25" +
    "FLAG26" +
    "FLAG27" +
    "FLAG28" +
    "FLAG29" +
    "FLAG30" +
    "PLANLISTTYPE" +
    "SHORTNAME" +
    "SUPPLYTIME) VALUES (" +
    "'" + temp_type + "'," +
    "'" + temp_item + "'," +
    "'" + (SEQ+1) + "'," +
    "'" + _STARTDATE + "'," +
    "'" + "9999-12-31" + "'," +
    "'" + DB_NAME + "'," +
    "'" + DB_POINT + "'," +
    "'" + DB_POINTTYPE + "'," +
    "'" + DB_COMPTYPE + "'," +
    "'" + DB_POINTCALCTYPE + "'," +
    "'" + DB_CALC_MIN + "'," +
    "'" + DB_CALC_MAX + "'," +
    "'" + DB_CALC_WIDTH + "'," +
    "'" + DB_CALC_UNIT + "'," +
    "'" + DB_CALC_UNITCOUNT + "'," +
    "'" + DB_COMBINATETYPE + "'," +
    "'" + DB_PLACETYPE + "'," +
    "'" + DB_STAFFTYPE + "'," +
    "'" + DB_CARELEVEL1 + "'," +
    "'" + DB_CARELEVEL2 + "'," +
    "'" + DB_CARELEVEL3 + "'," +
    "'" + DB_CARELEVEL4 + "'," +
    "'" + DB_CARELEVEL5 + "'," +
    "'" + DB_CARELEVEL6 + "'," +
    "'" + DB_CARELEVEL7 + "'," +
    "'" + DB_CARELEVEL8 + "'," +
    "'" + DB_CARELEVEL9 + "'," +
    "'" + DB_CARELEVEL10 + "'," +
    "'" + DB_SERVICETIME_LOWER + "'," +
    "'" + DB_SERVICETIME_UPPER + "'," +
    "'" + DB_REMARKTYPE + "'," +
    "'" + DB_SUPPLYTYPE + "'," +
    "'" + DB_COMPLIMITTYPE + "'," +
    "'" + DB_COMPLIMITDAYS + "'," +
    "'" + DB_EXPENSE1 + "'," +
    "'" + DB_EXPENSE2 + "'," +
    "'" + DB_EXPENSE3 + "'," +
    "'" + DB_EXPENSE4 + "'," +
    "'" + DB_EXPENSE5 + "'," +
    "'" + DB_EXPENSE6 + "'," +
    "'" + DB_EXPENSE7 + "'," +
    "'" + DB_EXPENSE8 + "'," +
    "'" + DB_EXPENSE9 + "'," +
    "'" + DB_EXPENSE10 + "'," +
    "'" + DB_SERVICETIMETYPE + "'," +
    "'" + DB_FLAG1 + "'," +
    "'" + DB_FLAG2 + "'," +
    "'" + DB_FLAG3 + "'," +
    "'" + DB_FLAG4 + "'," +
    "'" + DB_FLAG5 + "'," +
    "'" + DB_FLAG6 + "'," +
    "'" + DB_FLAG7 + "'," +
    "'" + DB_FLAG8 + "'," +
    "'" + DB_FLAG9 + "'," +
    "'" + DB_FLAG10 + "'," +
    "'" + DB_FLAG11 + "'," +
    "'" + DB_FLAG12 + "'," +
    "'" + DB_FLAG13 + "'," +
    "'" + DB_FLAG14 + "'," +
    "'" + DB_FLAG15 + "'," +
    "'" + DB_FLAG16 + "'," +
    "'" + DB_FLAG17 + "'," +
    "'" + DB_FLAG18 + "'," +
    "'" + DB_FLAG19 + "'," +
    "'" + DB_FLAG20 + "'," +
    "'" + DB_FLAG21 + "'," +
    "'" + DB_FLAG22 + "'," +
    "'" + DB_FLAG23 + "'," +
    "'" + DB_FLAG24 + "'," +
    "'" + DB_FLAG25 + "'," +
    "'" + DB_FLAG26 + "'," +
    "'" + DB_FLAG27 + "'," +
    "'" + DB_FLAG28 + "'," +
    "'" + DB_FLAG29 + "'," +
    "'" + DB_FLAG30 + "'," +
    "'" + DB_PLANLISTTYPE + "'," +
    "'" + DB_SHORTNAME + "'," +
    "'" + DB_SUPPLYTIME + "')";

    Where are the commas after the column names in the column list? The only column that currently has a trailing comma is ServiceType.
    Where are the bind variables? You should not be concatenating literal values into the statement - you should be using bind variable placeholders.

  • First time Full Update Error - a strange phenomena

    Hi Gurus,
    There is a peculiar phenomenon that I am facing.There is a Z Extractor which brings in data from a Custom Table and a standard table.It uploads in Full Update mode to a DSO.
    On few occassions , the first time load fails saying no source data available. If I do a repeat within seconds or anytime after that , it picks up data and loads perfectly in the DSO.
    I could find no plausible explanation for this.
    Could anyone let me know , why could this happen.
    Regards,

    kind of hard to reply if we don't know how this Z-extractor has been created, hum

  • Graph API licence assignment failed due to a strange error

    Hi, I'm looking for help in resolving quite strange issue on license assignment to a newly created user.
    I use Graph API v.2013-11-08 (tried with API v.1.5 with the same result) calls like :
    "https://graph.windows.net/{domain}/users?api-version=2013-11-08" + JSON body
    "https://graph.windows.net/{tenant}/users/{userPrincipalName}/assignLicense?api-version=2013-11-08" + JSON body
    to create new accounts and to assign licenses to it. While  account is created successfully license assignment can't be done because of the next error:
    Server response: {"odata.error":{"code":"Request_ResourceNotFound","message":{"lang":"en","value":"Resource '{userPrincipaName}/{or sometimes something like User_<alphanumeric String>}'
    does not exist or one of its queried reference-property objects are not present."}}}
    Actually this error is strange because:
    a) the account exists on the moment of the license assignment call;
    b) passed skuid exists and is valid;
    c) the error appears only on production environment, meanwhile the same account (same URLs, same data, same license skuid) can be normally created on another environment;
    d) the error appears only for one domain. If I do test for other domains it works on all environments. It means that the problem is not with the code  (all the API calls are performed within Java Web App), but with something different that i can't find;
    e) This error doesn't allow assign licenses to any users within one problematic domain using API calls, but they can be assigned to the same accounts in PowerShell.
    Can you please advise where to look and/or what may cause such a problem?
    Thank you.

    Hi kshp,
    Thanks for posting in MSDN forum.
    This is forum for developers discussing developing issues about
    apps for Office.
    Based on the description, it seems that you are developing with
    Graph API. I would like to move it to
    Azure Active Directory forum.
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thanks for your understanding.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Error in Flex at the time of Value Help

    Dear All, While I am creating Value Help then this error shows if deployed. "Error in compiling swf for Flex 2 application. Consult log file for details." What should I do? Regards, Santanu

  • Move swfobject higher in browser window??

    Hi guys, I want to make my swfobject a little higher in the broswer window, so it cuts the top off it in fact. if I can do this in the code in Dreamweaver for the whole movie, then it will save me having to go through all of the flash files and chang

  • Modifying Infoview web.xml

    i am modifying infiview web.xml but changes are not reflectin. just to test i changed home page to say aaa.com and restarted server. it should throw error but it is not...anybody can help me? thanks in advance

  • Self links from text file

    hi, am using dreamweaver cs5.5 ... i have stored lotta hyperlinks in a txt file (more than 50) ... want to add them to my site ... so can i make all those 50 links active or working in an html page automatically ??? thanx

  • TS1702 How come I can't update and loading the app and iTunes in my iPad?

    Would anyone can help me to resolve that problems? Thanks!