ORA-14030: partitioning column does not exist in the CREATE TABLE statement

Hi all

We are trying to create a partition materialized view and get an error below.
ORA-14030: partitioning column does not exist in the CREATE TABLE statement
Our GL_BALANCES21 and GL_CODE_COMBINATIONS21 base tables is already divided by interval of the range on Code_combination_id.
In the same way that we try to partition the view materialized
We get the error.
ORA-14030: partitioning column does not exist in the CREATE TABLE statement
Where the clause there are 4 tables gl_balances21, gl_code_combinations21, gl_periods and gl_set_of_books.


CREATE MATERIALIZED VIEW apps. BAL_PART
PARTITION BY RANGE ("CODE_COMBINATION_ID")
(SCORE LOWER (80000) VALUES,
PARTITION OF LOWER VALUES (160000),
PARTITION OF LOWER VALUES (240000),
PARTITION OF LOWER VALUES (320000),
PARTITION OF LOWER VALUES (400000),
PARTITION OF LOWER VALUES (480000),
PARTITION OF LOWER VALUES (560000),
PARTITION OF LOWER VALUES (640000),
PARTITION OF LOWER VALUES (720000),
PARTITION OF VALUES LESS THAN (800000),
PARTITION OF LOWER VALUES (880000),
PARTITION OF LOWER VALUES (960000),
PARTITION OF VALUES LESS THAN (10400000),
PARTITION OF LOWER VALUES (11200000),
PARTITION OF LOWER VALUES (12000000),
PARTITION OF LOWER VALUES (12800000),
PARTITION OF VALUES LESS THAN (13600000),
PARTITION OF LOWER VALUES (14400000),
PARTITION OF VALUES LESS THAN (15200000),
PARTITION OF LOWER VALUES (16000000),
PARTITION OF VALUES LESS THAN (16800000),
PARTITION OF VALUES LESS THAN (17600000),
PARTITION OF VALUES LESS THAN (18400000),
PARTITION OF VALUES LESS THAN (19200000),
PARTITION OF LOWER VALUES (20000000),
PARTITION OF VALUES LESS THAN (20800000),
PARTITION OF VALUES LESS THAN (21600000),
PARTITION OF VALUES LESS THAN (22400000),
PARTITION OF VALUES LESS THAN (23200000),
PARTITION OF LOWER VALUES (24000000),
PARTITION OF VALUES LESS THAN (24800000),
PARTITION OF VALUES LESS THAN (25600000),
PARTITION OF VALUES LESS THAN (26400000),
PARTITION OF LOWER VALUES (27200000),
PARTITION OF LOWER VALUES (28000000),
PARTITION OF VALUES LESS THAN (28800000),
PARTITION OF VALUES LESS THAN (29600000),
PARTITION OF VALUES LESS THAN (30400000),
PARTITION VALUES LESS THAN (MAXVALUE))
QUICKLY REFRESH ON DEMAND
SELECT the QUERY REWRITE as
SELECT GL.GL_CODE_COMBINATIONS21. ROWID C1,
GL.GL_BALANCES21. ROWID C2,
"GL". "" GL_BALANCES21 ". "" ACTUAL_FLAG, "
"GL". "" GL_BALANCES21 ". "" CURRENCY_CODE "
"GL". "" GL_BALANCES21 ". "" PERIOD_NUM, "
"GL". "" GL_BALANCES21 ". "" PERIOD_YEAR ".
"GL". "" GL_BALANCES21 ". "" SET_OF_BOOKS_ID ""SOB_ID"
"GL". "" GL_CODE_COMBINATIONS21 ". "" CODE_COMBINATION_ID ""CCID.
"GL". "" GL_CODE_COMBINATIONS21 ". "" SEGMENT1 ",.
"GL". "" GL_CODE_COMBINATIONS21 ". "" SEGMENT10, "
"GL". "" GL_CODE_COMBINATIONS21 ". "" DIRECTION11, "
"GL". "" GL_CODE_COMBINATIONS21 ". "" SEGMENT12, "
"GL". "" GL_CODE_COMBINATIONS21 ". "" SEGMENT13, "
"GL". "" GL_CODE_COMBINATIONS21 ". "" SEGMENT14, "
"GL". "" GL_CODE_COMBINATIONS21 ". "" SEGMENT2 ",.
"GL". "" GL_CODE_COMBINATIONS21 ". "" SEGMENT3. "
"GL". "" GL_CODE_COMBINATIONS21 ". "" SEGMENT4, "
"GL". "" GL_CODE_COMBINATIONS21 ". "" SEGMENT5, "
"GL". "" GL_CODE_COMBINATIONS21 ". "" SEGMENT6, "
"GL". "" GL_CODE_COMBINATIONS21 ". "" SEGMENT7. "
"GL". "" GL_CODE_COMBINATIONS21 ". "" SEGMENT8, "
"GL". "" GL_CODE_COMBINATIONS21 ". "" SEGMENT9, "
"GL". "" "" GL_PERIODS '. "" PERIOD_NAME,"
NVL ("GL". "GL_BALANCES21" "." " (BEGIN_BALANCE_CR', 0) Open_Bal_Cr,
NVL ("GL". "GL_BALANCES21" "." " (BEGIN_BALANCE_CR', 0) +.
NVL ("GL". "GL_BALANCES21" "." " (PERIOD_NET_CR', 0) Close_Bal_Cr,
NVL ("GL". "GL_BALANCES21" "." " (BEGIN_BALANCE_DR', 0) Open_Bal_Dr,
NVL ("GL". "GL_BALANCES21" "." " (BEGIN_BALANCE_DR', 0) +.
NVL ("GL". "GL_BALANCES21" "." " (PERIOD_NET_DR', 0) Close_Bal_Dr,
NVL ("GL". "GL_BALANCES21" "." " (BEGIN_BALANCE_DR', 0).
NVL ("GL". "GL_BALANCES21" "." " (BEGIN_BALANCE_CR', 0) Open_Bal,
NVL ("GL". "GL_BALANCES21" "." " (BEGIN_BALANCE_DR', 0).
NVL ("GL". "GL_BALANCES21" "." " (BEGIN_BALANCE_CR', 0) +.
NVL ("GL". "GL_BALANCES21" "." " (PERIOD_NET_DR', 0).
NVL ("GL". "GL_BALANCES21" "." " (PERIOD_NET_CR', 0) Close_Bal,
NVL ("GL". "GL_BALANCES21" "." " (PERIOD_NET_CR', 0) Period_Cr,
NVL ("GL". "GL_BALANCES21" "." " (PERIOD_NET_DR', 0) Period_Dr
OF GL.GL_CODE_COMBINATIONS21.
GL.GL_BALANCES21,
GL.GL_SETS_OF_BOOKS,
GL.GL_PERIODS
WHERE GL.GL_BALANCES21. CODE_COMBINATION_ID = GL.GL_CODE_COMBINATIONS21. CODE_COMBINATION_ID
AND GL.GL_SETS_OF_BOOKS. SET_OF_BOOKS_ID = GL.GL_BALANCES21. SET_OF_BOOKS_ID
AND GL.GL_PERIODS. PERIOD_NUM = GL.GL_BALANCES21. PERIOD_NUM
AND GL.GL_PERIODS. PERIOD_YEAR = GL.GL_BALANCES21. PERIOD_YEAR
AND GL.GL_PERIODS. PERIOD_TYPE = GL.GL_BALANCES21. PERIOD_TYPE
AND GL.GL_PERIODS. PERIOD_NAME = GL.GL_BALANCES21. PERIOD_NAME
AND GL.GL_PERIODS. PERIOD_SET_NAME = GL.GL_SETS_OF_BOOKS. PERIOD_SET_NAME
and gl.GL_CODE_COMBINATIONS21.summary_flag! = « Y »

ERROR on line 54:
ORA-01013: user has requested the cancellation of the current operation

I checked the metalink note saying that ensure that all columns in a partitioning column list are columns of
the table being created.

Partition is already there, on the column of code_combination_id of gl_balances21 and gl_code_combinations21.

Please suggest.

Thank you

It's your mistake:

PARTITION BY RANGE ("CODE_COMBINATION_ID") 

but in your projection of column list, you have an alias he:

"GL"."GL_CODE_COMBINATIONS21"."CODE_COMBINATION_ID" "CCID",

You must use the alias as a partition key, not the name fom the secondary table column.
--
John Watson
Oracle Certified Master s/n
http://skillbuilders.com

Tags: Database

Similar Questions

  • ORA-14313: value 'Limit' does not exist in the partition DATASET_OTHER

    Hi friends,

    OS: Linux
    Database Version: 10.2.0.2.0

    I wanted to add a partition to one of my partitioned table "mapping". Then when I tried to reverse the partitionwith the command below... I got the error ora-14313 code.
    Command Used:
    
    ALTER TABLE MAPPING SPLIT PARTITION dataset_other VALUES ('CAP') INTO (PARTITION dataset_CAP TABLESPACE TBS_MAPPING_CAP, PARTITION dataset_other);
    Error :
    
    ALTER TABLE MAPPING SPLIT PARTITION dataset_other VALUES ('CAP')  INTO (PARTITION dataset_CAP TABLESPACE TBS_MAPPING_CAP, PARTITION dataset_other)
                *
    ORA-14313: Value 'CAP' does not exist in partition DATASET_OTHERERROR at line 1:         
    Please suggest what to do and what is the reason for this? coz of some other partition spilit command executed successfully.

    Concerning

    Umesh

    Umesh Gupta wrote:

    Here are a few recent records in table

    select table_name,partition_name,tablespace_name,high_value,partition_position from USER_TAB_PARTITIONS order by partition_position
    
    TABLE_NAME     PARTITION_NAME     TABLESPACE_NAME     HIGH_VALUE     PARTITION_POSITION
    
    MAPPING    DATASET_NAP           TBS_MAPPING_NAP   'NAP'     379
    MAPPING    DATASET_MAP           TBS_MAPPING_MAP  'MAP'        380
    MAPPING    DATASET_SAP           TBS_MAPPING_SAP   'SAP'        381
    MAPPING    DATASET_OTHER       TBS_MAPPING          DEFAULT            382
    

    Have you checked other values of 378 score very carefully. (Normally) you get the error message means that the value exists somewhere else already.
    You could also point out the high_value_length, just in case where the high_value isn't really what it looks like (e.g. some backspaces hide certain content).

    Concerning
    Jonathan Lewis
    http://jonathanlewis.WordPress.com
    Author: core Oracle

  • ORA-39083, ORA-00959: tablespace "TEST_LIVE" does not exist

    Hello

    I'm trying to import using impdp but I am experiencing at the below mentioned error...

    Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With partitioning, OLAP, Data Mining and Real Application Testing options
    Table main "TEST_230511." "' SYS_IMPORT_FULL_01 ' properly load/unloaded
    Start "TEST_230511". ' SYS_IMPORT_FULL_01 ': TEST_230511/***@GEMSDB REMAP_SCHEMA = RΘPERTOIRE TEST_220511:test_230511 = dump_dict = test_live_230511.DMP test_230511.LOG = LOGFILE DUMPFILE.
    Processing object type SCHEMA_EXPORT/USER
    ORA-31684: USER object Type: 'TEST_230511' already exists
    Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
    Processing object type SCHEMA_EXPORT/ROLE_GRANT
    Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
    Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
    Processing object type SCHEMA_EXPORT/DB_LINK
    Object type SCHEMA_EXPORT/SEQUENCE/SEQUENCE of treatment
    Object type SCHEMA_EXPORT/TABLE/TABLE processing
    ORA-39083: object of type THAT TABLE could not create with the error:
    ORA-00959: tablespace "TEST_LIVE" does not exist
    Because sql is:
    CREATE TABLE 'TEST_230511 '. "" C_EXPENSECLAIMS_EMPLOYEE "("C_EXPENSECLAIMS_EMPLOYEE_ID"NUMBER (10.0),"AD_CLIENT_ID"NUMBER (10.0), NUMBER (10,0)"AD_ORG_ID","ISACTIVE"CHAR (1),"CREATED"DATE,"CREATEDBY"NUMBER (10.0), DATE 'DAY', 'UPDATEDBY" NUMBER (10.0), 'TRANSACTION_DATE"DATE, DATE 'EXPENSE_DATE', NUMBER (10.0) 'EXPENSE_TYPE_ID', 'BUDGET' CHAR (1) DEFAULT ('N'), THE NUMBER OF 'AMOUNT')
    ORA-39083: object of type THAT TABLE could not create with the error:
    ORA-00959: tablespace "TEST_LIVE" does not exist

    ORA-00959: tablespace "TEST_LIVE" does not exist

    Oracle has clearly tell you, need tablespace whose name is TEST_LIVE on the target database was created after that you can try import again.

  • ORA-00959: tablespace 'EXAMPLE' does not exist

    Hi all,

    I'm not a DBA, and I'm very basic level with oracle database technology. I want to study to get OCA "SQL Fundametals I" certification.

    For this reason I downloaded the "pre built' virtualbox machine with oracle database 11g r2 installed, but I have not found the EXAMPLE of HR and OE schema that is used as a case study for the certification.

    Googling on the internet I found that it is possible manually install the schema example.

    In the $ORACLE_HOME/demo/schema, I found the mkplug.sql. Run this file with sqlplus I insert the 11 request parameters but the High Representative, OE, and another example of schema are not correctly create.

    The error I get in the log file is: ORA-00959: tablespace "EXAMPLE" does not exist.

    Please, can someone help me on what are the exact steps to do before running the mkplug.sql file?

    Research on the internet I found that the solution is the following: either we create tablespace EXAMPLE in the target database, or we use the datapump REMAP_TABLESPACE option to redirect objects to a different tablespace.

    But I don't know about do. Please, can anyone tell me not away in all simply elsewhere what I need to do?

    Thanks in advance.

    ndiquez backup file of the database ENTRY for the EXAMPLE tablespace as parameter 9:

    Enter the value 9: example01.dfb (not full path)

    Of course, that won't work.

    Why wait for work if you provide the wrong file name and path?

    I ask you SPECIFICALLY what the name was, and what extension was

    / DBCA/templates /' | ' example01. DFB', done);

    That was probably the wrong post. Most of the default extensions are "DBF", not "DFB".

    Your data file EXAMPLE01 exist? What extension does?

    You said that the extension is "DFB" and I ask you to double check that. That's what you say.

    Yes, there are the data EXAMPLE01 file. It is located at the address: u01/app/oracle/product/11.2.0/orcl/assistants/dbca/templates. Its extension is .dfb (EXAMPLE01.dfb).

    You have CONFIRMED that the extension is "DFB" and NOT of DBF.

    You MUST USE THE CORRECT ACCESS path, name of FILE AND the EXTENSION.

    You have confirmed that the file ' is located at the address: u01/app/oracle/product/11.2.0/orcl/assistants/dbca/template'. But while you did NOT provide this path in the prompt.

    If a file is named A, and you must provide a name of B would you expect to work?

    If the file is located in the directory X 123 and you provide directory P789 would you expect to work?

    As I said earlier the IMP (import) statement will take a file source and COPY to the destination location, add the metadata of the database.

    She did this so that you ALWAYS have the original source file to use again if you want to a different database.

    You must follow the instructions of the example and provide the NAME AND path to FULL ACCESS to all files.

  • ORA-20987: APEX - interactive report region does not exist in the application

    ORA-20987: APEX - interactive report region does not exist in the application

    I'm trying to get the query of an international registration (interactive report) on a specific page in my application.

    The code I am using is thesi:

    create or replace function get_report_query (nPage_id number)

    return varchar2

    as

    l_report apex_ir.t_report;

    l_query varchar2 (32767).

    l_list varchar2 (32767).

    number of nRegion_id;

    number of nIR_id;

    OWA.vc_arr nm;

    VL owa.vc_arr;

    BEGIN

    SELECT region_id

    IN nRegion_id

    Of apex_application_page_regions

    WHERE application_name = "E-BRIL.

    AND page_id = nPage_id

    AND source_type = "interactive report";

    nIR_id: =.

    apex_ir.get_last_viewed_report_id (p_page_id = > nPage_id,)

    p_region_id = > nRegion_id);

    NM (1): = "DUMMY_JUST_TO_SET_UP_OWA_UTIL";

    VL (1): = 'WHATEVER ';

    OWA.init_cgi_env (nm.count, nm, vl);

    l_report: = APEX_IR. () GET_REPORT

    p_page_id = > nPage_id,

    p_region_id = > nRegion_id,

    p_report_id = > 0);

    l_query: = l_report.sql_query;

    because me in 1.l_report.binds.count

    loop

    l_list: = l_list | i||'. '|| l_report. Binds (i) .name | » ='|| l_report. Binds (i) .value;

    end loop;

    Return l_query;

    end;

    /

    I want to get the query of the IR on my page 3. And I run;

    get_report_query (3)

    That's what I get:

    ORA-20987: APEX - interactive report region does not exist in application, page 3 and 1278226325207011749 region. -Contact your administrator of the application.

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 630

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 911

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 33

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 55

    ORA-06512: at "EBR_OWNER. GET_REPORT_QUERY', line 19

    The regio_id seems ok, because when I ask this region_id of apex_application_page_regions, id 1278226325207011749 is returned.

    Page 3 is also correct.

    I tried to follow Denes Kubicek his blog (Denes Kubicek ApEx BLOG: interactive report query is).

    What I'm doing wrong here?

    We use the Apex 4.2.

    Thanks in advance.

    Reg,

    Chris

    1717220 wrote:

    Please update your forum profile with a recognizable username instead of "1717220": Video tutorial how to change username available

    ORA-20987: APEX - interactive report region does not exist in the application

    I'm trying to get the query of an international registration (interactive report) on a specific page in my application.

    The code I am using is thesi:

    create or replace function get_report_query(nPage_id IN number)
    return varchar2
    as
    l_report  apex_ir.t_report;
    l_query  varchar2(32767);
    l_list  varchar2(32767);
    nRegion_id number;
    nIR_id number;
    nm  owa.vc_arr;
    vl  owa.vc_arr;
    BEGIN 
    
        SELECT region_id
        INTO nRegion_id
        FROM apex_application_page_regions
        WHERE application_name = 'E-BRIL'
          AND page_id = nPage_id
          AND source_type = 'Interactive Report';
    
        nIR_id :=
          apex_ir.get_last_viewed_report_id (p_page_id        => nPage_id,
                                            p_region_id      => nRegion_id);
    
        nm(1) := 'DUMMY_JUST_TO_SET_UP_OWA_UTIL';
        vl(1) := 'WHATEVER';
        owa.init_cgi_env( nm.count, nm, vl );
    
        l_report := APEX_IR.GET_REPORT (
                        p_page_id  => nPage_id,
                        p_region_id => nRegion_id,
                        p_report_id => 0); 
    
        l_query := l_report.sql_query;
        for i in 1..l_report.binds.count
        loop
            l_list := l_list||i||'. '||l_report.binds(i).name||'='||l_report.binds(i).value;
        end loop;
    
    return l_query;
    end;
    

    I want to get the query of the IR on my page 3. And I run;

    get_report_query (3)

    That's what I get:

    ORA-20987: APEX - interactive report region does not exist in application, page 3 and 1278226325207011749 region. -Contact your administrator of the application.

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 630

    ORA-06512: at "APEX_040200.WWV_FLOW_ERROR", line 911

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 33

    ORA-06512: at "APEX_040200.WWV_FLOW_WORKSHEET_UTIL", line 55

    ORA-06512: at "EBR_OWNER. GET_REPORT_QUERY', line 19

    The regio_id seems ok, because when I ask this region_id of apex_application_page_regions, id 1278226325207011749 is returned.

    Page 3 is also correct.

    I tried to follow Denes Kubicek his blog (Denes Kubicek ApEx BLOG: interactive report query is).

    What I'm doing wrong here?

    We use the Apex 4.2.

    The '0' in line 31 should be "nIR_id".

    What is the purpose of the lines 24-26?

  • ORA-00959: NSN_2 tablespace does not exist... But the tablespace is defined in the user temp script

    WHEN I SPEAR IMPDP I GET AN ERROR ABOUT "THE TABLESPACE DOES NOT EXIST.

    THIS space of STORAGE IS in FACT is MORE PRESENT on THE SYSTEM, BUT IT IS DEFINED IN the User1 SCRIPT

    IS there ANYWAY THAT I CAN ASK HIM don't GET THIS TEMP TABLESPACE

    or

    is there anyway I can remove the definition of the user (User1) NSN_2

    OR

    should I just re-create the NSN_2 tablescape

    HELP NEEDED PLS...

    DROP USER CASCADE USER1;

    CREATE THE USER1 USER

    IDENTIFIED BY < password >

    NSN_1 DEFAULT TABLESPACE

    TEMPORARY TEMP TABLESPACE

    -2 Tablespace quotas for User1

    ALTER USER USER1 QUOTA UNLIMITED ON NSN_1;

    ALTER USER USER1 QUOTA UNLIMITED ON NSN_2;                -point in contention

    Directory of Impdp User1/password = dump_dir dumpfile = logfile = LOG.log remap_schema user2.dmp = USER2:USER1 remap_tablespace = NSN_4:NSN_1

    Table main "USER1". "' SYS_IMPORT_FULL_01 ' properly load/unloaded

    Departure "USER1". "' SYS_IMPORT_FULL_01 ': User1 / * directory = dump_dir = setup_02102012.dmp = logfile dumpfile tries .log remap_schema = remap_tablespace of installation: USER1 = NSN_4:NSN_1

    Processing object type SCHEMA_EXPORT/USER

    ORA-31684: USER object Type: 'USER1' already exists

    Processing object type SCHEMA_EXPORT/SYSTEM_GRANT

    Processing object type SCHEMA_EXPORT/ROLE_GRANT

    Processing object type SCHEMA_EXPORT/DEFAULT_ROLE

    Processing object type SCHEMA_EXPORT/TABLESPACE_QUOTA

    ORA-39083: Type as tablespace_quota cannot be created with the object error:

    ORA-00959: tablespace "NSN_2" does not exist

    Because sql is:

    REPORT THE NUMBER OF TEMP_COUNT;   SQLSTR VARCHAR2 (200); BÉGIN SQLSTR: = ' ALTER USER 'USER1' QUOTA UNLIMITED ON 'NSN_2 ';  RUN IMMEDIATELY SQLSTR; EXCEPTION, THEN THAN OTHERS SO IF SQLCODE =-30041 THEN SQLSTR: = ' SELECT COUNT (*) OF USER_TABLESPACES WHERE NOM_TABLESPACE = "NSN_2" AND CONTENT = "TEMPORARY"';      RUN IMMEDIATELY SQLSTR IN TEMP_CO

    Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA

    Object type SCHEMA_EXPORT/SEQUENCE/SEQUENCE of treatment

    Object type SCHEMA_EXPORT/TABLE/TABLE processing

    ORA-39083: TABLE object type: "USER1". "" AVAIL_BY_OPTION_REF "impossible to create with the error:

    ORA-00959: tablespace "NSN_2" does not exist

    Impdp transform = segment_attributes

    Smit

  • ORA-04043: object FND_EXECUTABLES does not exist

    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE 10.2.0.4.0 Production
    AMT for Solaris: release 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    -------------------------------------------------------------------------------------

    I am getting error below...

    SQL > desc FND_EXECUTABLES
    ERROR:
    ORA-04043: object FND_EXECUTABLES does not exist

    NATHALIE wrote:
    I use the sys user!

    SYS is NOT the owner of each table in the comic book, including FND_EXECUTABLES.
    What USER owns the FND_EXECUTABLES?

  • ORA-01918: user 'APDBA' does not exist

    Hello, I have the following statement
    CREATE OR REPLACE FUNCTION APDBA.MUNIN_TBS_PCTUSED1
    (
      tablespace IN VARCHAR2 
    ) RETURN NUMBER AS
    A NUMBER;
     
    BEGIN 
      SELECT round(100*(sum(bytes)/1024/1024)/(sum(maxbytes)/1024/1024),1) INTO A
      FROM dba_data_files
      WHERE tablespace_name = tablespace;
       
      RETURN A;
    END MUNIN_TBS_PCTUSED1;
    /
    The problem is that the APDBA user exists in the database and I get the error ORA-01918: user 'APDBA' does not exist

    Thank you very much

    Hello again,

    As said, there are a few false given ORA-01918-related bugs.
    Your version seems to fit these, but you did not provide enough information to give the exact answer suffer you from one of them.

    There is no point in us trying to solve this problem, you must open a SR with Oracle.

    Concerning
    Peter

  • DESC DBA_DATA_FILES / ORA-04043: dba_data_files object does not exist

    Hi I have Oracle 10.1.0.5; on IBM AIX. After the disk failure, I have a problem with corruption of block cancel and I am unable to use dba_data_file view.



    SQL > desc dba_data_files

    ERROR:

    ORA-04043: dba_data_files object does not exist





    SQL > desc dba_tablespaces

    Name Null? Type

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

    NOM_TABLESPACE NOT NULL VARCHAR2 (30)

    BLOCK_SIZE NOT NULL NUMBER

    NUMBER OF INITIAL_EXTENT

    NUMBER OF NEXT_EXTENT

    MIN_EXTENTS NOT NULL NUMBER

    NUMBER OF MAX_EXTENTS

    NUMBER OF PCT_INCREASE

    NUMBER OF MIN_EXTLEN

    STATUS VARCHAR2 (9)

    CONTENT VARCHAR2 (9)

    RECORD VARCHAR2 (9)

    FORCE_LOGGING VARCHAR2 (3)

    EXTENT_MANAGEMENT VARCHAR2 (10)

    ALLOCATION_TYPE VARCHAR2 (9)

    PLUGGED_IN VARCHAR2 (3)

    SEGMENT_SPACE_MANAGEMENT VARCHAR2 (6)

    DEF_TAB_COMPRESSION VARCHAR2 (8)

    VARCHAR2 (11) RETENTION

    BIGFILE VARCHAR2



    What is the problem? Database is running.



    Thanks in advance

    Database is running.

    According to metalink following note

    ORA-4043 on DBA_ View (s) if they are described in a mount Statge [ID 296235.1] *.

    It seems completing desc DBA_ views in the State, you have to bounce back or clear the shared pool.

    For more details check the note.

  • ORA-01720: grant option does not exist for ' APPS. FND_PROFILE'

    Hi all

    When creating view Schema CUSTOM the below error is coming in the deployment.

    ORA-01720: grant option does not exist for ' APPS. FND_PROFILE'

    Creation of the view, but while giving grants to the APPS error schema has occurred.

    Can someone help us please on this?

    Kind regards
    Suresh Reddy.

    You must grant EXECUTE on fnd_profile. VALUE, in addition to the tables.

  • ORA-13754: 'SQL Tuning Set' 'string' does not exist for the user "sysman."

    ORA-13754: 'SQL Tuning Set' 'string' does not exist for the user "sysman."

    Hello
    in 10g R2 when I run the following in isqlplus I error of the United Nations:
    SELECT * FROM TABLE(DBMS_SQLTUNE.SELECT_SQLSET(
    'my_sql_tuning_set',
    '(disk_reads/buffer_gets) >= 0.05'));
    
    ORA-13754: "SQL Tuning Set"'my_sql_tuning_set" does not exist for user "sysman". 
    No problem if I run it as sys to sqlplus.

    Thanks for the help.

    How to activate for sys isqlplus?

    You are logged in as sysman,

    Check the user from the sql prompt.

    show user
    
  • The key of the MA is not configured properly or is corrupted in the file system and s doe does not exist in the repository of management.

    I get this error and is it possible to solve this problem without re-creating the service/s once again, etc. Just curious, if you have suggestions/steps I may have missed or I'll drop and recreate new services

    In any case, I have a backup of the emkey.ora and place it in the sysman/config directory, but still does not work... Please see below...

    C:\Documents and Settings\abigail > emctl status emkey

    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0

    Copyright (c) 1996, 2010 Oracle Corporation.  All rights reserved.

    Enter the password for the repository:

    ********

    ****

    The key of the MA is not configured properly or is corrupted in the file system and the DOE

    s does not exist in the repository of management. To correct the problem:

    (1) (copy the emkey.ora another WHO file or backup machine OH/sysman/c

    onfig directory.

    (2) configure the emkey.ora file by running ' emctl config emkey - emkeyfile < emkey.

    ".ora file location >.

    C:\Documents and Settings\abigail > emctl config emkey - emkeyfile E:\app\abigail\p

    roduct\11.2.0\dbhome_1\sysman\config

    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0

    Copyright (c) 1996, 2010 Oracle Corporation.  All rights reserved.

    Enter the password for the repository:

    ********

    ****

    The key of Em is already configured. To override the current configuration, run "em".

    CTL emkey < options > config - force. "

    C:\Documents and Settings\abigail > emctl config emkey - emkeyfile E:\app\abigail\p

    roduct\11.2.0\dbhome_1\sysman\config-force - sysman_pwd *.

    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0

    Copyright (c) 1996, 2010 Oracle Corporation.  All rights reserved.

    The key of the MA could not be configured. Cannot access the file E:\app\abigail\product

    \11.2.0\dbhome_1\sysman\config.

    C:\Documents and Settings\abigail > emctl dbconsole sysman_pwd secure *.

    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0

    Copyright (c) 1996, 2010 Oracle Corporation.  All rights reserved.

    http://Abigail:5501 / console/em/aboutApplication

    DBCONSOLE already stopped...   Fact.

    Officer is arrested...   Fact.

    Dbconsole fixing...   Has begun.

    Please enter repository schema password:

    Dbconsole fixing...   Failed.

    EMKey is misconfigured.

    Sorry but I have to ignore your suggestion and don't worry how I spend my time

    AND OHMYGODD IT WORKSS! For later use, this is how I solved it based on my research, in fact based on a particular search:

    http://franjv.blogspot.com/2013/08/eMKey-problems-in-Oracle-RAC-11gr2.html

    Thank you the one who wrote this and... is it the same "Fran" who helped me last time? Coincidence?

    In any case, thanks

  • a key for the table does not exist in the table

    Hi guys,.

    I imported several tables of physical layer in the administration tool. So, I want to do new foreign key between tables join in the physical schema.
    Required fields for posting a link between these tables are set up. When I press the ok button, an error message is displayed:
    "a key corresponding to the table does not exist in the table blablabla. You want to create a? »

    In fact, what is this error? I don't have all the idea about it. The number of the type of the fields is the same, the names are also the same. I think that he should not have problems to make the new foreign key. But why is it happening?

    Thank you

    Hello

    It is the primary key of the first table. You might not have set this column as the primary key of this table at the level of the db.

    Thank you
    Imtiaz.

  • How to disable the AppStore offers updated app that does not exist on the ipod touch 5g ios 9 and Reset counter app

    Regularly I receive notifications of updated Brainiacs Sudoku which I had deleted Ipod Touch 5 g a long time ago.  I can't disable the app update counter until I have download the update.  So, how to disable the AppStore offers updated app that does not exist on the ipod touch 5g ios 9 and Reset counter of the application once and for all?

    Try to hide this purchase

    Hide and show purchases iTunes or iBooks on your Mac or PC - Apple Support

  • Save for precedent: the "Attachment" object does not exist in the previous version

    I'm trying to save a very simple VI from LabVIEW 2013 SP1 to LabVIEW 2009 but I get this strange error.  The VI contains only basic ex that are available in all versions of LabVIEW (shift logical AND Select,<=, u8). ="" when="" i="" try="" to="" save="" it="" for="" labview="" 2009,="" it="" gives="" me="" the="" following="">

    Missing object.  The "Attachment" object does not exist in the previous version.

    I thought first of all it had to do with being possessed by a lvclass, but even after that I removed the class (and unplugged from the lvclass) it always gives me this warning.

    When I try to open it with 2009, it will fail to load the schema-block (error 6).

    The next thing I tried was to copy the block diagram for a new VI and re - create the connector pane, but that doesn't change anything.

    Any ideas?

    Maybe "attachment" made reference to an attached comment (the arrow of a free label for an object on the diagram). I don't expect the presence of attached comments to cause a SFPed VI to not open, but it's the only thing I can think of. Try to remove any comment attached to your diagram and SFPing and see if that solved the problem.

Maybe you are looking for

  • Found hidden partitions?

    I bought a macbook 2010 used pro 15 '' out of my high school, when I got it I tried to format the hard drive (500 GB) and install El Capitan, but when I did I noticed that only 274 GB of it was available, there is a "recovery" partition, taking up ne

  • NI1433 trigger camerlink Cam

    Hello What to do | : the ni1433 should trigger a camera above the line of CC1. Are there examples in the web? I can set the camera to switch with the command CC1 source, but what VI is used?

  • Measurement error Freuqency

    Hello. I have a VI whose frequency records 4 channels for a NI9411 and generates a string of adjustment 0 - 5V. It works fine apart from when there is no siganl current frequency. When my rig is first turned on there is no current frequency signal an

  • Multifunction color HP LaserJet Pro 200: HP LaserJet Pro 200 color MFP M276nw on El Capitan: Scan does not

    Since my upgrade to El Capitan my USB connected HP LaserJet Pro 200 M276nw MFP color analysis no more. What I've tried so far: Installed the latest drivers > unsuccessfully Tried all the solutions suggested here: http://h30434.www3.hp.com/t5/Scanning

  • HP 350: How to remove hpsmplpass.exe?

    Please let me know the correct way to remove the program hpsmplpass.exe. Several times a day during up to one minute each time, the Task Manager shows hpsmplpass.exe using 100% of CPU. During these periods the lapop analyses almost at a standstill. T