ORA-00600 while creating the queue table

Hello
I'm getting
ERROR on line 1:
ORA-00600: internal error code, arguments: [kcbz_check_objd_typ], [0], [0,]
[1], [], [], [], []
ORA-06512: at "SYS." DBMS_AQADM_SYS', line 2830
ORA-06512: at "SYS." DBMS_AQADM', line 58
ORA-06512: at line 2
When creating table queue.
The problem seems to be the name of the created object. Here's the script:

CREATE OR REPLACE TYPE BNA_CHG_EVENT AS OBJECT
(
NUMBER (2),
INTEGER ID
);
/

(it works fine)

BEGIN
SYS. DBMS_AQADM. CREATE_QUEUE_TABLE
(
QUEUE_TABLE = > 'BNA_CHG_EVENT_QT '.
, QUEUE_PAYLOAD_TYPE = > 'BNA_CHG_EVENT '.
"Compatible = > ' 10.0.0 '.
, SORT_LIST = > 'ENQ_TIME, PRIORITY '.
, MULTIPLE_CONSUMERS = > TRUE
, MESSAGE_GROUPING = 0 >
, SECURE = > FALSE
);
End;
/

(it crashes with ora-600).
When I change the name of BNA_CHG_EVENT_QT to the BNA_CHG_EVENT_OT object is created without errors.
Database is Oracle Database 10 g Enterprise Edition Release 10.2.0.4.0.

Any suggestions on the cause of the error?
Thanks in advance

ARO
Kuba Gasiorowski

ERROR on line 1:
ORA-00600: internal error code, arguments: [kcbz_check_objd_typ], [0], [0,]
[1], [], [], [], []
ORA-06512: at "SYS." DBMS_AQADM_SYS', line 2830
ORA-06512: at "SYS." DBMS_AQADM', line 58
ORA-06512: at line 2

Check on the support of Oracle
If you have upgraded DB to 10g, check 8247215 Bug

Workaround
A temporary workaround is to set dbblock_check_objtyp = false

Tags: Database

