Error when creating table in cloudscape database

Hi, all:
I installed j2sdk1.4.0, j2sdkee1.3.1 on windows XP. I am able to start j2ee, cloudscape and deploy without error. I try to follow the J2EE tutorial to setting up the database, I go to the j2eetutorial/examples directory and type "ant create-savingsaccount-table", I got error "java.lang.NoClassDefFoundError: COM/cloudscape/tools/ij".
Following are the environment variables:
JAVA_HOME C:\j2sdk1.4.0
J2EE_HOME C:\j2sdkee1.3.1
CLASSPATH %JAVA_HOME%\lib\tools.jar;%J2EE_HOME%\lib\j2ee.jar;%J2EE_HOME%\lib\jhall.jar;%J2EE_HOME%\lib\system\cloudutil.jar;%J2EE_HOME%\lib\system\cloudscape.jar;%J2EE_HOME%\lib\cloudscape\cloudclient.jar;%J2EE_HOME%\lib\cloudscape\RmiJdbc.jar
cloudscape is from the j2ee1.3.1 bundle. does anyone know how to get around this?
please help. thanks in advance.

I'm having the same problem.
I really did some searching put couldn't find a working solution :|
This worked fine at work but when I continued learing at home it didn't work anymore. I have xp at home and nt4 at work.

