ORA-22913 when you make the order of the ETG

My Oracle 11.1, I have a nested table, and I am trying to invoke the command:
CREATE TABLE TXV.IS_PODACI215_STAGE  NESTED TABLE DATA4 STORE AS IS_PODACI215_STAGE_1 AS SELECT * FROM TXV.IS_PODACI215 WHERE 1=2
but I get an error:
ORA-02320: failure in creating storage table for nested table column DATA4
ORA-22913: must specify table name for nested table column or attribute
It's table script:
CREATE TABLE TXV.IS_PODACI215
(
  ID_OBJEKTA_IDENTIFIKACIJA  NUMBER(10),
  ID_OBJEKTA                 NUMBER(20),
  DATUM                      TIMESTAMP(6),
  TZ                         NUMBER(3),
  DATA1                      NUMBER(3),
  DATA2                      NUMBER(10),
  DATA3                      NUMBER,
  DATA4                      TXV.T_NTCIP_FONT_TABLE,
  DATA5                      NUMBER(3)
)
NESTED TABLE DATA4 STORE AS IS_PODACI215_STORE_TABLE1
TABLESPACE TXV_DATA
PARTITION BY RANGE (DATUM)
(  
  PARTITION P_201012 VALUES LESS THAN (TIMESTAMP' 2011-01-01 00:00:00')
    LOGGING
    NOCOMPRESS 
    TABLESPACE TXV_DATA,    
  PARTITION P_201106 VALUES LESS THAN (TIMESTAMP' 2011-07-01 00:00:00')
    LOGGING
    NOCOMPRESS 
    TABLESPACE TXV_DATA,  
  PARTITION P_MAXVALUE VALUES LESS THAN (MAXVALUE)
    LOGGING
    NOCOMPRESS 
    TABLESPACE TXV_DATA
)
NOCOMPRESS 
NOCACHE
NOPARALLEL
MONITORING;

CREATE OR REPLACE TYPE TXV.t_ntcip_font_table as table of t_ntcip_font_fmt;

CREATE OR REPLACE TYPE TXV.t_ntcip_font_FMT as object
(   font_index number(3)
,   font_number number(3)
,   font_name  varchar2(255)
,   font_height number(3)
,   font_char_spacing number(3)
,   font_line_spacing number(3)
,   font_version number(10)
,   font_table_rows number(10)
,   font_chars  t_ntcip_char_table
);
what I am doing wrong?

TNX

you create a multi level nested table column and omit the nested type that is declared inide another table nested.

you create like that,

CREATE TABLE TXV.IS_PODACI215
(
   ID_OBJEKTA_IDENTIFIKACIJA   NUMBER (10),
   ID_OBJEKTA                  NUMBER (20),
   DATUM                       TIMESTAMP (6),
   TZ                          NUMBER (3),
   DATA1                       NUMBER (3),
   DATA2                       NUMBER (10),
   DATA3                       NUMBER,
   DATA4                       TXV.T_NTCIP_FONT_TABLE,
   DATA5                       NUMBER (3)
)
NESTED TABLE DATA4
   STORE AS IS_PODACI215_STORE_TABLE1 (NESTED TABLE font_chars
                                          STORE AS nested_table1)
TABLESPACE TXV_DATA
PARTITION BY RANGE (DATUM)
   (PARTITION P_201012
       VALUES LESS THAN (TIMESTAMP ' 2011-01-01 00:00:00')
       LOGGING
       NOCOMPRESS
       TABLESPACE TXV_DATA,
    PARTITION P_201106
       VALUES LESS THAN (TIMESTAMP ' 2011-07-01 00:00:00')
       LOGGING
       NOCOMPRESS
       TABLESPACE TXV_DATA,
    PARTITION P_MAXVALUE
       VALUES LESS THAN (MAXVALUE)
       LOGGING
       NOCOMPRESS
       TABLESPACE TXV_DATA)
NOCOMPRESS
NOCACHE
NOPARALLEL
MONITORING;

CREATE TABLE TXV.IS_PODACI215_STAGE
NESTED TABLE DATA4
   STORE AS IS_PODACI215_STAGE_1 (NESTED TABLE font_chars
                                     STORE AS nested_table2)
