Error in Timesten While Alter table in oracle

Hello DB experts,
I am getting below error while my application statrtup.
"Exception while caching Rating System Parameter Details.[TimesTen][TimesTen 11.2.2.2.0 ODBC Driver][TimesTen]TT0871: Column VALUE cannot be set to null "
We have perfomed  below activities.
1) Not null constraint is created on one table which is in oracle.
2)  My applicaiton is up with timesten
3) Not null constraint is removed from oracle.
4) null data are inserted in that column ,
Please not that  the table on which constraint is created/removed  was not cached in timesten . its oracle table only.
Now my question is we wanted to know how timesten will work in above situation.

The DSN definition from sys.odbc.ini file
[ocsdev]
Driver=/u02/app/TimesTen/tt1122/lib/libtten.so
DataStore=/u031/odbcqa/ttTest
PermSize=1000
TempSize=400
PLSQL=1
DatabaseCharacterSet=WE8MSWIN1252
OracleNetServiceName=orcl
Passthrough=1
UID=crestelxxxdevg5
PWD=crestelxxxdevg5
OracleId=crestelxxxevg5
OraclePwd=crestelxxxdevg5
2.    Details of any cache groups you do have defined in TimesTen.
CREATE asynchronous writethrough CACHE GROUP CUST_PACKAGE
FROM  TBLCUSTOMERPACKAGE
CUSTOMERPACKAGEID  NUMBER ,
VALIDFROMDATE    DATE,
VALIDTODATE   DATE,
CUSTOMERID    NUMBER,
SERVICEID    NUMBER,
PRIORITY    NUMBER,
PACKAGEID    NUMBER,
PRIMARY KEY ("CUSTOMERPACKAGEID"))
   UNIQUE HASH ON (CUSTOMERPACKAGEID) PAGES = 4000 ;
3 ) Details of the Oracle table that was altered (table name, column for which the NULL/NOT NULL constraint was changed, any primary/foreign key relationship between this table/column and any cached table/column).
CREATE TABLE "TBLMRATINGCONFIG"
    "RATINGCONFID"         CHAR(7 BYTE) CONSTRAINT "NN_RATINGCONFIG_RATINGCONFID" NOT NULL ENABLE,
    "NAME"                 VARCHAR2(50 BYTE) CONSTRAINT "NN_RATINGCONFIG_NAME" NOT NULL ENABLE,
    "ALIAS"                VARCHAR2(50 BYTE) CONSTRAINT "NN_RATINGCONFIG_ALIAS" NOT NULL ENABLE,
    "DESCRIPTION"          VARCHAR2(2000 BYTE),
    "VALUE"                VARCHAR2(100 BYTE) CONSTRAINT "NN_RATINGCONFIG_VALUE" NOT NULL ENABLE,
    "PARAMETERTYPEID"      CHAR(5 BYTE) CONSTRAINT "NN_RATINGCONFIG_ID" NOT NULL ENABLE,
    "PARAMETERVALUESOURCE" VARCHAR2(255 BYTE),
    "COMMONSTATUSID"       CHAR(5 BYTE) CONSTRAINT "NN_RATINGCONFIG_COMMONSTATUSID" NOT NULL ENABLE,
    "SYSTEMGENERATED"      CHAR(1 BYTE) CONSTRAINT "NN_RATINGCONFIG_SYSGEN" NOT NULL ENABLE,
    "CREATEDATE" DATE CONSTRAINT "NN_RATINGCONFIG_CREATEDATE" NOT NULL ENABLE,
    "LASTMODIFIEDDATE" DATE CONSTRAINT "NN_RATINGCONFIG_LASTMODIFIEDT" NOT NULL ENABLE,
    "CREATEDBYSTAFFID"      CHAR(7 BYTE) CONSTRAINT "NN_RATINGCONFIG_CRSTAFF" NOT NULL ENABLE,
    "LASTMODIFIEDBYSTAFFID" CHAR(7 BYTE) CONSTRAINT "NN_RATINGCONFIG_MODIFIEDSTAFF" NOT NULL ENABLE,
    "STATUSCHANGEDATE" DATE,
    "SERVICEID"            CHAR(8 BYTE) CONSTRAINT "NN_RATINGCONFIG_SERVICEID" NOT NULL ENABLE,
    "JAVASCRIPTREGEX"      VARCHAR2(255 BYTE),
    "SYSTEMPARAMETERGROUP" NUMBER,
    "DISPLAYORDER"         NUMBER(3,0),
    "ALERTMSG"             VARCHAR2(200 BYTE),
    CONSTRAINT "PK_RATINGCONFIG" PRIMARY KEY ("RATINGCONFID")