Similar Messages

  • Getting error while creating table from one database to other.

    Hi,
    We are getting below error while creating the table from one database to other.
    SQL> create table fnd_lobs parallel compress as select * from [email protected];
    create table fnd_lobs parallel compress as select * from [email protected]
    ERROR at line 1:
    ORA-01555: snapshot too old: rollback segment number 28 with name "_SYSSMU28$"
    too small
    ORA-02063: preceding line from EEXIT2TEST
    ORA-01555: snapshot too old: rollback segment number 28 with name "_SYSSMU28$"
    too small
    ORA-02063: preceding line from EEXIT2TEST
    ORA-01555: snapshot too old: rollback segment number 28 with name "_SYSSMU28$"
    too small
    ORA-02063: preceding line from EEXIT2TEST
    ORA-01555: snapshot too old: rollback segment number 28 with name "_SYSSMU28$"
    too small
    Regards,
    Bhatia

    hi
    what are the apps version local and remote database???
    Snapshot too old errors occur because Oracle can 't reconstruct a consistent
    image of a block for the purposes of a consistent read.
    I feel at remote database, you are using UNDO, it will be rather easy to iincrease the undo retention time or increase the undo tablespace size.. if you are dealing with roll back segments, you may have rollback segments whose optimal values are too small...
    increase roll back segments size and select again then
    the following metalink notes might be helpful
    ORA-01555 "Snapshot too old" - Detailed Explanation Doc ID: 40689.1
    How To Avoid ORA-01555: Snapshot Too Old When Running PAAPIMP Doc ID: 603259.1
    OERR: ORA 1555 "snapshot too old (rollback segment too small)" Doc ID: 18954.1

  • Getting Error when createing Table control in Module Pool.

    Hi expert ,
    i am creating a module pool program . i want to crate line item value for that i have created table control  on screen 200 .
    but when i am activation to that giving error below mention.
    The field "ZFBDCHALLAN-EBELN" is not assigned to a loop. "LOOP ...ENDLOOP" must appear in "PBO" and "PAI".
    thanks
    chandra

    Its mandatory to have loop endloop in both events
    PBO and PAI
    loop your internal table similarly.
    Please check it should be below format
    PROCESS BEFORE OUTPUT.
    * Set PF Status for screen 100.
      MODULE status_0200.
    * This module will initialize the field
      MODULE init_0100.
      LOOP AT t_custmat_asg INTO w_custmat_asg
          WITH CONTROL tc_1
          CURSOR tc_1-current_line.
    * It will count the record in internal table
        MODULE set_linecount.
    * Screen Modifications
        MODULE status_check.
      ENDLOOP.
    PROCESS AFTER INPUT.
    * Module AT EXIT-COMMAND
      MODULE exit_0200 AT EXIT-COMMAND.
      LOOP AT t_custmat_asg .
        CHAIN.
          FIELD :
          w_custmat_asg-check,
                  w_custmat_asg-kunnr,
                  w_custmat_asg-name1,
                  w_custmat_asg-asgtyp,
                  w_custmat_asg-productcls,
                  w_custmat_asg-sctegry,
                  w_custmat_asg-ctegry,
                  w_custmat_asg-parent,
                  w_custmat_asg-frmdate,
                  w_custmat_asg-todate,
                  w_custmat_asg-frecster,
                  w_custmat_asg-salesrep,
                  w_custmat_asg-flag,
                  w_custmat_asg-username,
                  w_custmat_asg-udate.
    * Validation For Forecaster.
          MODULE validate_forecaster.
    * Validation For Salesrep.
          MODULE valiate_salesrep.
    * Validation for Customer
          module validate_customer.
    * Validate null value
          module validate_null_vals.
    * Validation For Data Changed On The Screen
          MODULE data_changed_0200 ON CHAIN-REQUEST.
        ENDCHAIN.
      ENDLOOP.
    Regards
    Satish Boguda

  • Error when creating table with nested table of object

    Dear all,
    I tried to create a table that contains nested table of an object but got an error:
    create or replace type some_obj is object (
      a number, b blob
      4  /
    Type created.
    create or replace type some_type is table of some_obj;
      2  /
    Type created.
    SQL>
    create table test (obj_id number, temp some_type) nested table temp store as nes_tab;
    Table created.
    SQL> create table test (obj_id number, temp some_type) nested table temp store as nes_tab
    ERROR at line 1:
    ORA-00955: name is already used by an existing objectWhat is causing the error? How can I troubleshoot this?
    best regards,
    Val

    Valerie Debonair wrote:
    never mind, I put "/" at the end of the create statement that makes executing create table twice....Yep. If I'm writing a script, I tend to just stick with "/" for all my statements, including the SQL as well as the DDL, otherwise it can be confusing whether a ";" is needed or not or whether it will try and execute it twice like you found.
    "/" works for all.

  • Error when CREATE TABLE

    Hi,
    I'm trying to create the following table
    SQL>  CREATE TABLE T_IMP (
      2      C_ID VARCHAR2(16 BYTE) NOT NULL ENABLE,
      3      I_ID VARCHAR2(50 BYTE) NOT NULL ENABLE,
      4      POWER NUMBER(*,0) DEFAULT 0,
      5      HRS NUMBER(*,0) DEFAULT 0,
      6      KWH NUMBER GENERATED ALWAYS AS (POWER*HRS) VIRTUAL VISIBLE ,
      7      ACT VARCHAR2(1 BYTE) DEFAULT 'Y' NOT NULL ENABLE,
      8      USRC VARCHAR2(64 BYTE),
      9      DATE_F DATE DEFAULT CURRENT_TIMESTAMP NOT NULL ENABLE,
    10      CONSTRAINT T_IMP_PK PRIMARY KEY (C_ID, I_ID)
    11     );But I get this error:ORA-00406: COMPATIBLE parameter needs to be 11.0.0.0.0 or greater
    ORA-00722: Feature "Virtual columns"below you can see my Oracle versione and compatible parameter:
    Oracle version: 11.2.0.1.0
    select name, value
    from v$parameter
    where name = 'compatible';
    NAME                 VALUE
    compatible           10.2.0.3.0How can I create my table with Virtual columns?
    Thanks in advance!

    R. Royal wrote:
    Ok,
    but my not-rhetorical question is:
    Can I modify the compatible parameter to allow me to create the table?Yes you can. But just make sure that the person who has set it that way does not come to you screaming!!
    Seriously, some parameter is changed by someone for some reason. The reason could be good or bad, but there must be a reason. And your job is to find it out ;)

  • Error when creating table (Document contains no data)

    Hi,
    I've installed htmldb 2.0 and after playing with it for a while, everything seems to be ok, except
    for table creation. No matter I use the sql command console or the object creation wizard, the
    situation is the same: i can arrive until the last confirmation page, and after submitting the browser
    complains about a page with no data (Document contains no data).
    I can create other things, such as views, functions, sequences, even applications. Is just table the one giving problems. Can somebody tell me where are the relevant logs, in order to trace better the situation? Or, if you have any other suggestion (maybe I missed something during the installation, or things like that).
    Thanks in advance.
    salu2
    dario estepario ...

    Sure, this is part of the weird thing: nothing is displayed when this error happens. However, yesterday, a friend of mine made the same test (with another browser) and I saw some messages like this ones on the error_log*:
    [Tue Nov 22 15:12:01 2005] [error] [client 201.138.102.50] [ecid: 1132693921:192.168.1.1:24300:0:155,0] mod_plsql: /pls/htmldb/wwv_flow.accept HTTP-500 Error Reading Data from Client!!
    At least, they are a http-500 errors ... while in my case, I can not receive any answer at all.
    But this was yesterday, today ... every time I reproduce the situation, the error_log does not move.
    Regards,
    PS: Another point: I can create the table importing data.

  • Error  when creating data base using Database Configuration Assistant

    Hi!
    I have installed Oracle 9i release 2 in Windows Xp, I want to create a db from the Database Configuration Assistant but they appear the following errors:
    ORA 01034
    ORA 01501
    ORA1109
    I press the button to ignore but they continue appearing.. when the process arrives the 12% they stopped.... When i installed the Oracle appeared a pair of errors but when i press the Ignore button the process continued and finish satisfactorily....
    Any Suggestion???
    Thanks...
    Tere Blanco

    Oracle error description
    ORA-01034 ORACLE not available
    Cause: Oracle was not started.
    Possible causes include the following:
    1) The SGA requires more space than was allocated for it.
    2) The operating-system variable pointing to the instance is improperly defined.
    Action: Refer to accompanying messages for possible causes and correct the problem mentioned in the other messages. If Oracle has been initialized, then on some operating systems, verify that Oracle was linked correctly. See the platform-specific Oracle documentation.
    -aijaz

  • Financial Reporting Error when creating grid/connecting to database

    Hi,
    This is new installation of EMP 11.1.1.2 and we are having issues with FR studio. We can open the studio and create a new report, but when trying to insert a grid we get following error:
    "DatasourceIDLogin.LoadDatasourceNames Error: -2147467259 Error Loading DatasourceList to Repository" from which I cannot get out, I have to shut down FR Studio.
    The only entry in the host file on the client machine I have is for localhost. If I try to add FR server host I get following error:
    "You are not authorized to use this functionality. Contact your administrator"
    Any help i.e. if I need to perform any configuration tasks on the client machine, changes in host files, changes on servers, etc will be very appreciated.
    Thank you.

    Hi,
    Does this prob occur in specific environment or all the three?
    You need to make sure that your print server,web server and report server are configured properly.
    Try to ping each of them and if still the problem persists make an entry in your host file of these servers with their complete names.
    Thanks.

  • (500) Internal Server Error when create storage table use development account

    Yesterday, our team suddenly cannot use storage emulator all, it always said 'can not create database' when start the emulator. Finally, we found a issue may affect this, we delete the WAStorageEmulatorDb30.mdf file in C:\Users\[User], and create manully
    in localdb, and so we can start the storage emulator later.
    But we still can not use it, since it always throw exception when creating Tables/Blobs/Queues, the exception like this:
    Microsoft.WindowsAzure.Storage.StorageException was caught
    HResult=-2146233088
    Message=The remote server returned an error: (500) Internal Server Error.
    Source=Microsoft.WindowsAzure.Storage
    StackTrace:
    at Microsoft.WindowsAzure.Storage.Core.Executor.Executor.ExecuteSync[T](RESTCommand`1 cmd, IRetryPolicy policy, OperationContext operationContext)
    at Microsoft.WindowsAzure.Storage.Table.TableOperation.Execute(CloudTableClient client, CloudTable table, TableRequestOptions requestOptions, OperationContext operationContext)
    at Microsoft.WindowsAzure.Storage.Table.CloudTable.Exists(Boolean primaryOnly, TableRequestOptions requestOptions, OperationContext operationContext)
    at Microsoft.WindowsAzure.Storage.Table.CloudTable.CreateIfNotExists(TableRequestOptions requestOptions, OperationContext operationContext)
    at WorkerRole1.TableService..ctor() in c:\Users\<user>\Documents\Visual Studio 2013\Projects\WindowsAzure8\WorkerRole1\TableService.cs:line 21
    InnerException: System.Net.WebException
    HResult=-2146233079
    Message=The remote server returned an error: (500) Internal Server Error.
    Source=System
    StackTrace:
    at System.Net.HttpWebRequest.GetResponse()
    at Microsoft.WindowsAzure.Storage.Core.Executor.Executor.ExecuteSync[T](RESTCommand`1 cmd, IRetryPolicy policy, OperationContext operationContext)
    InnerException:
    And if we visit this url: http://127.0.0.1:10002/devstoreaccount1, it said Internal Error:
    <error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
    <code>InternalError</code>
    <message xml:lang="en-US">
    Server encountered an internal error. Please try again after some time. RequestId:e9637e04-76ad-4237-8df0-31a511e4c116 Time:2014-04-25T00:56:16.9990136Z
    </message>
    </error>
    Any ideas of this? We still don't know what caused this whole trouble from yesterday, is it possible affect the storage emulator just by code? We were coding, not configuring anything. Strange.

    I have tried it before, but not works.
    Finally, I solved this issue by delete LocalDB instance, uninstall storage emulator and install LocalDB instance / storage emulator again, it works now. Quite strange.

  • Database error when updating table ADRC

    Hi,
    We are on ECC 5.0 & are facing a problem whille maintaining anything relevant to table ADRC.
    For eg., if we try to maintain storage location or create a vendor code (XK01), for some inputs it works ...but most times the update just terminates with a message "Database error when changing table ADRC".
    Pls. help.
    Thanks,
    Saba.

    Hi
    You can refer to following SAP Notes in case they help:
    385440   Repairing inconsistencies in Customizing addresses
    417809    Customizing objects display incorrect addresses
    186910    Customers / vendors with incorrect address
    Otherwise i want to know more about the error you are getting to help you in better way.
    Thanks and Regards
    Esha Rajpal

  • Error when creating index with parallel option on very large table

    I am getting a
    "7:15:52 AM ORA-00600: internal error code, arguments: [kxfqupp_bad_cvl], [7940], [6], [0], [], [], [], []"
    error when creating an index with parallel option. Which is strange because this has not been a problem until now. We just hit 60 million rows in a 45 column table, and I wonder if we've hit a bug.
    Version 10.2.0.4
    O/S Linux
    As a test I removed the parallel option and several of the indexes were created with no problem, but many still threw the same error... Strange. Do I need a patch update of some kind?

    This is most certainly a bug.
    From metalink it looks like bug 4695511 - fixed in 10.2.0.4.1

  • Syntax error when creating a user-defined table type in SQL Server 2012

    Why am I getting a syntax error when creating a user-defined table type in SQL Server 2014?
    CREATE TYPE ReportsTableType AS TABLE 
    ( reportId INT
    , questionId INT
    , questionOrder INT );
    Results:
    Msg 156, Level 15, State 1, Line 1
    Incorrect syntax near the keyword 'AS'.

    Hope these posts could help, 
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/37a45a9a-ed8c-4655-be93-f6e6d5ef44be/getting-incorrect-syntax-while-creating-a-table-type-in-sql-server-2008-r2?forum=transactsql
    Regards, Dineshkumar,
    Please Mark as Answer if my post answers your question and
    Vote as Helpful if it helps you

  • Error message "CREATE TABLE permission denied in database 'master'"

    I am starting an application and I get the error message above. I do not want to creat tables in the master database - therefore I created my own database and added it to the Connection string:
    DATABASE=TEST
    But still the same message.

    Hi,
    As said you have created the new database and want create a table. Please make sure you are connecting to the right database. If you are unable to get the connection string of the newly created database, please go to the management portal and click
    on the newly created database and click on dashboard to get the connection strings for the database. Then you can add the same information from where you are trying to create table with the database name to proceed further.
    It seems that you are connecting to master instead of connect against your new database that you have created. Once you connect to your database you will need permission to create tables. If you are "dbmanager" role you should not have any problem
    to create it.
    Hope this helps you.
    Girish Prajwal

  • Error while Creating form on remote Database

    Hi All
    I m getting error while creating form on remote database thru
    Database link
    Line/Column Error
    7099/21 PLS-00454: with a returning into clause, the table
    expression cannot be remote or a subquery
    7099/9 PL/SQL: SQL Statement ignored
    7749/16 PLS-00454: with a returning into clause, the table
    expression cannot be remote or a subquery
    7749/9 PL/SQL: SQL Statement ignored
    and statement at line specified is insert statement. and at end
    of insert statement Returning caluse is there as follows
    RETURNING ROWID INTO "_ROWID";
    This returning clause is causing error. Does anybody knows how
    to handel it??
    Thanks
    Yogesh

    Yogesh
    I haven't seen the ora-03116 problem.
    What version of Portal are you running? Are the databases at the same version? Does your table have longs or anything strange in it?
    Can you query the table via the synonyms and link in sqlplus as the application schema? This is a good test because it eliminates Portal.
    You should try setting up synonyms etc for the emp table. If you still get the problem then Oracle may be able to replicate it. If not, then there's sth funny about your table maybe.
    I agree with Vishnu about creating everything in sqlplus. I create all my links and synonyms in sqlplus. They are all public. I have 2 synonyms: one takes you over the link the other takes you to the right schema. It's flexible and it works.
    data database: D grants to P (local schema) on table T
    public syn T = D.T (sys) (get the right schema)
    portal dbase : public db link to data database connecting as P
    public syn T = T@dblink (sys) (over the link)
    P is a schema created in both databases.
    Test is: P in portal dbase can "select * from T" and gets the right data.
    I never, ever refer to a schema when defining a form. ie. never P.T or D.T or whatever. I always refer simply to a synonym. For the above my form would be defined simply on the table T.
    Hope this helps
    Greg

  • Error: "Error while creating table 'EDISEGMENT'"

    Hi,
    When I activate a Transfer Rule return the following error:
    Error while creating table 'EDISEGMENT'
    Someone has passed the problem?

    Bom dia Marques,
    Na SAP Note 339957 tem o síntoma descrito por você.
    Solução:
    In the system where the error occurs (usually the OLTP), create and run the report RS_CHECK_TS_EDISEGMENT (with SENDING and RECEIVING LOGSYS as an entry).
    Entretanto esta nota foi substituida pela SAP Note 493422, com bem mais detalhes e indica um programa Z
    Atenciosamente,
    Fernando Da Rós
    PS: Fórum em português.

Maybe you are looking for

  • How to print out a contact from the address book?

    I must be missing something very basic.  I select a contact in my address book.  Now, I want to print it... you know things like the contact's name, address, phone number, etc.  When I try printing, I get a blank page.  In the print dialog box, it co

  • How many different ways of dynamically displaying a text?

    Hi folks, I've been assigned to work on the following: The SapScript form on which I am supposed to work, currently has hard coded text with some variables such as name of the customer, order number, special info, etc, coming from the driver program.

  • Any sign of the upgrade to the 7.2.1 upgrade?  :)

    Since purchasing my brand new AEBS 802.11n I have yet been able to connect to the internet for more than two minutes at a time. From reading through this forum I've come to the conclusion that the problem lies in the 7.2.1 firmware upgrade. Thankfull

  • Audio Levels on LCD Display

    Using a Sony HXR-MC50U Camcorder and can't seem to figure out if there is a way to display the audio levels on the LCD display as you are recording.

  • Windows 7 and Virtual App locations?

    We have quite a few virtual apps here, and the process I've been using is to -create a folder c:\Program Files\Vx -Copy the <virtualapp>.exe to this folder -execute the <virtualapp>.exe This is so laptops can use the apps when away from our network.