AS
   SELECT *
     FROM TXV.IS_PODACI215
    WHERE 1 = 2;

G.

Tags: Database

Similar Questions

  • ORA-01789 - when you use the operator of TABLE and SEM_MATCH

    Client version: 11.1.0.7 on Windows 7 (32 bit)
    Server version: 11.2.0.3 on Windows 7 (64-bit)

    I am model prototyping a simple RDF, and I'm getting a ' ORA-01789: block has an incorrect number of columns in query results "when you use the SEM_MATCH with the SCOREBOARD operator.

    I can run this:
    select id, a.triple.GET_TRIPLE() from drik.rdf_data a
    and the first line is:
    (<http://www.ihc.com/drik/term#2>, <http://www.w3.org/2000/01/rdf-schema#subClassOf>, <http://www.ihc.com/drik/term#1>)
    Now, I want to use the TABLE like this:
    select
      c
    from 
      table(sem_match('{ <http://www.ihc.com/drik/term#2> <http://www.w3.org/2000/01/rdf-schema#subClassOf> ?c . }', 
            sem_models('Prototype'),
            sem_rulebases('RDFS'),
            sem_aliases(sem_alias('rdfs','http://www.w3.org/2000/01/rdf-schema/')),
            null
            ))
    But this performance gives the ORA-07189. Even try SELECT * gives the same error.

    I expect to get a refund:
    <http://www.ihc.com/drik/term#1>
    How should I approach troubleshooting this?

    Thank you, Steve

    Thanks for posting the script. I was able to reproduce the error locally.

    The problem is the use of the sem_apis.create_rules_index () procedure, which has been deprecated:
    http://docs.Oracle.com/CD/E11882_01/AppDev.112/e25609/sdo_rdf_newfeat.htm#autoId26

    Please use sem_apis.create_entailment () instead, and the error should disappear.
    http://docs.Oracle.com/CD/E11882_01/AppDev.112/e25609/sem_apis_ref.htm#CHEHDGBD

    Thank you
    Matt

  • ORA-00900 when you use the command COPY with dynamic SQL

    Helllo,
    I created the following procedure:

    create or replace procedure copyTable (pSourceTableOwner IN varchar2
    pSourceTableOwnerPasword IN varchar2
    pTargetTableOwner IN varchar2
    pTableName IN varchar2
    pDatabaseLink IN varchar2)
    as

    vStatement varchar2 (250): = null;

    Start

    vStatement: = "copy of". pSourceTableOwner | '/' || pSourceTableOwnerPasword | '@' || pDatabaseLink |
    "Insert" | pTargetTableOwner | '.' || pTableName | ' using select * from '. pTableName;

    immediately run vStatement;

    end;
    /

    The generated command (variable vStatement) looks like this:
    "Insert a copy of O_GLCEN/o_glcen@SELLENTW o_jh. "X_PLZ_CD_MERGED_CTIS using select * from X_PLZ_CD_MERGED_CTIS".

    When you call this procedure as "exec copyTable ('O_GLCEN', 'o_glcen', 'o_jh', 'X_PLZ_CD_MERGED_CTIS', 'SELLENTW');" the following lifts:

    FEHLER in line 1:
    ORA-00900: invalid SQL statement
    ORA-06512: at "SYSTEMTECHNIK". COPYTABLE", line 20
    ORA-06512: at line 1

    But when you call the command COPY directly from SQL prompt the statement runs without error.
    Is in general not possible to use the dynamic COPY with SQL command? If it is possible does anyone has an idea what I am doing wrong?

    Any help will be appreciated...

    Rgds
    JH

    I would like to use something like

    vStatement: = ' start in f (select * from ' | pSourceTableOwner |) '.' || pTableName | '@' || pDatabaseLink | Insert loop ') in ' | pTargetTableOwner | '.' || pTableName | "f-values; end loop; end; »
    immediately run vStatement;

  • Error ORA-00979 when you run the SQL in Oracle 11.2.0.3

    Hi Oracle Experts,


    I am trying to execute a SQL statement which consist of 2-3 levels of inline queries. Part of this SQL statement is as below:
    SELECT
          "SAMPLE_RESULT"."PROPERTYID",
          "SAMPLE_RESULT"."QUALIFIER",
          ROUND(AVG(SAMPLE_RESULT.RESULT),2) avg_result,
          AVG(DECODE(SAMPLE.QUALITYSTATUS, 'P', 1,'F', 5)) qltystatus,
          TO_CHAR("SAMPLE"."SAMPLEDT",'dd-Mon-yyyy') sampledt,
          TO_CHAR("SAMPLE"."SAMPLEDT",'rrrr-mm-dd') sortdate
          STD.stdev,
          getCL.cl
        FROM
          (
            SELECT
              ROUND(stddev(INS.avg_result),2) stdev
            FROM
              (
                SELECT
                  "SAMPLE_RESULT"."PROPERTYID",
                  "SAMPLE_RESULT"."QUALIFIER",
                  ROUND(AVG(SAMPLE_RESULT.RESULT),2) avg_result,
                  AVG(DECODE(SAMPLE.QUALITYSTATUS, 'P', 1,'F', 5)) qltystatus,
                  TO_CHAR("SAMPLE"."SAMPLEDT",'dd-Mon-yyyy') sampledt
                FROM
                  "SAMPLE",
                  "SAMPLE_RESULT",
                  "ACTIVITY"
                WHERE
                  (
                    "SAMPLE"."SAMPLEID" = "SAMPLE_RESULT"."SAMPLEID"
                  )
                AND
                  (
                    "SAMPLE_RESULT"."TESTINSTANCE" = fn_max_instance (
                    sample.sampleid, sample_result.testid, sample_result.propertyid
                    )
                  )
                AND
                  (
                    "SAMPLE"."ACTIVITYID" = "ACTIVITY"."ACTIVITYID"
                  )
                AND
                  (
                    ACTIVITY.VARIANTID IN ('Sales Gas','Contaminants End')
                  )
                AND
                  (
                    ACTIVITY.LOCATIONID = 'S-5003C'
                  )
                AND
                  (
                    SAMPLE.EVENTID <> 'AD-HOC'
                  )
                AND
                  (
                    "SAMPLE"."SAMPLESTATUS" = 'L'
                  )
                AND
                  (
                    TO_DATE(TO_CHAR(SAMPLE.SAMPLEDT,'dd-mon-yyyy')) BETWEEN TO_DATE
                    (TO_CHAR(:StartDate,'dd-Mon-RRRR')) AND TO_DATE(TO_CHAR(
                    :StartDate,'dd-Mon-RRRR')) + 6
                  )
                AND
                  (
                    SAMPLE_RESULT.PROPERTYID = 'GCV'
                  )
                GROUP BY
                  SAMPLE_RESULT.PROPERTYID,
                  SAMPLE_RESULT.QUALIFIER,
                  TO_CHAR("SAMPLE"."SAMPLEDT",'dd-Mon-yyyy')
              )
              INS
          )
          STD,
          (
            SELECT
              ROUND(AVG(INS.avg_result),2) cl
            FROM
              (
               SELECT
                  "SAMPLE_RESULT"."PROPERTYID",
                  "SAMPLE_RESULT"."QUALIFIER",
                  ROUND(AVG(SAMPLE_RESULT.RESULT),2) avg_result,
                  AVG(DECODE(SAMPLE.QUALITYSTATUS, 'P', 1,'F', 5)) qltystatus,
                  TO_CHAR("SAMPLE"."SAMPLEDT",'dd-Mon-yyyy') sampledt
                FROM
                 "SAMPLE",
                  "SAMPLE_RESULT",
                  "ACTIVITY"
                WHERE
                  (
                    "SAMPLE"."SAMPLEID" = "SAMPLE_RESULT"."SAMPLEID"
                  )
                AND
                  (
                    "SAMPLE_RESULT"."TESTINSTANCE" = fn_max_instance (
                    sample.sampleid, sample_result.testid, sample_result.propertyid
                    )
                  )
                AND
                  (
                    "SAMPLE"."ACTIVITYID" = "ACTIVITY"."ACTIVITYID"
                  )
                AND
                  (
                    ACTIVITY.VARIANTID IN ('Sales Gas','Contaminants End')
                  )
                AND
                  (
                    ACTIVITY.LOCATIONID = 'S-5003C'
                  )
                AND
                  (
                    SAMPLE.EVENTID <> 'AD-HOC'
                  )
                AND
                  (
                    "SAMPLE"."SAMPLESTATUS" = 'L'
                  )
                AND
                  (
                    TO_DATE(TO_CHAR(SAMPLE.SAMPLEDT,'dd-mon-yyyy')) BETWEEN TO_DATE
                    (TO_CHAR(:StartDate,'dd-Mon-RRRR')) AND TO_DATE(TO_CHAR(
                    :StartDate,'dd-Mon-RRRR')) + 6
                  )
                AND
                  (
                    SAMPLE_RESULT.PROPERTYID = 'GCV'
                  )
                GROUP BY
                  SAMPLE_RESULT.PROPERTYID,
                  SAMPLE_RESULT.QUALIFIER,
                  TO_CHAR("SAMPLE"."SAMPLEDT",'dd-Mon-yyyy')
              )
              INS
    
          )
          getCL,
          "SAMPLE",
          "SAMPLE_RESULT",
          "ACTIVITY"
        WHERE
          (
            "SAMPLE"."SAMPLEID" = "SAMPLE_RESULT"."SAMPLEID"
          )
        AND
          (
            "SAMPLE_RESULT"."TESTINSTANCE" = fn_max_instance (sample.sampleid,
            sample_result.testid, sample_result.propertyid)
          )
        AND
          (
            "SAMPLE"."ACTIVITYID" = "ACTIVITY"."ACTIVITYID"
          )
        AND
          (
            ACTIVITY.VARIANTID IN ('Sales Gas','Contaminants End')
          )
        AND
          (
            ACTIVITY.LOCATIONID = 'S-5003C'
          )
        AND
          (
            SAMPLE_RESULT.PROPERTYID IN ('GCV','SG','T. Sulphur','Dew Point',
            'HC Dew Pts')
          )    
        AND
          (
           TO_DATE(TO_CHAR(SAMPLE.SAMPLEDT,'dd-mon-yyyy')) BETWEEN TO_DATE(TO_CHAR
            (:StartDate,'dd-Mon-RRRR')) AND TO_DATE(TO_CHAR(:StartDate,
            'dd-Mon-RRRR')) + 6
          )
        GROUP BY "SAMPLE_RESULT"."PROPERTYID", "SAMPLE_RESULT"."QUALIFIER", TO_CHAR("SAMPLE"."SAMPLEDT",'dd-Mon-yyyy'), TO_CHAR("SAMPLE"."SAMPLEDT",'rrrr-mm-dd'),
        
          STD.stdev,
          getCL.cl
      )
    When I run the level the lowest and second lowest level inline queries statements, which consists of a select field of data and functions, there is no error and capable of generating the result.

    But when I run the statement which refer to the alias of queries inline (STD, getCL), it prompted an error ORA-00979 not a group by expression. This happened only Oracle 11.2.0.3. If I run the statement in another version of Oracle (11 GR 1 material and below), I am able to generate the result.

    Please advice how can I fix this problem.

    Published by: xysOra on 29 April 2013 19:37

    It seems that this should be the "SAMPLE" TO_CHAR conversions "" SAMPLEDT ".

    You seem to be willing to cut the time part of SAMPLEDT. The best way to do so is TRUNC (SAMPLEDT).

    In each of the groups of clauses, replace TO_CHAR ('SAMPLE'. ("' SAMPLEDT ', 'dd-Mon-yyyy') with TRUNC ('SAMPLE'. (' "SAMPLEDT") and completely remove the TO_CHAR ('SAMPLE'. ("' SAMPLEDT ',"dd-mm-rrrr") in the last group of.

    Replace in selection lists, TO_CHAR ('SAMPLE'. ("' SAMPLEDT ', 'dd-Mon-yyyy') with TO_CHAR (TRUNC ('SAMPLE'. ((' ' SAMPLEDT '), 'dd-Mon-yyyy') and replace TO_CHAR ("SAMPLE". "SAMPLEDT", "dd-mm-rrrr") with TO_CHAR (TRUNC ("SAMPLE" ".")) " "" "SAMPLEDT"), "dd-mm-rrrr").

    These changes can take you the ORA-00979 not one group by expression.

    Also the date manipulation is wrong — you do implicit conversions to date using default formats, when what you seem to want is to truncate the time part. Instead of

     TO_DATE(TO_CHAR(SAMPLE.SAMPLEDT,'dd-mon-yyyy')) BETWEEN TO_DATE(TO_CHAR
            (:StartDate,'dd-Mon-RRRR')) AND TO_DATE(TO_CHAR(:StartDate,
            'dd-Mon-RRRR')) + 6
    

    use

     TRUNC(SAMPLE.SAMPLEDT) BETWEEN TRUNC(:StartDate) AND TRUNC(:StartDate) + 6
    

    I hope this helps.
    David

  • ORA-00942 when you run the application after import

    APEX 4.1.1

    Hello

    I transferred my request via import/export to our production database. I had no errors during installation, but when I run the application, I get the following error message.
    User not found
    ORA-00942: table or view does not exist
    
    Technical Info (only visible for developers)
    
        is_internal_error: true
        ora_sqlcode: -942
        ora_sqlerrm: ORA-00942: table or view does not exist
        component.type: APEX_APPLICATION_COMPUTATIONS
        component.id: 3102806535980644
        component.name: LANG
        error_backtrace:
    
        ORA-06512: at "SYS.DBMS_SYS_SQL", line 1325
        ORA-06512: at "SYS.WWV_DBMS_SQL", line 1287
        ORA-06512: at "SYS.WWV_DBMS_SQL", line 1358
        ORA-06512: at "SYS.WWV_DBMS_SQL", line 1375
        ORA-06512: at "APEX_040100.WWV_FLOW_DYNAMIC_EXEC", line 776
        ORA-06512: at "APEX_040100.WWV_FLOW", line 4155
    I don't know, where to look for the error. I do not have an application element with the name of LANG and there is a calculation application for LANG:
    SELECT  LANG_CODE
    FROM    GPS_WEB_USERS
    WHERE user_name = upper('&APP_USER.')
    All advice where to look?

    Published by: Anne-Marie Rosa on August 16, 2012 05:37

    Published by: Anne-Marie Rosa 16 August 2012 06:32

    Hello
    >
    I transferred my request via import/export to our production database. I had no errors during installation, but when I run the application, I get the following error message.

    User not found
    ORA-00942: table or view does not exist
    
    Technical Info (only visible for developers)
    
    is_internal_error: true
    ora_sqlcode: -942
    ora_sqlerrm: ORA-00942: table or view does not exist
    component.type: APEX_APPLICATION_COMPUTATIONS
    component.id: 3102806535980644
    component.name: LANG
    error_backtrace:
    
    ORA-06512: at "SYS.DBMS_SYS_SQL", line 1325
    ORA-06512: at "SYS.WWV_DBMS_SQL", line 1287
    ORA-06512: at "SYS.WWV_DBMS_SQL", line 1358
    ORA-06512: at "SYS.WWV_DBMS_SQL", line 1375
    ORA-06512: at "APEX_040100.WWV_FLOW_DYNAMIC_EXEC", line 776
    ORA-06512: at "APEX_040100.WWV_FLOW", line 4155
    

    I don't know, where to look for the error. I do not have an application element with the name of LANG and there is a calculation application for LANG:

    SELECT LANG_CODE
    FROM GPS_WEB_USERS
    WHERE user_name = upper('&APP_USER.')
    

    The source of the error is ora_sqlerrm: ORA-00942: table or view does not exist

    Search for the name of the calculation Application in APEX_APPLICATION_COMPUTATIONS APEX view using component.id: 3102806535980644 to find his name.

    Once you have the name, you can change this App mockup and understand what Table/view is not available.

    See you soon,.

    PS: {code} is the tag, which is tiny.

    Published by: Dominique 16 August 2012 18:01

  • ORA-01017 when you add the name of the service

    Hello

    In short, I can connect locally with "sqlplus USER/pass. However, I can not connect with "sqlplus USER/pass@zabbix" or I can't connect externally using thin client:


    PS C:\ > sqlplus USER/pass@zabbix
    SQL * more: version 11.1.0.7.0 - Production on Tue Mar 12 10:35:21 2013
    Copyright (c) 1982, 2008, Oracle. All rights reserved.
    ERROR:
    ORA-01017: name of user and password invalid. connection refused


    How can I solve this? I can connect to the outside as SYS as SYSDBA. Will there be a privilege to allow users to connect to a particular database?

    -----

    I create the user like this:

    CREATE A USER
    IDENTIFIED BY PASS
    DEFAULT TABLESPACE USERS
    TEMPORARY TEMP TABLESPACE
    DEFAULT PROFILE
    RELEASE OF ACCOUNT;
    GRANT ALTER USER SESSION;
    GRANT CREATE SESSION FOR THE USER;
    GRANT CONNECT TO THE USER;
    ALTER USER DEFAULT ROLE USER;

    -----
    tnsnames.ora:

    ZABBIX =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = a.dom.b.com) (PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = zabbix)
    )
    )


    -----

    PS C:\ > lsnrctl status

    LSNRCTL for 64-bit Windows: Version 11.1.0.7.0 - Production on March 12, 2013 10:18:34

    Copyright (c) 1991, 2008, Oracle. All rights reserved.

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP (PORT = 1)(HOST=a.dom.b.com)
    STATUS of the LISTENER
    ------------------------
    Alias LISTENER
    TNSLSNR for Windows 64-bit version: Version 11.1.0.7.0 - Production
    Start date March 1, 2013 16:15:25
    Uptime 10 days 17 HR. 3 min. 24 sec.
    Draw level off
    Security ON: OS Local Authentication
    SNMP OFF
    D:\...\listener.ora Listener parameter file
    D:\...\Log.XML log listener
    Summary of endpoints listening...
    (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=a.dom.b.com) (PORT = 1521)))
    Summary of services...
    Service 'zabbix' has 1 instance (s).
    Instance 'zabbix' READY State, has 1 operation for this service...

    -----


    PS C:\ > tnsping zabbix

    AMT Ping Utility for 64-bit Windows: Version 11.1.0.7.0 - Production on March 12, 2013 10:18:15

    Copyright (c) 1997, 2008, Oracle. All rights reserved.

    Use settings files:
    d:\...\sqlnet.ora


    TNSNAMES adapter used to resolve the alias
    Try to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = a.dom.b.com) (PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = zabbix)))
    OK (0 msec)

    Edited by: 970022 March 12, 2013 08:35

    Edited by: 970022 March 12, 2013 08:51

    Edited by: 970022 March 12, 2013 08:54

    970022 wrote:
    I agree with your chances. The answer may be as simple as associate an account with a database. I posted the way in which the user was created. The user has been created through SQLPLUS SYS as SYSDBA user. I can't find any documentation that describes how to link a user to a database.

    sqlplus USER/pass@zabbix

    you are "assuming" happens above to a specific database.
    What evidence do you have that you REALLY get to the DB where you know what USER/pass are?

  • Where to find information OR when you make the customizations

    Hello friends,

    I am writing a small default customization code the type of conversion according to the contract being created in the ORGANIZATIONAL unit. For contracts created in Italy OR, I failed the conversion type to "rate Spot of Israel' instead of 'Corporate rate' which is used for all the other OUs.

    However, the field: OKS_HEADER. AUTHORING_ORG_ID returns null when I start to create a new contract. The default value is 'Corporate rate' rather than 'Spot rate of Italy.

    Someone can tell me where the org_id or the set_of_books_id are stored and how do I get it back? Here's the sql code, I write:

    = select decode(:OKS_HEADER.) AUTHORING_ORG_ID, 125, 'Italian Spot', 'Corporate') of double

    Thank you.

    Hi SK,

    I think you are badly understand something as it is perfectly simple to derive the org_id UO current (or indeed appoint but id is easier) within a personalization. Sandeep and I have answers above are in fact the same: ${ps.org_id} returns the current value of the option of profile MO: operational unit.

    There are two options of profile, I think you're confused: MO: MO and operational unit: default working unit. The number one key and one to which we refer, is the first of them which, at the level of responsibility, determines the ORGANIZATIONAL unit in which your users are working at any given time. I am aware that the situation is more complex in R12 but I'm still in 11.5.10 - world you didn't mention what version you have.

    I used the syntax I suggested above on several different projects to apply customizations to one or several selected UO among those available, and it works very well.

    Kind regards
    Jon

  • APEX 4.2.2 - ORA-6502 when you connect the application with anything other than Firefox!

    If I try to connect to my application by something else that Firefox I get the following message appears on the screen:

    ErrorError processing request.
    ORA-06502: PL/SQL: digital error or value
    Ok

    If I try to access the APEX generator via one browser other than Firefox, I don't receive any returned HTML.

    Last night, I improved from 4.1 to 4.2.2 and ran the patch which dealt with lack of developer toolbars...

    Of course, I never use Firefox, but my users use IE...

    Any ideas?

    Post edited by: AndyH Clarified that it is a 4.2.2 question.

    Hello

    I don't know if this bug 16760897 relative

    Oracle Application Express 4.2.2 - known issues

    Kind regards

    Jari

  • problem with checkbox custom when you use the loadVariablesNum

    I have several cutomized box that he can select or deselect and I have a button to determine which of the boxes is selected and through this button, I spent the variable to loadVariablesNum corresponding to which of the boxes is selected.

    ==================================================

    the code in the button to determine which of the boxes is selected:

    ==================================================

    If (chk1.mark1._visible = true) {}
    trace ("31");
    loadVariablesNum ("http://url?uid=" + _root.uid + "& years = 31", 2);
    }
    If (chk2.mark2._visible = true) {}
    trace ("32");
    loadVariablesNum ("http://url?uid=" + _root.uid + "& years = 32", 2);
    }
    If (chk3.mark3._visible = true) {}
    trace ("33");
    loadVariablesNum ("http://url?uid=" + _root.uid + "& years = 33", 2);
    }
    If (chk4.mark4._visible = true) {}
    trace ("34");
    loadVariablesNum ("http://url?uid=" + _root.uid + "& years = 34", 2);
    }
    If (chk5.mark5._visible = true) {}
    trace ("35");
    loadVariablesNum ("http://url?uid=" + _root.uid + "& years = 35", 2);
    }

    I'm assuming that you have a problem with it not working.  A problem with it is that when you make the comparison conditionals, you use == to see if things are equal, not =

    In addition, not a mistake, but to less treatment works... you must use "elsewhere" so that once the program finds a match it does not all the remaining conditions, which would make you currently.

    If (true chk1.mark1._visible == ) {}
    trace ("31");
    loadVariablesNum ("http://url?uid="+ _root.uid +"& years = 31", 2);
    } Else if (chk2.mark2._visible == true) {}
    trace ("32");
    loadVariablesNum ("http://url?uid="+ _root.uid +"& years = 32", 2);
    } ElseIf...

    In addition, the solution of the error can be simplified in your case because you are using Boolean values (true/false).  When a conditional tests something that he's just looking to see if the value it evaluates as true or false, so your conditional statements have not even the 'is true ".

    If {(chk1.mark1._visible)
    trace ("31");
    loadVariablesNum ("http://url?uid="+ _root.uid +"& years = 31", 2);
    } Else if (chk2.mark2._visible) {}
    trace ("32");
    loadVariablesNum ("http://url?uid="+ _root.uid +"& years = 32", 2);
    } ElseIf...

    One last thing... it seems that you have created unnecessarily box different symbols where you might have used the same as that for all of them.  I say this because to see how you have different brand # for each of them.   Just assign the same name to a different instance...

    If {(chk1.mark._visible)
    trace ("31");
    loadVariablesNum ("http://url?uid="+ _root.uid +"& years = 31", 2);
    } Else if (chk2.mark._visible) {}
    trace ("32");

    This example is used to emphasize the difference between symbols and instances.  The same symbol (such as a radio button or your craft boxes) can be reused multiple times by using the names of different instances for each instance.  You can then assign unique values to the properties of each instance

  • How can I fix the audio distortion when you make a video call using Windows Live Messenger

    When you make a video call using Windows Live Messenger I get audio distortion. How can I solve this problem

    Hello WayneMarkham,

    The best place to ask your question of Windows Live is inside Windows Live help forums. Experts specialize in all things, Windows Live, and would be delighted to help you with your questions. Please choose a product below to be redirected to the appropriate community:

    Windows Live Mail

    Windows Live Hotmail

    Windows Live Messenger

    Looking for a different product to Windows Live? Visit the home page Windows Live Help for the complete list of Windows Live forums to www.windowslivehelp.com.

  • The files and settings to remove the old computer when you make a file and the transfer settings Wizard?

    The files and settings to remove the old computer when you make a file and the transfer settings Wizard?

    Hi KaraDay,

    When you use the files and Settings Transfer Wizard in Windows XP, it only transfers a copy of the files and settings on the computer.

    How to use the "files and Settings Transfer Wizard" in Windows XP

    http://support.Microsoft.com/kb/293118

  • How can I make windows play a sound when you press the SHIFT key

    My keyboard doesn't have a light to indicate when it is capitalized. He used to play a sound, but it is more the fact after that I said not to do. However, when entering passwords that are case sensitive, it gives the wrong password. Can someone tell me how to re - turn on the sound.
    Its a Logitech MK320 wireless

    Look in Control Panel > accessibility, and then click "make the keyboard easier to use." Check the box "turn ToggleKeys. This will produce a note when you press the lock keys. Or just check the other box beneath it. In this way, you can turn the tone on or off without having to return to these settings.

    SC Tom

  • How do I make the "REVERB" effect when you export the multitrack mixer?

    How do I make the "REVERB" effect when you export the multitrack mixer?

    The pre-rendered in multitrack view tool is the tilde to bit at the bottom of the effects rack lightning bolt.  Select the range that you have pre-made and click on the button that will turn blue when activated.

    Alternatively, you can go to the sight of waveform on the track, you need to pre render, apply the effect, and use the Save command as (with a new name) to save the new version and keep the original.  Less elegant than pre rendered but sometimes useful.

  • Make a custom page when you access the URL of the root of a Web application

    A BC blog post says it's now possible to "make a custom page when you access the URL of the root of a Web App site. For example, if you have a "blog" Web App, items can be made available to/blog/my-blog-post, and you will be able to customize the page/blog"

    Is this possible? It doesn't for me due to unique URL problem yet.

    For example the web page is / banksy - Guide of Banksy

    But web app components must be on/banksy/web-app-item but need to change to/banksy-editions / Banksy choose your weapon (green) | Gallery hang up Banksy Guide

    I don't see any documentation, support BC do not know and ask me the Forum to discuss. Someone at - he found a workaround?

    Thank you

    Paul

    You have a page with the same name as you want for the web application folder.

    1 remove this page from banksy (Dungeon of backup of your content)

    2. change your url web app for /banksy you need

    3. create a folder called /banksy (it will allow you to make a folder)

    4. create an index.html in the folder of Banksy page - put your content to the page that you deleted here

    You will then have an index for the file page and the web application will work...

    /Banksy - index page

    /Bansky/ - index page

    /Banksy/index.html - index page

    / web banksy/something - point app

  • When you look at the performance of a virtual machine, when you make a graphic of 3 months it appears correctly for the first two, but the last month is compressed.

    When you look at the performance of a virtual machine, when you make a graphic of 3 months it appears correctly for the first two, but the last month is compressed.

    Hello

    When you say that the last two months are compressed. I do not have what exactly you mean by that. Is there a chance you can attach a screenshot of the same thing? Also let me know if there are any made VC-database activity recently?

Maybe you are looking for

  • Without a password how can I access the computer and make my own?

    I inherited a Mac Mini (2012, but do not have the password to the owner (departed).) How can I access and make my own?

  • area of URL will not work

    I had to re - download firefox and he won't do anything once I type in the url box. Can you please email me on how to solve this problem. Before, I turn to another browser, as I am not as happy as I used to be with your product.

  • Printing for Officejet 6700 problems

    Recently I struggled to print the word document.  I worked about 3-4 days ago. I have windows XP with MS Word 2010.  Printing is HP Officejet 6700 Premium.  I always use it offline.  It is connected to the computer via the LPT connector. The test pag

  • pop ups

    I can't get my computer to read my card SD and I have a lot of pop ups... What is the best way to get rid of them? / ?

  • How to turn off the ringer on HP Officejet J4550?

    I recently bought a HP Officejet J4550 all-in-one. I send faxes from time to time, but almost never receive them. I jump out of my chair, whenever the phone rings when I'm sitting at my desk because of the tone coming out of the HP. Is it possible to