In above script i am removing constraint on "value" column which is having  not null constraint.
4) column "value" having such data like 'null'
5) Error
"Exception while caching Rating System Parameter Details.[TimesTen][TimesTen 11.2.2.2.0 ODBC Driver][TimesTen]TT0871: Column VALUE cannot be set to null "

Similar Messages

  • Error while importing tables from oracle database

    Hi
    I am getting the following error when i am trying to import table from oracle database.
    my operating system is windows and my database is oracle.
    [nQSError: 16001]ODBC error state: IM004 code:0 message:
    [Microsoft][ODBC Driver Manager] Driver`s SQLAllocHandle on SQL_HANDLE_ENV failed.
    please help me in resolving this issue.
    Thanks and Regards,
    Raj

    Hi Madan,
    I have done migration Discoverer Admin EUL Layer into OBIEE repository using below methodology.
    Navigate to the <installdrive>\OracleBI\server\Bin directory. There are two important files in this directory: the migration assistant executable file named MigrateEUL.exe and a properties configuration file named MigrationConfig.properties.
    Could you please help me how to migrate discoverer plus workbooks and worksheets into OBIEE Answers?
    go through below link, It will show navigation steps for migrating of EUL from Discoverer to OBIEE.But i need migration of workbooks and worksheets from Discoverer into OBIEE Answers.
    http://www.oracle.com/technology/obe/obe_bi/discoverer/discoverer_1012/discomigration/migrate_disco_biee.htm
    This is very great full help to me …
    Advance thanks for your suggestions.
    Regards
    Duraga Prasad.

  • Error 00904 trying to alter table ... ?!

    I'm running a script to create a table, the primary key of that table will then be used in an Alter Table command to make it a foreign key in an already exisiting table. Code:
    CREATE TABLE Category
    CATCODE VARCHAR2(3),
    CatDesc VARCHAR2(11) NOT NULL,
    CONSTRAINT Category_CATCODE_pk PRIMARY KEY(CATCODE)
    INSERT INTO Category(CATCODE, CatDesc) VALUES('BUS','Business');
    INSERT INTO Category(CATCODE, CatDesc) VALUES('CHN','Children');
    INSERT INTO Category(CATCODE, CatDesc) VALUES('COK','Cooking');
    INSERT INTO Category(CATCODE, CatDesc) VALUES('COM','Computer');
    INSERT INTO Category(CATCODE, CatDesc) VALUES('FAL','Family Life');
    INSERT INTO Category(CATCODE, CatDesc) VALUES('FIT','Fitness');
    INSERT INTO Category(CATCODE, CatDesc) VALUES('SEH','Self Help');
    INSERT INTO Category(CATCODE, CatDesc) VALUES('LIT','Literature');
    ALTER TABLE books ADD CONSTRAINT books_Category_fk FOREIGN KEY (CATCODE) REFERENCES Category(CATCODE);
    And the error:
    Error starting at line 20 in command:
    ALTER TABLE books ADD CONSTRAINT books_Category_fk FOREIGN KEY (CATCODE) REFERENCES Category(CATCODE)
    Error report:
    SQL Error: ORA-00904: "CATCODE": invalid identifier
    00904. 00000 - "%s: invalid identifier"
    *Cause:
    *Action:
    I have no idea what is wrong with my code. I successfully make my table and insert the data, why is it telling me CatCode is an invalid identifier?...
    ( I originally posted it in the wrong section whoops )

    Zombnom wrote:
    There isn't, I'm trying to ADD a column with CatCode being a foreign key in the books table.Well there's your problem. Column and foreign key are two seperate things. You can combine the two operations though:
    ALTER TABLE books ADD catcode CONSTRAINT books_category_fk REFERENCES category(catcode);

  • ERROR IN DATABSE WHILE  FETCHING TABLE NAME "SINVA"

    Table does not exist._
    _*[orcale][ODBC][ORA]ORA-0115:IO error reading block from file 7(block#28809)*_
    ORA-01110: data file7:_
    General SQL error._
    *'C:\ORACLEXE\APP\ORACLE\PRODUCT\10.2.0\SERVER\DATABASE\ARAFIVE'*
    ORA-27: unable to queue I/O_
    ORA-27070: async read/write faied_
    OSD-04006: ReadFile() failure, unable to read from file_
    O/S-ERROR:(OS 23) Data error(cyclic redundancy check)
    The above error I'm facing while fetching the data from oracle DB. I've installed oracle express edition and when i try to fetch any kind of reports from my DB this error is arising. i tried to take backup the m dump (.dmp ) but i unable to access that too and also through TOAD i can modify the data in the DB but even the schema in the table is not available also i'm getting these above error in toad also.
    can any one please help me to overcome this ?

    Post last few lines of your alert.log and check whether OS user have full access privileges to those volumes/disks (C:\ORACLEXE\APP\ORACLE\PRODUCT\10.2.0\SERVER\DATABASE\ARAFIVE) or not.

  • Issue while importing table from oracle to sql server using import and export wizard

    Hi All,
    I am trying to populate oracle table to sql server using import export wizard  and i am getting the below error.the table is allready present in the database but still it throwing error like table doesn't exists.
    Could not connect source component.
    Error 0xc0202009: Source - JOB_ACTION_HISTORY [1]: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80004005.
    Error 0xc02020e8: Source - JOB_ACTION_HISTORY [1]: Opening a rowset for ""FLXUSER"."JOB_ACTION_HISTORY"" failed. Check that the object exists in the database.
     (SQL Server Import and Export Wizard)
    Kindly help me out
    Thanks in advance

    Hi Snehasis,
    Please check whether the table name in the Oracle database has lower case letters. The table name should be exactly correct. 
    In addition, the issue might be related to the Oracle driver. What provider/driver do you use? If you use Microsoft OLE DB Provider for Oracle, you can try the
    Oracle OLE DB Provider. If you use Enterprise or Developer edition of SSIS 2008 or higher, you can also try the
    Microsoft Connectors for Oracle by Attunity. The  Oracle OLE DB Provider and Microsoft Connectors for Oracle are proved to have better performance.
    Regards,
    Mike Yin
    TechNet Community Support

  • Error  ORA-02019: while selecting table from oracle10g to SQL Server 2005

    Hi all,
    our oracle 10g database is on AIX 5.2 and i configures heterogeneous service and install oracle 10g cleint on windows 2003 server where SQL Server reside . i configured the following things but i got the error ORA-02019. please help me its very urgent. quick response will higly appreciated. thanks alot in advance.
    1)create Sytem DSN (mysqlserver) by selectin SQL Native cleint
    2)copy the existing entry and paste it in listener.ora file and edit it as below
    LISTENERMYSQLSERVERDSN =
    (ADDRESS_LIST=
    (ADDRESS=(PROTOCOL=tcp)(HOST= hostname of oracle database)(PORT=1521))
    (ADDRESS=(PROTOCOL=ipc)(KEY=PNPKEY)))
    SID_LIST_ =
    (SID_LIST=
    (SID_DESC=
    (SID_NAME= mysqlserver)
    (ORACLE_HOME = /u01/app/oracle/product/101)
    (PROGRAM=hsodbc)
    $lsnrctl status LISTENERMYSQLSERVERDSN
    It is working fine
    3) configure TNAMES.ora
    mysqlserver =
    (DESCRIPTION =
    (ADDRESS =
    (PROTOCOL = TCP)
    (HOST = 100.100.50.5)
    (PORT = 1521)
    (CONNECT_DATA =
    (SID = mysqlserver)
    (HS = OK)
    c:>tnsping mysqlserver
    it is workin fine
    4)copy inithsodbc.ora and make it initmysqlserver.ora
    HS_FDS_CONNECT_INFO = mysqlserver
    HS_FDS_TRACE_LEVEL = off
    4)create the database link
    sql>create database link mysqlserver
    connect to "sa" identified by "nsp@123" using 'mysqlserver';
    when i selecting SQL Server object from oracle i got below error
    SQL> select * from NSP_products@mysqlserver;
    select * from NSP_products@mysqlserver
    ERROR at line 1:
    ORA-02019: connection description for remote database not found
    pLease help me its very urgent.
    BEST REGARD

    Hi all,
    our oracle 10g database is on AIX 5.2 and i configures heterogeneous service and install oracle 10g cleint on windows 2003 server where SQL Server reside . i configured the following things but i got the error ORA-02019. please help me its very urgent. quick response will higly appreciated. thanks alot in advance.
    1)create Sytem DSN (mysqlserver) by selectin SQL Native cleint
    2)copy the existing entry and paste it in listener.ora file and edit it as below
    LISTENERMYSQLSERVERDSN =
    (ADDRESS_LIST=
    (ADDRESS=(PROTOCOL=tcp)(HOST= hostname of oracle database)(PORT=1521))
    (ADDRESS=(PROTOCOL=ipc)(KEY=PNPKEY)))
    SID_LIST_ =
    (SID_LIST=
    (SID_DESC=
    (SID_NAME= mysqlserver)
    (ORACLE_HOME = /u01/app/oracle/product/101)
    (PROGRAM=hsodbc)
    $lsnrctl status LISTENERMYSQLSERVERDSN
    It is working fine
    3) configure TNAMES.ora
    mysqlserver =
    (DESCRIPTION =
    (ADDRESS =
    (PROTOCOL = TCP)
    (HOST = 100.100.50.5)
    (PORT = 1521)
    (CONNECT_DATA =
    (SID = mysqlserver)
    (HS = OK)
    c:>tnsping mysqlserver
    it is workin fine
    4)copy inithsodbc.ora and make it initmysqlserver.ora
    HS_FDS_CONNECT_INFO = mysqlserver
    HS_FDS_TRACE_LEVEL = off
    4)create the database link
    sql>create database link mysqlserver
    connect to "sa" identified by "nsp@123" using 'mysqlserver';
    when i selecting SQL Server object from oracle i got below error
    SQL> select * from NSP_products@mysqlserver;
    select * from NSP_products@mysqlserver
    ERROR at line 1:
    ORA-02019: connection description for remote database not found
    pLease help me its very urgent.
    BEST REGARD

  • Error FRM-10102 While Opening APXINWKB.fmb (Oracle Apps Invoice Forms) in .

    HI,
    I have freshly installed the Oracle 10g Forms n Reports developer and copied all the necessary pll, plx and fmb from AU_TOP/resource or AU_TOP/forms/US folder,
    and then updated in FORMS_PATH of regedit.
    But when i am trying to open the APXINWKB.fmb,i am getting the below errors.
    Can you please help me in resolving this issue,
    FRM-10102: Cannot attach PL/SQL library APXINLIN. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library APPCORE. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library VERT. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library PSAC. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library CUSTOM. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library APPDAYPK. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library APPFLDR. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library APXINWKB. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library APPREPAY. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library APCACHE. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library POXAPINT. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library POXCOMSG. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library APPUTIL. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library APXHOLDS. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library IBYFDOBJ. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library APVIWPAY. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library APPAYSHD. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library XLACORE. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library APPCORE. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library VERT. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library PSAC. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library APXINWKB. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library POXAPINT. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library APPCORE. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library VERT. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library PSAC. This library attachment will be lost if the module is saved.
    Regards,

    As you have found out, an Oracle Enterprise Business Suite (EBS) forms have multiple library files attached. When you open an EBS form, you must have a copy of the .pll files listed in the FORMS60_PATH (Forms 6i) or FORMS_PATH (Forms 10g) or you will get the message you are receiving. These library files are typically found in the $AU_TOP/US/RESOURCES directory on the Application Server.
    You might also want to take a look at the following documents in the Oracle Applications Documentation library. Select your EBS version and then scroll to the Standards section and review the following documents:
    <ul>
    <li>Oracle Applications Developer's Guide
    <li>Oracle Applications User Interface Standards for Forms-Based Products
    <li>Oracle Application Framework Personalization Guide
    </ul>
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Why am I getting this error message in SQL Developer-ORA-01735: invalid ALTER TABLE OPTION?

    To Whom it may Concern,
    I am attempting to add two columns Comm_id and Ben_id to a table in SQL Developer (Oracle).
    Here is the syntax I am using:
    ALTER TABLE ACCTMANAGER
    ADD (Comm_id NUMBER(10)),
    Ben_id VARCHAR(2);
    The spool file I'm getting as a result of the script above:
    Error starting at line 1 in command:
    ALTER TABLE ACCTMANAGER
    ADD (Comm_id NUMBER(10)),
    Ben_id VARCHAR(2)
    Error report:
    SQL Error: ORA-01735: invalid ALTER TABLE option
    01735. 00000 -  "invalid ALTER TABLE option"
    *Cause:   
    *Action:
    DESC acctmanager
    Thank you in advance.

    4b60e01f-2ea5-40fe-a161-fc12d38d09e5 wrote:
    To Whom it may Concern,
    I am attempting to add two columns Comm_id and Ben_id to a table in SQL Developer (Oracle).
    Here is the syntax I am using:
    ALTER TABLE ACCTMANAGER
    ADD (Comm_id NUMBER(10)),
    Ben_id VARCHAR(2);
    The spool file I'm getting as a result of the script above:
    Error starting at line 1 in command:
    ALTER TABLE ACCTMANAGER
    ADD (Comm_id NUMBER(10)),
    Ben_id VARCHAR(2)
    Error report:
    SQL Error: ORA-01735: invalid ALTER TABLE option
    01735. 00000 -  "invalid ALTER TABLE option"
    *Cause:  
    *Action:
    DESC acctmanager
    Thank you in advance.
    try as below instead
    ALTER TABLE ACCTMANAGER
    ADD (Comm_id NUMBER(10), Ben_id VARCHAR(2));

  • Error while strarting SOA service (oracle.ias.opmn.optic.OpticControlExcept

    Hi All ,
    Am facing a big problem with SOA suite installed in Windows vista , first time it worked fine but now am not able to start the service . If am creating a integration service connection in Jdeveloper it showing Failed for BPEL PM and ESB .
    Following is the error am receiving while starting 10g Suite
    oracle.ias.opmn.optic.OpticControlException: Error from opmn during process control operation
         at oracle.ias.opmn.optic.AbstractOpmnEntity.runCommand(AbstractOpmnEntity.java:174)
         at oracle.ias.opmn.optic.AbstractOpmnEntity.start(AbstractOpmnEntity.java:110)
         at oracle.appserver.startupconsole.control.OPMNController.doStart(OPMNController.java:89)
         at oracle.appserver.startupconsole.control.Controller.start(Controller.java:69)
         at oracle.appserver.startupconsole.control.GroupController.doStart(GroupController.java:47)
         at oracle.appserver.startupconsole.control.Controller.start(Controller.java:69)
         at oracle.appserver.startupconsole.view.controller.ControllerAdapter.start(ControllerAdapter.java:30)
         at oracle.appserver.startupconsole.view.controller.MasterControlAdapter.run(MasterControlAdapter.java:94)
         at oracle.appserver.startupconsole.view.Runner.main(Runner.java:39)
    Please help .
    Thanks
    Sourav

    Thanks for the reply, but i already inluded optic.jar finr in classpath and also plased it in the applib folder.
    Rgards,
    Srikanth.T

  • Alter table returns ORA-00907

    Hi all,
    The following instruction, in an update script provided by a software editor, returns me a ORA-00907 error (missing right parenthesis) :
    alter table TABLE_NAME add C1 VARCHAR2(10 byte) ;
    I ran it on a 8i database.
    If I remove the "byte" between parenthesis, the scripts runs OK.
    What is the "byte" option for ?
    Is it only available from 9i version for example ?
    thanks for your help
    Antoine

    I think it is from 10g onwards only (not sure though).
    It means the size of the column is specified in bytes instead of characters. In 8i there is no difference, but in 10g you can/should use multibyte charsets like AL32UTF8.
    That simply means certain characters need more than one byte to store it (Euro-Sign for example). It would not be possible to add 10 Euro-Signs to your VARCHAR2(10 byte) column, but it would work with a VARCHAR2(10 char) column.
    This explanation is not very good, a better one can be found in the [url http://download.oracle.com/docs/cd/B19306_01/server.102/b14225/ch6unicode.htm#CACHJHDJ]Oracle 10 Globalization Guide
    Just remove the "byte" from the script and you are doing fine.

  • Alter table FACT CLUSTER DIM PACK returns -5015 during heterog migrat

    Hi
    We are performing a heterogeneous migration from Oracle to MaxDB (NW70 SR1}.  The Database load is failing on the SAPDFACT fact tables.  It appears that the SQL engine is not aware of the enhancements delivered in the BW performance Pack (I'm assuming this from reading between the lines in the OSS notes - according to the online docs this alter table option doesn't exist..) .  We are running 7.6.xx
    We are performing this on a test system & this is our second attempt at migrating our Test BI system.  The first attempt was successful.  The SAP and MaxDB instances were deleted (SDBUNINST -all) and the system rebooted.  I have performed the 2nd sttempt several times with the same result each time.
    The load from R3load (R3LOAD_WL=1) is below:
    E:\usr\sap\BIT\SYS\exe\nuc\NTAMD64\R3load.exe: START OF LOG: 20080321211224
    E:\usr\sap\BIT\SYS\exe\nuc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#6 $ SAP
    E:\usr\sap\BIT\SYS\exe\nuc\NTAMD64\R3load.exe: version R7.00/V1.4
    Compiled Apr  2 2006 22:45:33
    E:\usr\sap\BIT\SYS\exe\nuc\NTAMD64\R3load.exe -i SAPDFACT.cmd -dbcodepage 1100 -k 17egf5M50TL01eqtd1Ax3A17 -l SAPDFACT.log -nolog -c 0
    ALLUSERSPROFILE=C:\Documents and Settings\All Users
    APPDATA=C:\Documents and Settings\bitadm\Application Data
    CLIENTNAME=H1704688
    ClusterLog=C:\WINDOWS\Cluster\cluster.log
    CommonProgramFiles=C:\Program Files\Common Files
    CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files
    COMPUTERNAME=CMSAPDEV5
    ComSpec=C:\WINDOWS\system32\cmd.exe
    DBMS_TYPE=ada
    FP_NO_HOST_CHECK=NO
    HOMEDRIVE=C:
    HOMEPATH=\Documents and Settings\bitadm
    JAVA_HOME=C:\java_32
    LOGONSERVER=
    CMDC13
    NUMBER_OF_PROCESSORS=2
    OS=Windows_NT
    Path=E:\usr\sap\BIT\SYS\exe\nuc\NTAMD64;e:\sapdb\programs\bin;e:\sapdb\programs\pgm;C:\Program Files (x86)\Legato\nsr\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;e:\sapdb\programs\bin;e:\sapdb\programs\pgm;C:\Program Files (x86)\Legato\nsr\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;E:\usr\sap\BIT\SYS\exe\nuc\NTAMD64
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    PROCESSOR_ARCHITECTURE=AMD64
    PROCESSOR_IDENTIFIER=EM64T Family 15 Model 6 Stepping 8, GenuineIntel
    PROCESSOR_LEVEL=15
    PROCESSOR_REVISION=0608
    ProgramFiles=C:\Program Files
    ProgramFiles(x86)=C:\Program Files (x86)
    R3LOAD_WL=1
    SAPEXE=E:\usr\sap\BIT\SYS\exe\nuc\NTAMD64
    SAPINST_EXEDIR_CD=I:/MAXDB/IM_WINDOWS_X86_64
    SAPLOCALHOST=CMSAPDEV5
    SAPSYSTEMNAME=BIT
    SECUDIR=E:\usr\sap\BIT\DVEBMGS00\sec
    SESSIONNAME=RDP-Tcp#1
    SystemDrive=C:
    SystemRoot=C:\WINDOWS
    TEMP=C:\WINDOWS\TEMP
    TMP=C:\WINDOWS\TEMP
    USERDNSDOMAIN=CSENERGY.COM.AU
    USERDOMAIN=CSENERGY
    USERNAME=bitadm
    USERPROFILE=C:\Documents and Settings\bitadm
    windir=C:\WINDOWS
    (BUF) INFO: trying to allocate 1024 kB memory
    (DB) INFO: connected to DB
    (DB) INFO: The MaxDB logwriter is switched off#20080321211232
    (TFH) INFO: Trying to open SAPDFACT.cmd
    (TFH) INFO: SAPDFACT.cmd opened
    (BUF) INFO: trying to allocate 1024 kB memory
    (TFH) INFO: Trying to open
    cmsapdev2\export_bit\ABAP\DATA\SAPDFACT.TOC
    (TFH) INFO:
    cmsapdev2\export_bit\ABAP\DATA\SAPDFACT.TOC opened
    (TFH) INFO: Trying to close
    cmsapdev2\export_bit\ABAP\DATA\SAPDFACT.TOC
    (TFH) INFO:
    cmsapdev2\export_bit\ABAP\DATA\SAPDFACT.TOC closed
    (BUF) INFO: trying to allocate 1 kB memory
    (RFF) INFO: loading table [HEADER]
    (TFH) INFO: Trying to open
    cmsapdev2\export_bit\ABAP\DATA\SAPDFACT.001
    (TFH) INFO:
    cmsapdev2\export_bit\ABAP\DATA\SAPDFACT.001 opened
    (RFF) INFO: entering fread
    (RFF) INFO: leaving fread
    (RFF) INFO: end of data for table [HEADER]
    (GSI) INFO: dbname   = "BIT                                                                                "
    (GSI) INFO: vname    = "ADABAS D                        "
    (GSI) INFO: hostname = "CMSAPDEV5                                                       "
    (GSI) INFO: sysname  = "Windows NT"
    (GSI) INFO: nodename = "CMSAPDEV5"
    (GSI) INFO: release  = "5.2"
    (GSI) INFO: version  = "3790 Service Pack 2"
    (GSI) INFO: machine  = "2x AMD64 Level 15 (Mod 6 Step 8)"
    (TFH) INFO: Trying to open C:\Program Files\sapinst_instdir\NW04S\LM\COPY\ADA\SYSTEM\CENTRAL\AS-ABAP\DDLADA.TPL
    (TFH) INFO: C:\Program Files\sapinst_instdir\NW04S\LM\COPY\ADA\SYSTEM\CENTRAL\AS-ABAP\DDLADA.TPL opened
    (TSK) INFO: Trying to open C:\Program Files\sapinst_instdir\NW04S\LM\COPY\ADA\SYSTEM\CENTRAL\AS-ABAP\SAPDFACT.TSK
    (TSK) INFO: C:\Program Files\sapinst_instdir\NW04S\LM\COPY\ADA\SYSTEM\CENTRAL\AS-ABAP\SAPDFACT.TSK opened
    (TSK) INFO: Trying to close C:\Program Files\sapinst_instdir\NW04S\LM\COPY\ADA\SYSTEM\CENTRAL\AS-ABAP\SAPDFACT.TSK
    (TSK) INFO: C:\Program Files\sapinst_instdir\NW04S\LM\COPY\ADA\SYSTEM\CENTRAL\AS-ABAP\SAPDFACT.TSK closed
    (TSK) INFO: Trying to rename C:\Program Files\sapinst_instdir\NW04S\LM\COPY\ADA\SYSTEM\CENTRAL\AS-ABAP\SAPDFACT.TSK to C:\Program Files\sapinst_instdir\NW04S\LM\COPY\ADA\SYSTEM\CENTRAL\AS-ABAP\SAPDFACT.TSK.bck
    (TSK) INFO: C:\Program Files\sapinst_instdir\NW04S\LM\COPY\ADA\SYSTEM\CENTRAL\AS-ABAP\SAPDFACT.TSK renamed to C:\Program Files\sapinst_instdir\NW04S\LM\COPY\ADA\SYSTEM\CENTRAL\AS-ABAP\SAPDFACT.TSK.bck
    (TSK) INFO: Trying to open C:\Program Files\sapinst_instdir\NW04S\LM\COPY\ADA\SYSTEM\CENTRAL\AS-ABAP\SAPDFACT.TSK
    (TSK) INFO: C:\Program Files\sapinst_instdir\NW04S\LM\COPY\ADA\SYSTEM\CENTRAL\AS-ABAP\SAPDFACT.TSK opened
    (TFH) INFO: Trying to open
    cmsapdev2\export_bit\ABAP\DATA\SAPDFACT.STR
    (TFH) INFO:
    cmsapdev2\export_bit\ABAP\DATA\SAPDFACT.STR opened
    (DB) INFO: /BI0/E0BWTCFC1 dropped#20080321211232
    (SQL) INFO: Searching for SQL file DFACT.SQL
    (SQL) INFO: Searching for SQL file
    cmsapdev2\export_bit\ABAP\DB/ADA/DFACT.SQL
    (SQL) INFO: Trying to open
    cmsapdev2\export_bit\ABAP\DB/ADA/DFACT.SQL
    (SQL) INFO:
    cmsapdev2\export_bit\ABAP\DB/ADA/DFACT.SQL opened
    DbSl Trace: EXECUTE on connection 0, rc=-5015 (POS(35) Missing keyword:DROP,MODIFY,COLUMN,ADD,NOT,SET,SAMPLE,FOREIGN,FACT,DYNAMIC,DIMENSION,BWHIERARCHY,ALTER)
    (DB) ERROR: DDL statement failed
    (     ALTER TABLE "/BI0/E0BWTCFC1" CLUSTER       ("KEY_0BWTCFC1T") PACKED )
    DbSlExecute: rc = 99
      (SQL error -5015)
      error message returned by DbSl:
    (DB) INFO: /BI0/E0BWTCFC2 dropped#20080321211232
    etc
    etc

    Thanks for the reply Markus.
    I am getting the same error with the latest R3load (and library) as well.
    I updated the DB.SAR files on the CD and received the error.  Thinking there maybe a version mismatch somewhere, I reverted to the original DB.SAR files.  Got the same error and captured the log above.
    I have logged a OSS call as well.
    Regards
    Doug

  • Error while altering a table in Oracle Portal

    i have a table with primary key. i realize that the primary is not required and when i get rid of primary key thru Oracle Portal and say OK ... i am encountered with the following error -
    Error:
    ORA-25150: ALTERING of extent parameters not
    permitted (WWV-11230)
    Failed to parse as PORTAL30 - alter table
    BPSITEST.JEN_TEST_PRIMARY_KEYS
    drop PRIMARY KEY
    modify(
    EMP_ID NUMBER(10),
    LAST_NAME VARCHAR2(10),
    FIRST_NAME VARCHAR2(10))
    PCTFREE 10
    PCTUSED 40
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    NEXT 256K
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    ENABLE CONSTRAINT SYS_C003038 ENABLE CONSTRAINT
    SYS_C003039 ENABLE CONSTRAINT SYS_C003040
    (WWV-08300)
    Any Ideas .... anyone ... ??
    thanx
    null

    ORA-00054: resource busy and acquire with NOWAIT specified The table is currently in use by something else.
    Werner

  • Error while altering a table.

    Hi All,
    When i tried to alter a table. I got the following error.
    SQL> ALTER TABLE SALES_ORDER_TRANS_IHST ADD(SUPER VARCHAR2(1),REASON_CD VARCHAR2(10));
    ERROR at line 1:
    ORA-00069: cannot acquire lock -- table locks disabled for SALES_ORDER_TRANS_IHST
    Then I tried to enable table lock for that table. Again got error.
    SQL> ALTER TABLE SALES_ORDER_TRANS_IHST enable table lock;
    ALTER TABLE SALES_ORDER_TRANS_IHST enable table lock
    ERROR at line 1:
    ORA-00054: resource busy and acquire with NOWAIT specified

    ORA-00054: resource busy and acquire with NOWAIT specified The table is currently in use by something else.
    Werner

  • Error while alter the table

    Hi
    Please let me know reasons for this below error
    Error starting at line 32 in command:
    ALTER
    TABLE DEVELOPMENT.BRANDING_STRINGS
    ADD
    CONSTRAINT frk_strings_brandingsdetails
    FOREIGN KEY (CUSTOMIZATION_ID)
    REFERENCES BRANDING_DETAILS (CUSTOMIZATION_ID)
    Error report:
    SQL Error: ORA-02270: no matching unique or primary key for this column-list
    02270. 00000 -  "no matching unique or primary key for this column-list"
    *Cause:    A REFERENCES clause in a CREATE/ALTER TABLE statement
               gives a column-list for which there is no matching unique or primary
               key constraint in the referenced table.
    *Action:   Find the correct column names using the ALL_CONS_COLUMNS
               catalog view

    Raunaq wrote:
    The last thing it needs is people begging to gain points for themselves so that they can boost their ego by trying to reach "Guru" status to impress their friends
    What are you ?
    How can you make out that i am doing this to impress my friends?
    What you could have simply done is that you should have told me that don't ask for point ? You can use better and decent english.
    And how can you image anybody is interested in your long lectures ?? Still
    Purvesh was quoting from the forum FAQ: Re: 13. How do I answer a question on the forums?
    It is not acceptable to ask for points for your answers.  The site admiinistrators have expressed that this is not acceptable behaviour.  Such posts can be deleted or edited and continued breach of this could result in termination of your account.
    As such, your post is now going to be edited to remove your begging for points.

  • High wait on Library Cache Lock while doing ALTER TABLE EXCHANGE PARTITION

    We are observing a very high wait time on "Library cache lock" while performing Exchange partition.
    Here we go
    ALTER TABLE PSALESREG EXCHANGE PARTITION P123
    WITH TABLE PBKPSALESREF WITHOUT VALIDATION
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.11 *6684.73* 2 9 2 0
    Fetch 0 0.00 0.00 0 0 0 0
    total 2 0.11 6684.73 2 9 2 0
    Misses in library cache during parse: 1
    Optimizer mode: ALL_ROWS
    Elapsed times include waiting on following events:
    Event waited on Times Max. Wait Total Waited
    ---------------------------------------- Waited ---------- ------------
    library cache lock 2274 3.12 *6681.32*
    Is it a bug? is anyone there who experienced the same issue?
    Rgds

    Maurice Muller wrote:
    Hi,
    As far as I remember a exchange partition can only be done when no other query is accessing the table.
    So you should check if any other queries are executed against the table PSALESREG while you do the exchange partition. Maurice,
    queries won't block the exchange operation but continue to read from the "original", exchanged segment; this "cross-DDL" read consistency is a feature that has been introduced a long time ago.
    But any kind of (long-running) DML should effectively prevent the exchange operation. Still I would assume that this shouldn't show up as "library cache lock", but you would get an "ORA-00054: resource busy" error.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

Maybe you are looking for