Similar Questions

  • ORA-22913 while creating a TABLE QUEUE type "typed".

    Hi guys:

    I'm trying to recreate a [AskTom post | http://asktom.oracle.com/pls/apex/f?p=100:11:0:P11_QUESTION_ID:8760267539329], but with one difference. My Type of Oracle contains a field that is an another Type of Oracle, and when I try to create a QUEUE_TABLE, I got the ORA-22913.

    Here are my steps:

    create or replace TYPE PODTL_TYPE AS OBJECT
    (
    VARCHAR2 (25), point
    ref_item varchar2 (25).
    physical_location_type varchar2 (1).
    physical_location number (10),
    physical_qty_ordered number (12.4).
    unit_cost number (20.4).
    origin_country_id VARCHAR2 (3),
    supp_pack_size number (12.4).
    date of earliest_ship_date,
    date of latest_ship_date,
    pickup_loc varchar2 (250).
    pickup_no varchar2 (25).
    packing_method varchar2 (6).
    round_lvl varchar2 (6).
    door_ind varchar2 (1).
    PRIORITY_LEVEL number (1).
    new_item varchar2 (1).
    VARCHAR2 (1) quarantine,.
    rcvd_unit_qty number (12.4).
    tsf_po_link_id number (10),
    cost_source varchar2 (4).
    date of est_in_stock_date
    );

    /

    create or replace TYPE PODtl_coll in the PODTL_TYPE table;

    /

    create or replace TYPE PODesc AS OBJECT
    (
    doc_type varchar2 (1).
    order_no varchar2 (10),
    order_type varchar2 (9).
    order_type_desc varchar2 (250).
    Dept. number 4,
    dept_name varchar2 (120),
    buyer number 4
    Buyer_Name varchar2 (120),
    provider varchar2 (10),
    promotion number (10),
    prom_desc varchar2 (160).
    qc_ind varchar2 (1).
    date of not_before_date,
    date of not_after_date,
    date of otb_eow_date,
    date of earliest_ship_date,
    date of latest_ship_date,
    date of close_date,
    conditions varchar2 (15).
    terms_code varchar2 (50).
    freight_terms varchar2 (30),
    cust_order varchar2 (1).
    payment_method varchar2 (6).
    payment_method_desc varchar2 (40),
    backhaul_type varchar2 (6).
    backhaul_type_desc varchar2 (40),
    backhaul_allowance number (20.4).
    ship_method varchar2 (6).
    ship_method_desc varchar2 (40),
    purchase_type varchar2 (6).
    purchase_type_desc varchar2 (40),
    status varchar2 (1).
    ship_pay_method varchar2 (2),
    ship_pay_method_desc varchar2 (40),
    fob_trans_res varchar2 (2),
    fob_trans_res_code_desc varchar2 (40),
    fob_trans_res_desc varchar2 (250).
    fob_title_pass varchar2 (2),
    fob_title_pass_code_desc varchar2 (40),
    fob_title_pass_desc varchar2 (250).
    vendor_order_no varchar2 (15).
    exchange_rate number (20,10).
    factory varchar2 (10),
    factory_desc varchar2 (240).
    Agent varchar2 (10),
    agent_desc varchar2 (240).
    discharge_port varchar2 (5).
    discharge_port_desc varchar2 (150).
    lading_port varchar2 (5).
    lading_port_desc varchar2 (150).
    bill_to_id varchar2 (5).
    freight_contract_no varchar2 (10),
    po_Type varchar2 (4).
    po_type_desc varchar2 (120),
    pre_mark_ind varchar2 (1).
    currency_code VARCHAR2 (3),
    contract_no number (6).
    pickup_loc varchar2 (250).
    pickup_no varchar2 (25).
    date of pickup_date,
    date of app_datetime,
    comment_desc varchar2 (2000).
    PODtl PODtl_coll
    );

    /

    Here are my 3 types of Oracle. When I try to create the QUEUE TABLE:


    DBMS_AQADM. () CREATE_QUEUE_TABLE
    Queue_table = > "PODESC_QUEUE_TABLE"
    Queue_payload_type = > 'PODesc ',.
    Multiple_consumers = > TRUE);

    END;

    I got the following error:

    22913 00000 - "must specify the name of the table for the nested table column or attribute.
    * Cause: The storage clause is not specified for a column in a nested table
    or an attribute.
    * Action: Specify the clause table nested for the nested table storage
    column or attribute.


    How can I solve this?

    Welcome to the forum!

    Every time you post please provide the Oracle version 4-digit (result of SELECT * FROM V$ VERSION).
    >
    I'm trying to recreate a [AskTom post | http://asktom.oracle.com/pls/apex/f?p=100:11:0:P11_QUESTION_ID:8760267539329], but with one difference. My Type of Oracle contains a field that is an another Type of Oracle, and when I try to create a QUEUE_TABLE, I got the ORA-22913.
    >
    You cannot use a NESTED in the charge of the message table.

    Chapter 4 Managing Oracle Streams AQ queues User Guide Advanced
    http://docs.Oracle.com/CD/B28359_01/server.111/b28420/manage.htm
    >
    4.6.4 collection Types of Message payloads

    You cannot create a message payload using a VARRAY that is not itself contained within an object. You also cannot currently use an even NESTED table as an object embedded in a message payload. However, you can create an object type that contains one or more VARRAYs and create a queue table that is based on this type of object, as shown in example 4-1.

    Example 4-1 creation of objects containing VARRAYs

    CREATE TYPE number_varray AS VARRAY (32) OF NUMBER;
    CREATE TYPE embedded_varray AS OBJECT (col1 number_varray);
    RUN DBMS_AQADM. () CREATE_QUEUE_TABLE
    queue_table-online "QT."
    queue_payload_type-online 'embedded_varray');
    >
    You need to change your payload to a supported type.

  • ORA-19504: cannot create the file '+ DATA '.

    Hello everyone.

    This is the scenario:

    We have a test server that is used to restore daily backups of the Production database. Restore us the database with the same SID as the production one.

    For specific reasons, we need create a second database (with a different SID) on this server with an older backup from the production one. To realize that I'm trying to use a part of the "DUPLICATE without connection to the target" tutorials on the web.

    I tried the simple guide that I found which is:

    (1) copy the backup files cold /somedirectory

    (2) start OLD database with nomount

    (3) connect RMAN with OLDER as an auxiliary

    (4) run the following: DUPLICATE DATABASE FOR OLD BACKUP LOCATION ' / somedirectory' NOFILENAMECHECK.

    Here's the result (I deleted some lines because of the size of it):

    ----------------------

    RMAN > ProdDB to OlderDB DUPLICATE DATABASE

    2 > LOCATION of BACKUP "/ home/oracle/OlderBackupFiles.

    3 > NOFILENAMECHECK.

    4 >

    From October 1, 14 Db double

    content of Script memory:

    {

    clone of SQL 'alter system set control_files =

    "+DATA/OlderDB/controlfile/current.829.859839217" comment =

    ' Set by RMAN "scope = spfile;

    clone of SQL 'alter system set = db_name

    "ProdDB" comment =

    ' Modified by RMAN duplicate "scope = spfile;

    clone of SQL 'alter system set db_unique_name =

    "OlderDB" comment =

    ' Modified by RMAN duplicate "scope = spfile;

    clone to stop immediately;

    Start clone force nomount

    Restore controlfile primary clone of ' / home/oracle/OlderDB/controlfile_ProdDB_20141001_4159.bkp';

    change the clone database mount;

    }

    execution of Script memory

    SQL statement: alter system set control_files = comment "+DATA/OlderDB/controlfile/current.829.859839217" = "defined by RMAN" scope = spfile

    SQL statement: change the system db_name set = comment "ProdDB" = "modified by RMAN duplicate" scope = spfile

    SQL statement: alter system set db_unique_name = comment "OlderDB" = "modified by RMAN duplicate" scope = spfile

    (...)

    From restoration to 1 October 14

    allocated channel: ORA_AUX_DISK_1

    channel ORA_AUX_DISK_1: SID = 191 type device = DISK

    channel ORA_AUX_DISK_1: restore the control file

    channel ORA_AUX_DISK_1: restoration complete, duration: 00:00:03

    output file name=+DATA/OlderDB/controlfile/current.829.859839217

    Restoration finished in October 1, 14

    mounted database

    output channel: ORA_AUX_DISK_1

    allocated channel: ORA_AUX_DISK_1

    channel ORA_AUX_DISK_1: SID = 191 type device = DISK

    content of Script memory:

    {

    until the SNA 274262921.

    the value of newname for datafile clone 1 again;

    the value of newname for datafile clone 2 again.

    the value of newname for datafile clone 3 again.

    the value of newname for datafile clone 4 new ones;

    the value of newname for datafile clone 5 again.

    the value of newname for datafile clone 6 again.

    the value of newname for datafile clone 7 again.

    restoration

    database clone;

    }

    (...)

    From restoration to 1 October 14

    using the ORA_AUX_DISK_1 channel

    channel ORA_AUX_DISK_1: from the restore backup set data file

    channel ORA_AUX_DISK_1: specifying datafile (s) to restore from backup set

    channel ORA_AUX_DISK_1: restore datafile 00001 to + DATA

    channel ORA_AUX_DISK_1: restore datafile 00002 to + DATA

    channel ORA_AUX_DISK_1: restore datafile 00003 to + DATA

    channel ORA_AUX_DISK_1: restore datafile 00004 in + DATA

    channel ORA_AUX_DISK_1: restore datafile 00005 to + DATA

    channel ORA_AUX_DISK_1: restore datafile 00006 to + DATA

    channel ORA_AUX_DISK_1: restore datafile 00007 to + DATA

    channel ORA_AUX_DISK_1: reading from the backup /home/oracle/OlderDB/database_ProdDB_20141001_4157.bkp piece

    channel ORA_AUX_DISK_1: ORA-19870: error when restoring the backup /home/oracle/OlderDB/database_ProdDB_20141001_4157.bkp piece

    ORA-19504: cannot create the file '+ DATA '.

    ORA-17502: ksfdcre:4 cannot create the file + DATA

    ORA-15041: diskgroup space 'DATA' exhausted

    switch to the previous backup

    Oracle instance started

    (...)

    content of Script memory:

    {

    clone of SQL 'alter system set = db_name

    "OlderDB" comment =

    ' Restore the original value by RMAN "scope = spfile;

    clone of SQL 'alter system reset db_unique_name scope = spfile;

    clone to stop immediately;

    }

    execution of Script memory

    Errors in the script of the memory

    RMAN-03015: an error has occurred in the script stored memory Script

    RMAN-06136: the auxiliary database ORACLE error: ORA-01507: database not mounted

    ORA-06512: at "SYS." "X$ DBMS_RCVMAN ', line 13466

    ORA-06512: at line 1

    RMAN-05556: not all data files have backups can be recovered on SNA 274262921

    RMAN-03015: an error has occurred in the script stored memory Script

    RMAN-06026: some targets not found - abandonment of restoration

    RMAN-06023: no backup or copy of the file 4 found to restore

    RMAN-06023: no backup or copy of datafile 3 found to restore

    RMAN-06023: no backup or copy of datafile 2 found to restore

    RMAN-06023: no backup or copy of datafile 1 found to restore

    RMAN-00571: ===========================================================

    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.

    RMAN-00571: ===========================================================

    RMAN-03002: failure of the command duplicate Db at 15:39:11 01/10/2014

    RMAN-05501: abandonment of duplicate target database

    Complete recovery manager.

    ------------------------------------------------------------------

    The first mistake of the stack was ORA-19504 while trying to restore the backup of the database.

    First thing I took a glance was ASM occupation but it enough available space.

    The second was a permission problem, but it doesn't seem to be the case because RMAN can correctly write the controlfile to ASM.

    One have some advice on what I should look for?

    Thanks in advance sorry for my English.

    Select this option.

    Hello.

    Thanks, but is not the case. As I have said, that the DATA diskgroup has space enough he uses only a single disk in a RAID.

    But I solved my problem... To the auxiliary database, I added the following to the spfile:

    DB_FILE_NAME_CONVERT = '+ DATA/ProdDB', '+ DATA/OlderDB ".

    LOG_FILE_NAME_CONVERT = '+ DATA/ProdDB', '+ DATA/OlderDB ".

    I don't know why, but with these two clauses, it worked well. Perhaps RMAN was trying to restore it to the wrong place?

  • Win Server 2003 SP2. Backup starts and see errror message "error returned while creating the volume shadow copy: 0x8004230f.»

    Win Server 2003 SP2. Backup starts and see errror message "error returned while creating the volume shadow copy: 0x8004230f.» All solutions? CPP, Volume Shadow Copy Stallion are started.

    Thank you for visiting the Microsoft answers community.

    The question you have posted is related to Windows Server and would be better suited in the MS TechNet Windows Server Forum. Please visit this link to find a community that will provide the support you want.

  • How to create the logical tables & how to give joints according to obiee 11g?

    Hello

    I have again to obiee 11g. I want to create the logical tables in MDB layer.

    After that I want to give joins according to MDB.

    I don't know, how to create the logical tables and how to give joints according to obiee 11g?

    Please help me.

    Thanks in advance,

    A.Kavya

    Hello

    The new logical table is right click on the MDB itself, for the join you generally in the business model diagram (again right click on objects).

    Maybe it's better if you start from a kind of tutorial to at least have an overview of what is happening where (layer business and physical layer etc.).

    Take a look at what Oracle has available: Oracle BI EE 11 g

    And no doubt, it can be a good start: https://apexapps.oracle.com/pls/apex/f?p=44785:24:0:NO:P24_CONTENT_ID, P24_PREV_PAGE:9787, 2

  • Error "Inverted threshold" on 'Activate changes' after creating the queue

    Hello

    In the Console of Administration Weblogic Server I'm trying to create a new queue by clicking 'Lock & Edit' first and then create the queue. When I do this I get an expected: message "the JMS queue was created successfully", but when I then try to click on 'Activate changes', I get a: error message 'reverse threshold '.

    Log file shows: failure is produced in the execution of the request of deployment with the ID '1368101884686' for the task "weblogic.deploy.configChangeTask.2". Error: ' java.lang.IllegalArgumentException: reverse threshold ' java.lang.IllegalArgumentException: reverse threshold

    Any ideas what this error?

    Thanks in advance.

    The below error when the values of the minimum and maximum thresholds for Server JMS, JMS or JMS queues subjects have been unsettled.

    "" java.lang.IllegalArgumentException: reverse threshold ".

    These values are stored in the Server JMS to manage flow control, since excessive values can cause saturation of memory which can cause the server suspended or slow processing of messages. Similarly for queues and JMS topics, values thresholds are defined to trigger events for logging and launch control message to the destination stream.

    To resolve this issue, please make sure and set the value of 'Messages threshold' and 'MessagesThresholdLow' as below:

    JMS servers
    Threshold messages > = MessagesThresholdLow

    JMS queues
    Threshold messages > MessagesThresholdLow

    JMS topics
    Threshold messages > MessagesThresholdLow

    Please refer to the following document for more details.
    http://docs.Oracle.com/CD/E24329_01/Web.1211/e24390/jmstuning.htm#PERFM315

    Thank you
    Vijaya

  • Cannot start db > ORA-09925: cannot create the audit trail file

    version 10.1.0.5.0
    AIX 3 5 00C9CEA04C00 dcxnim01

    When I'm trying to start db, getting this message any idea?

    SQL > connect virtue sysdba;
    ERROR:
    ORA-09925: cannot create the audit trail file
    IBM AIX RISC System/6000 error: 89: invalid file system control data detected
    Additional information: 9925
    ORA-09925: cannot create the audit trail file
    IBM AIX RISC System/6000 error: 89: invalid file system control data detected
    Additional information: 9925


    Here's the tail of the log of alerts

    3 Private_strands to the log command
    Thread 1 Advanced for you connect to sequence 3923
    Currently journal # 1, seq # 3923 mem # 0: /db01/oradata/ldapdcx1/ldapdcx1/redo01.log
    Fri 6 Aug 16:48:34 2010
    Errors in the /oracle/admin/ldapdcx1/bdump/ldapdcx1_j001_991348.trc file:
    [ORA-07445: exception encountered: core dump [] [] [] [] []]
    Fri 6 Aug 16:48:35 2010
    Errors in the /oracle/admin/ldapdcx1/bdump/ldapdcx1_mmnl_508106.trc file:
    [ORA-07445: exception encountered: core dump [] [] [] [] []]
    Fri 6 Aug 16:48:38 2010
    Errors in the /oracle/admin/ldapdcx1/bdump/ldapdcx1_ckpt_839714.trc file:
    [ORA-07445: exception encountered: core dump [] [] [] [] []]
    ORA-27072: IO file error
    IBM AIX RISC System/6000 error: 5: i/o error
    Additional information: 9
    Additional information: 3
    Fri 6 Aug 16:48:38 2010
    Errors in the /oracle/admin/ldapdcx1/bdump/ldapdcx1_lgwr_905470.trc file:
    [ORA-07445: exception encountered: core dump [] [] [] [] []]
    ORA-27063: number of bytes read or written is incorrect
    IBM AIX RISC System/6000 error: 5: i/o error
    Additional information:-1
    Additional information: 1024
    Fri 6 Aug 16:49:07 2010
    Errors in the /oracle/admin/ldapdcx1/bdump/ldapdcx1_pmon_848078.trc file:
    ORA-00470: LGWR process ended with the error

    IBM AIX RISC System/6000 error: 5: i/o error
    Additional information:-1

    Problem of the OS.
    What is the problem at the level of the BONE with the disc?

    unpacking of tail - 100

  • When I have a constarint of deferable in the Oracle database, while creating the ADF BC, all the columns in this table is marked as primary key. any help on how to fix this?

    DROP TABLE TWO.

    DROP TABLE ONE;

    CREATE TABLE 'A

    (

    ACTIVATE THE 'ID' NUMBER NOT NULL,

    ACTIVATE THE "SERIAL" VARCHAR2 (10 BYTE) NOT NULL,

    ACTIVATE THE "FIRST NAME" VARCHAR2 (30 BYTE) NOT NULL,

    ENABLE 'PK_ONE' CONSTRAINT PRIMARY KEY ('ID', "SERIAL")

    )

    TABLESPACE 'USERS ';

    CREATE TABLE "TWO"

    (

    ACTIVATE THE 'ID' NUMBER NOT NULL,

    ACTIVATE THE "SERIAL" VARCHAR2 (5 BYTE) NOT NULL,

    ACTIVATE THE "DEGREE_CODE" VARCHAR2 (10 BYTE) NOT NULL,

    'TEST_NAME' VARCHAR2 (20 BYTE),

    ACTIVATE THE KEY PRIMARY CONSTRAINT 'PK_TWO' ('ID', 'SERIAL'),

    "FK_TWO' FOREIGN KEY ('ID', 'DEGREE_CODE') CONSTRAINT REFERS TO 'ONE' ('ID', 'SERIAL') MAYBE DEFERRED ENABLE

    )

    TABLESPACE 'USERS ';

    If we use the above sql scripts to create the tables and create the ADF BC using the above 2 tables, all 4 columns in table 2 are reported as the primary key.

    User, tell us your version of Jdev, please!

    You should file an SR with support.oracle.com for this.

    As a work around you can change the area of occurrence, and remove the check mark key pirmary on the unwanted columns. After that, it should work.

    Timo

  • ORA-01555 while creating indexes

    Hello, is
    I create an Index on a partitioned table that is very large. The table is about 250 GB in size. The table is not yet used by one, neither read nor written.

    The create statement:

    CREATE A UNIQUE DASSERVER INDEX. PI_ALL ON DASSERVER. ALL THE
    (SENDERIP, SENDEZEIT, LFDNUMMER)
    NOLOGGING
    PCTFREE 10
    INITRANS 2
    MAXTRANS 255
    STORAGE)
    INITIAL 8192 M
    NEXT 1024M
    MINEXTENTS 1
    MAXEXTENTS UNLIMITED
    DEFAULT USER_TABLES
    )
    LOCAL
    (
    DASSERVER_2006 PARTITION
    TABLESPACE DASSERVER_2006
    STORAGE (INITIAL 1536M),
    DASSERVER_2007 PARTITION
    TABLESPACE DASSERVER_2007,
    DASSERVER_2008 PARTITION
    TABLESPACE DASSERVER_2008,
    DASSERVER_2009 PARTITION
    TABLESPACE DASSERVER_2009,
    DASSERVER_2010 PARTITION
    TABLESPACE DASSERVER_2010
    )
    NOPARALLEL;

    The error:

    CREATE A UNIQUE DASSERVER INDEX. PI_ALL ON DASSERVER. ALL THE
    *
    FEHLER in line 1:
    ORA-01555: Snapshot zu alt: medium 18 Rollback-Segmentnummer ' _SYSSMU18$ ' STI
    zu klein.

    Anyone a suggestion that I should try? I don't have the space on my drives to 250 GB rollback segments. I need space? Why? I don't understand! I thought the 1555 error occurs only when the concurrent transactions occur.

    Thanks in advance!

    Nanga

    I essentially agree with Sean. Select the rows of the table, and then try again to create the index. If there is a problem of delayed block drain plug the data selection should eliminate it.

    While you index works check v$ transaction and make sure that no developer/dba accesses the target table. If someone you can spend and "kick" them a couple of times. 8-)

    HTH - Mark D Powell.

  • After you have created the encrypted table, I'm not able to view the records.

    Cheap DBA

    I created encrypted tablespace and table as follows.

    Step 1 - change the file sqlnet.ora as follows
    --------------------------------------------

    ENCRYPTION_WALLET_LOCATION =
    (SOURCE = (METHOD = FILE) (METHOD_DATA =
    (DIRECTORY = C:\ora11g\app\admin\AMAN\encryption_wallet\)))


    Step 2 - set the encrypted key
    ------------------------------
    Run the following at the command prompt:
    ------------------------------------------
    create a portfolio orapki - C:\ora11g\app\admin\AMAN\encryption_wallet portfolio - pwd abcd1234 auto_login

    Step 3 - create the encrypted Tablespace
    ------------------------------------
    CREATE TABLESPACE encrypted_ts
    DATAFILE 'C:\ora11g\app\oradata\AMAN\DATAFILE\encrypted_ts01.dbf' SIZE 128K
    AUTOEXTEND ON NEXT 64K
    ENCRYPTION USING "AES256".
    DEFAULT STORAGE (ENCRYPT);

    Step 4 - assign the user to the encrypted storage space;
    -----------------------------------------------------
    ALTER USER scott QUOTA UNLIMITED ON encrypted_ts;


    Step 5 - check space storage, encrypted or not.
    ------------------------------------------------
    SELECT nom_tablespace, encrypted from dba_tablespaces;

    Step 6 - Test of encryption.
    -------------------------
    CONN scott/tiger

    CREATE TABLE ets_test (id NUMBER (10), data TABLESPACE VARCHAR2 (50)) encrypted_ts;

    CREATE INDEX ets_test_idx ON ets_test encrypted_ts (data) TABLESPACE;

    INSERT INTO ets_test (id, data) VALUES (1, "it is a secret!) 1') ;

    COMMIT;

    _ Now I am interrogating the table it gave the following error

    C:\Documents and Settings\suresh gelda > sys/xxxx sqlplus as sysdba;

    SQL * more: version 11.1.0.6.0 - Production the sea may 4 08:41:39 2011

    Copyright (c) 1982, 2007, Oracle. All rights reserved.


    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With partitioning, OLAP, Data Mining and Real Application Testing options

    SQL > select * from scott.ets_test;
    Select * from scott.ets_test
    *
    ERROR on line 1:
    ORA-28374: typed master key could not be found in the portfolio


    SQL > ALTER SYSTEM SET PORTFOLIO OPEN IDENTIFIED BY "abcd1234";
    ALTER SYSTEM SET PORTFOLIO OPEN IDENTIFIED BY "abcd1234".
    *
    ERROR on line 1:
    ORA-28354: already open wallet

    SQL > conn scott/tiger
    Connected.
    SQL > select * from ets_test;
    Select * from ets_test
    *
    ERROR on line 1:
    ORA-28374: typed master key could not be found in the portfolio

    SQL >

    Best regards
    SG

    When you start Oracle Wallet Manager (OMG), could you please confirm if the automatic connection option is checked or not?

    Thank you
    Hussein

  • Workshop SQL-> Tables-> create the Lookup Table

    It is perhaps a SQL issue rather than an issue of Apex, but...

    With my experience of amateur to create database tables, I usually start with a parent table and create children and link them.

    While playing with Apex, I have the ability to create a Lookup Table of in any table.

    And, what is created is a new table that is, indeed, a parent.
    So I have been working from the bottom to the top.

    I understand that correctly?

    Thank you-
    Marion

    Marion...

    Yes...

    Lookup tables store data from reference and a link to your main table with a standard primary/foreign key relationship.

    This feature is particularly useful if you are creating your tables of data in the worksheet and you want to standardize it.
    Gus...

  • Creating the external Table to alert log

    Hello

    I create an external table in oracle database 11g for the alert log file monitoring (to find the ORA errors), I used this statement to create an external table

    Create the directory TESTForAlertLog as 'E:\oracle\product\10.2.0\admin\db\bdump '.

    create table Alert_Log)
    Message varchar2 (30),
    Date of the day
    )
    (external) Organization
    type oracle_loader
    Default directory TESTForAlertLog
    (settings) access
    records delimited by newline
    fields ended by ',' possibly framed by "" "
    missing field values are null
    (
    "Message."
    'DAY' DATE 'DD MM YYYY ".
    )
    )
    location ("alert_db.log")
    )
    reject limit unlimited;

    Output is

    DAY OF MSG

    ORACLE V10.2.0.1.0 - Production vsnsta = 0
    ORACLE V10.2.0.1.0 - Production vsnsta = 0
    ORA-1109 marked during: ALTER DATABASE CLOSE NORMAL...
    ORA-00313: open failed for the members of the group log 1 of thread 1
    ORA-00312: thread 1 1 online journal: ' E:\ORACLE\PRODUCT\10.2.0\ORADATA\db\REDO01. JOURNAL"
    ORA-27041: could not open the file
    ORA-00313: open failed for the members of the Group of newspapers wire 2 1
    ORA-00312: wire 2 1 online journal: ' E:\ORACLE\PRODUCT\10.2.0\ORADATA\db\REDO02. JOURNAL"
    ORA-27041: could not open the file
    ORA-00313: open failed for the members of Group 3, Journal of thread 1
    ORA-00312: wire 3 1 online journal: ' E:\ORACLE\PRODUCT\10.2.0\ORADATA\db\REDO03. JOURNAL"
    ORA-27041: could not open the file
    ORACLE V10.2.0.1.0 - Production vsnsta = 0
    ORACLE V10.2.0.1.0 - Production vsnsta = 0

    But I need the eyes of output like this


    DAY OF MSG

    ORACLE V10.2.0.1.0 - Production vsnsta = 0 lun 22 dec 13:10:48 2008
    ORACLE V10.2.0.1.0 - Production vsnsta = 0 lun 22 dec 13:10:48 2008
    ORA-1109 marked during: ALTER DATABASE CLOSE NORMAL...
    ORA-00313: open failed for the members of the group log 1 of thread 1
    ORA-00312: thread 1 1 online journal: ' E:\ORACLE\PRODUCT\10.2.0\ORADATA\db\REDO01. JOURNAL"Mon dec 22 13:10:48 2008
    ORA-27041: could not open the file
    ORA-00313: open failed for the members of the Group of newspapers wire 2 1
    ORA-00312: wire 2 1 online journal: ' E:\ORACLE\PRODUCT\10.2.0\ORADATA\db\REDO02. JOURNAL"Mon dec 22 13:10:48 2008
    ORA-27041: could not open the file
    ORA-00313: open failed for the members of Group 3, Journal of thread 1
    ORA-00312: wire 3 1 online journal: ' E:\ORACLE\PRODUCT\10.2.0\ORADATA\db\REDO03. JOURNAL"Mon dec 22 13:10:48 2008
    ORA-27041: could not open the file
    ORACLE V10.2.0.1.0 - Production vsnsta = 0
    ORACLE V10.2.0.1.0 - Production vsnsta = 0

    I need the message and time of the message occurred

    No idea... is it possible to get this output...


    Thank U very much

    Concerning

    SHAN

    Read this - he explains how:
    http://www.singleQuery.com/2007/02/read-the-alert-log-with-SQL/

  • Best practices using clusters to create the queue/notifier/bundles?

    I'm in a block diagram, a queue, the notifier and several instances of cluster of bundle

    that all use the same data structure.   There is a typedef of cluster for the data structure.

    Of course, each of these objects (define the queue, set notifier, bundle)

    you want to know how do you define the cluster.

    What is considered best practices?

    (1) create a dummy instance of the cluster across data structure

    definition is necessary (and hide all on the public Service)

    (2) create only one instance and son at all places, it is necessary

    But there is no stream on this thread: it's only the cluster * definition *.

    which is used, so this seems to clutter the comic.

    (3) create only one instance of the cluster control and use local variables

    everywhere else the definition of cluster is required.  It's _value_ is never

    assigned or given read-so no problem with race conditions.

    (4) another way?

    If you were to clean up someone else's code, how do you expect

    See this Treaty?

    It occurred to me during this writing that here where I

    "unbundle...... code bundle" I could wire the original beam to the

    the two "unbundle" and "bundle" - but that would be too complicated

    and the size of the comics with useless thread?

    Thank you and best regards,

    -- J.

    Hi Jeff,

    I think that this question is about "sharing" the typedef and not how share data (?)  If the cluster control is registered as a typedef (or a strict typedef) but NOT SIMPLY as a CONTROL, then when a Diagram-constant of the typedef is created, it will be updated when you update the .ctl typedef!  (and there is no FP control to hide )  Of course if the typdef is already available "close" if necessary, you will be able to use instead - save a spacer of diagram.

    See you soon.

  • Create the content table gives error since the site Explorer

    Hi all

    I'm new to the web sites of the centre.

    Trying to create the table from the Explorer of sites.

    Tied at the top of the screen for creating the table.table_creation.png

    Get above error after clicking OK.sites_explorer_error.png

    No idea what I can do wrong. I logged in Site Explorer using admin user 'fwadmin '.

    Another way, I can create table content?

    Thanks in advance...

    Kind regards

    Ganesh

    Hello

    As Stephan said, you must create the table with the ID. Also, I wanted to just mention that I did face some questions, creation or update of some tables because of fwadmin ACL.

    There is another default user who has these specific ACLs to work on the database:

    -name: ContentServer

    -password: password

    I hope this can help,

    Concerning

  • How to create the monthly table is created?

    Hi guys,.

    Impossible to create the table for each month in the analytical database, but to load the data in the previous table continues as the screenshot attached, schema user has the privilege of creation. We use Webcenter interaction 10gR 4.

    How to create monthly creating the table please?

    Thank you

    Katherine

    Hi Trevor,

    Thanks for your help.  We were able to create table and load data to attached Apr.

    However the analytical user privilege has changed the APR because of the operation of the server.

    Since then, there was a message saying that there is no permission to create tables in the crawl log.

    analytical user privilege was granted after checking this message, as I suspected, the problem occurred after you change the analytical user privilege.

    Currently, Analytics is granted with all the privileges.

    Any idea please?

    Thank you

    Kathy

Maybe you are looking for