Eve and staging table

All,

We have a database of prod that has the physique of the standby database. Force logging is enabled on the primary.

We have an intermediate table that is truncated and filled every day. Ideally, I would like to allow nologging on this staging table. This table can easily be recreated and is not really necessary to be replicated to standby mode. What is the way to get around this? Any ideas?

Thank you

Ritesh

So you could postpone the expedition to wait and see if it is faster before doing anything.

Another thought is the possible intermediate table a global temporary table?

Ask that Tom has this recent information on nologging

https://asktom.Oracle.com/pls/Apex/f?p=100:11:no:RP:P11_QUESTION_ID:5280714813869

Best regards

mseberg

Tags: Database

Similar Questions

  • Question to load data using sql loader in staging table, and then in the main tables!

    Hello

    I'm trying to load data into our main database table using SQL LOADER. data will be provided in separate pipes csv files.

    I have develop a shell script to load the data and it works fine except one thing.

    Here are the details of a data to re-create the problem.

    Staging of the structure of the table in which data will be filled using sql loader

    create table stg_cmts_data (cmts_token varchar2 (30), CMTS_IP varchar2 (20));

    create table stg_link_data (dhcp_token varchar2 (30), cmts_to_add varchar2 (200));

    create table stg_dhcp_data (dhcp_token varchar2 (30), DHCP_IP varchar2 (20));

    DATA in the csv file-

    for stg_cmts_data-

    cmts_map_03092015_1.csv

    WNLB-CMTS-01-1. 10.15.0.1

    WNLB-CMTS-02-2 | 10.15.16.1

    WNLB-CMTS-03-3. 10.15.48.1

    WNLB-CMTS-04-4. 10.15.80.1

    WNLB-CMTS-05-5. 10.15.96.1

    for stg_dhcp_data-

    dhcp_map_03092015_1.csv

    DHCP-1-1-1. 10.25.23.10, 25.26.14.01

    DHCP-1-1-2. 56.25.111.25, 100.25.2.01

    DHCP-1-1-3. 25.255.3.01, 89.20.147.258

    DHCP-1-1-4. 10.25.26.36, 200.32.58.69

    DHCP-1-1-5 | 80.25.47.369, 60.258.14.10

    for stg_link_data

    cmts_dhcp_link_map_0309151623_1.csv

    DHCP-1-1-1. WNLB-CMTS-01-1,WNLB-CMTS-02-2

    DHCP-1-1-2. WNLB-CMTS-03-3,WNLB-CMTS-04-4,WNLB-CMTS-05-5

    DHCP-1-1-3. WNLB-CMTS-01-1

    DHCP-1-1-4. WNLB-CMTS-05-8,WNLB-CMTS-05-6,WNLB-CMTS-05-0,WNLB-CMTS-03-3

    DHCP-1-1-5 | WNLB-CMTS-02-2,WNLB-CMTS-04-4,WNLB-CMTS-05-7

    WNLB-DHCP-1-13 | WNLB-CMTS-02-2

    Now, after loading these data in the staging of table I have to fill the main database table

    create table subntwk (subntwk_nm varchar2 (20), subntwk_ip varchar2 (30));

    create table link (link_nm varchar2 (50));

    SQL scripts that I created to load data is like.

    coil load_cmts.log

    Set serveroutput on

    DECLARE

    CURSOR c_stg_cmts IS SELECT *.

    OF stg_cmts_data;

    TYPE t_stg_cmts IS TABLE OF stg_cmts_data % ROWTYPE INDEX BY pls_integer;

    l_stg_cmts t_stg_cmts;

    l_cmts_cnt NUMBER;

    l_cnt NUMBER;

    NUMBER of l_cnt_1;

    BEGIN

    OPEN c_stg_cmts.

    Get the c_stg_cmts COLLECT in BULK IN l_stg_cmts;

    BECAUSE me IN l_stg_cmts. FIRST... l_stg_cmts. LAST

    LOOP

    SELECT COUNT (1)

    IN l_cmts_cnt

    OF subntwk

    WHERE subntwk_nm = l_stg_cmts (i) .cmts_token;

    IF l_cmts_cnt < 1 THEN

    INSERT

    IN SUBNTWK

    (

    subntwk_nm

    )

    VALUES

    (

    l_stg_cmts (i) .cmts_token

    );

    DBMS_OUTPUT. Put_line ("token has been added: ' |") l_stg_cmts (i) .cmts_token);

    ON THE OTHER

    DBMS_OUTPUT. Put_line ("token is already present'");

    END IF;

    WHEN l_stg_cmts EXIT. COUNT = 0;

    END LOOP;

    commit;

    EXCEPTION

    WHILE OTHERS THEN

    Dbms_output.put_line ('ERROR' |) SQLERRM);

    END;

    /

    output

    for dhcp


    coil load_dhcp.log

    Set serveroutput on

    DECLARE

    CURSOR c_stg_dhcp IS SELECT *.

    OF stg_dhcp_data;

    TYPE t_stg_dhcp IS TABLE OF stg_dhcp_data % ROWTYPE INDEX BY pls_integer;

    l_stg_dhcp t_stg_dhcp;

    l_dhcp_cnt NUMBER;

    l_cnt NUMBER;

    NUMBER of l_cnt_1;

    BEGIN

    OPEN c_stg_dhcp.

    Get the c_stg_dhcp COLLECT in BULK IN l_stg_dhcp;

    BECAUSE me IN l_stg_dhcp. FIRST... l_stg_dhcp. LAST

    LOOP

    SELECT COUNT (1)

    IN l_dhcp_cnt

    OF subntwk

    WHERE subntwk_nm = l_stg_dhcp (i) .dhcp_token;

    IF l_dhcp_cnt < 1 THEN

    INSERT

    IN SUBNTWK

    (

    subntwk_nm

    )

    VALUES

    (

    l_stg_dhcp (i) .dhcp_token

    );

    DBMS_OUTPUT. Put_line ("token has been added: ' |") l_stg_dhcp (i) .dhcp_token);

    ON THE OTHER

    DBMS_OUTPUT. Put_line ("token is already present'");

    END IF;

    WHEN l_stg_dhcp EXIT. COUNT = 0;

    END LOOP;

    commit;

    EXCEPTION

    WHILE OTHERS THEN

    Dbms_output.put_line ('ERROR' |) SQLERRM);

    END;

    /

    output

    for link -.

    coil load_link.log

    Set serveroutput on

    DECLARE

    l_cmts_1 VARCHAR2 (4000 CHAR);

    l_cmts_add VARCHAR2 (200 CHAR);

    l_dhcp_cnt NUMBER;

    l_cmts_cnt NUMBER;

    l_link_cnt NUMBER;

    l_add_link_nm VARCHAR2 (200 CHAR);

    BEGIN

    FOR (IN) r

    SELECT dhcp_token, cmts_to_add | ',' cmts_add

    OF stg_link_data

    )

    LOOP

    l_cmts_1: = r.cmts_add;

    l_cmts_add: = TRIM (SUBSTR (l_cmts_1, 1, INSTR (l_cmts_1, ',') - 1));

    SELECT COUNT (1)

    IN l_dhcp_cnt

    OF subntwk

    WHERE subntwk_nm = r.dhcp_token;

    IF l_dhcp_cnt = 0 THEN

    DBMS_OUTPUT. Put_line ("device not found: ' |") r.dhcp_token);

    ON THE OTHER

    While l_cmts_add IS NOT NULL

    LOOP

    l_add_link_nm: = r.dhcp_token |' _TO_' | l_cmts_add;

    SELECT COUNT (1)

    IN l_cmts_cnt

    OF subntwk

    WHERE subntwk_nm = TRIM (l_cmts_add);

    SELECT COUNT (1)

    IN l_link_cnt

    LINK

    WHERE link_nm = l_add_link_nm;

    IF l_cmts_cnt > 0 AND l_link_cnt = 0 THEN

    INSERT INTO link (link_nm)

    VALUES (l_add_link_nm);

    DBMS_OUTPUT. Put_line (l_add_link_nm |) » '||' Has been added. ") ;

    ELSIF l_link_cnt > 0 THEN

    DBMS_OUTPUT. Put_line (' link is already present: ' | l_add_link_nm);

    ELSIF l_cmts_cnt = 0 then

    DBMS_OUTPUT. Put_line (' no. CMTS FOUND for device to create the link: ' | l_cmts_add);

    END IF;

    l_cmts_1: = TRIM (SUBSTR (l_cmts_1, INSTR (l_cmts_1, ',') + 1));

    l_cmts_add: = TRIM (SUBSTR (l_cmts_1, 1, INSTR (l_cmts_1, ',') - 1));

    END LOOP;

    END IF;

    END LOOP;

    COMMIT;

    EXCEPTION

    WHILE OTHERS THEN

    Dbms_output.put_line ('ERROR' |) SQLERRM);

    END;

    /

    output

    control files -

    DOWNLOAD THE DATA

    INFILE 'cmts_data.csv '.

    ADD

    IN THE STG_CMTS_DATA TABLE

    When (cmts_token! = ") AND (cmts_token! = 'NULL') AND (cmts_token! = 'null')

    and (cmts_ip! = ") AND (cmts_ip! = 'NULL') AND (cmts_ip! = 'null')

    FIELDS TERMINATED BY ' |' SURROUNDED OF POSSIBLY "" "

    TRAILING NULLCOLS

    ('RTRIM (LTRIM (:cmts_token))' cmts_token,

    cmts_ip ' RTRIM (LTRIM(:cmts_ip)) ")". "

    for dhcp.


    DOWNLOAD THE DATA

    INFILE 'dhcp_data.csv '.

    ADD

    IN THE STG_DHCP_DATA TABLE

    When (dhcp_token! = ") AND (dhcp_token! = 'NULL') AND (dhcp_token! = 'null')

    and (dhcp_ip! = ") AND (dhcp_ip! = 'NULL') AND (dhcp_ip! = 'null')

    FIELDS TERMINATED BY ' |' SURROUNDED OF POSSIBLY "" "

    TRAILING NULLCOLS

    ('RTRIM (LTRIM (:dhcp_token))' dhcp_token,

    dhcp_ip ' RTRIM (LTRIM(:dhcp_ip)) ")". "

    for link -.

    DOWNLOAD THE DATA

    INFILE 'link_data.csv '.

    ADD

    IN THE STG_LINK_DATA TABLE

    When (dhcp_token! = ") AND (dhcp_token! = 'NULL') AND (dhcp_token! = 'null')

    and (cmts_to_add! = ") AND (cmts_to_add! = 'NULL') AND (cmts_to_add! = 'null')

    FIELDS TERMINATED BY ' |' SURROUNDED OF POSSIBLY "" "

    TRAILING NULLCOLS

    ('RTRIM (LTRIM (:dhcp_token))' dhcp_token,

    cmts_to_add TANK (4000) RTRIM (LTRIM(:cmts_to_add)) ")" ""

    SHELL SCRIPT-

    If [!-d / log]

    then

    Mkdir log

    FI

    If [!-d / finished]

    then

    mkdir makes

    FI

    If [!-d / bad]

    then

    bad mkdir

    FI

    nohup time sqlldr username/password@SID CONTROL = load_cmts_data.ctl LOG = log/ldr_cmts_data.log = log/ldr_cmts_data.bad DISCARD log/ldr_cmts_data.reject ERRORS = BAD = 100000 LIVE = TRUE PARALLEL = TRUE &

    nohup time username/password@SID @load_cmts.sql

    nohup time sqlldr username/password@SID CONTROL = load_dhcp_data.ctl LOG = log/ldr_dhcp_data.log = log/ldr_dhcp_data.bad DISCARD log/ldr_dhcp_data.reject ERRORS = BAD = 100000 LIVE = TRUE PARALLEL = TRUE &

    time nohup sqlplus username/password@SID @load_dhcp.sql

    nohup time sqlldr username/password@SID CONTROL = load_link_data.ctl LOG = log/ldr_link_data.log = log/ldr_link_data.bad DISCARD log/ldr_link_data.reject ERRORS = BAD = 100000 LIVE = TRUE PARALLEL = TRUE &

    time nohup sqlplus username/password@SID @load_link.sql

    MV *.log. / log

    If the problem I encounter is here for loading data in the link table that I check if DHCP is present in the subntwk table, then continue to another mistake of the newspaper. If CMTS then left create link to another error in the newspaper.

    Now that we can here multiple CMTS are associated with unique DHCP.

    So here in the table links to create the link, but for the last iteration of the loop, where I get separated by commas separate CMTS table stg_link_data it gives me log as not found CMTS.

    for example

    DHCP-1-1-1. WNLB-CMTS-01-1,WNLB-CMTS-02-2

    Here, I guess to link the dhcp-1-1-1 with balancing-CMTS-01-1 and wnlb-CMTS-02-2

    Theses all the data present in the subntwk table, but still it gives me journal wnlb-CMTS-02-2 could not be FOUND, but we have already loaded into the subntwk table.

    same thing is happening with all the CMTS table stg_link_data who are in the last (I think here you got what I'm trying to explain).

    But when I run the SQL scripts in the SQL Developer separately then it inserts all valid links in the table of links.

    Here, she should create 9 lines in the table of links, whereas now he creates only 5 rows.

    I use COMMIT in my script also but it only does not help me.

    Run these scripts in your machine let me know if you also get the same behavior I get.

    and please give me a solution I tried many thing from yesterday, but it's always the same.

    It is the table of link log

    link is already present: dhcp-1-1-1_TO_wnlb-cmts-01-1

    NOT FOUND CMTS for device to create the link: wnlb-CMTS-02-2

    link is already present: dhcp-1-1-2_TO_wnlb-cmts-03-3
    link is already present: dhcp-1-1-2_TO_wnlb-cmts-04-4

    NOT FOUND CMTS for device to create the link: wnlb-CMTS-05-5

    NOT FOUND CMTS for device to create the link: wnlb-CMTS-01-1

    NOT FOUND CMTS for device to create the link: wnlb-CMTS-05-8
    NOT FOUND CMTS for device to create the link: wnlb-CMTS-05-6
    NOT FOUND CMTS for device to create the link: wnlb-CMTS-05-0

    NOT FOUND CMTS for device to create the link: wnlb-CMTS-03-3

    link is already present: dhcp-1-1-5_TO_wnlb-cmts-02-2
    link is already present: dhcp-1-1-5_TO_wnlb-cmts-04-4

    NOT FOUND CMTS for device to create the link: wnlb-CMTS-05-7

    Device not found: wnlb-dhcp-1-13

    IF NEED MORE INFORMATION PLEASE LET ME KNOW

    Thank you

    I felt later in the night that during the loading in the staging table using UNIX machine he created the new line for each line. That is why the last CMTS is not found, for this I use the UNIX 2 BACK conversion and it starts to work perfectly.

    It was the dos2unix error!

    Thank you all for your interest and I may learn new things, as I have almost 10 months of experience in (PLSQL, SQL)

  • How to jump a line to insert in the staging table

    Hello world

    I'm actually transform data from a source table in the staging table and staged, and then at the final table. I generated a primary key using the sequence. As I put the insert method of the staging table as truncate/insert. So whenever the mapping is loaded, intermediate table is truncated and new data are inserted but as I am with sequence of intermediate table, it will give the new numbering of old data from the source table and it will be duplicated data in the target table. So for this reason I use key look up on top of some attributes of entry and that the use of expression that I try to avoid duplication. At each exit of the attributes in the expression, I'm trying the case statement

    "BOLD" CASE WHEN INGRP1. ROW_ID IS NULL
    THEN
    INGRP1.ID
    END * bold *.

    Because of this condition, I get the error message

    "BOLD"
    Warning
    ORA-01400: cannot insert NULL into ('SCOTT'. "" "" STG_TARGET_TABLE '. "" ROW_ID")
    "BOLD"

    But I'm stuck when the row_id value is zero, that that condition or statement should I write to jump the insertion of data. I want to insert data only when ROW_ID IS NULL.




    Kindly help me.

    Thank you

    Concerning
    Suhail Dayer

    You do not need identical tables to use LESS, only the 'select list' must match. Assuming you have the key of the enterprise (one or more columns that uniquely identifies a row of your data source) in the source and the final table, you can do the following:

    -Use a Set operation where the result is the key to the business of staging table LESS the key to the business of the final table
    -The output of the set operation is then joined to the staging table to get the rest of the attributes for these lines
    -The output of the join is inserted into the final table

    This will ensure that the lines with the new keys to the company are responsible.

    Hope this helps,
    Roald

  • How to compare the length of the data to a staging table with the definition of the base table

    Hello
    I have two tables: staging of the table and the base table.
    I get flatfiles data in the staging of the table, depending on the structure of the requirement of staging of the table and the base table (length of each column in the staging table is 25% more data dump without errors) are different for ex: If we have the city long varchar 40 column in table staging there 25 in the base table. Once data are discharged into the intermediate table that I want to compare the actual length of the data for each column in the staging table with the database table definition (data_length for each column of all_tab_columns) and if no column is different length that I need to update the corresponding line in the intermediate table which also has an indicator called err_length.

    so for that I use the cursor c1 is select length (a.id), length (b.SID) of staging_table;
    c2 (name varchar2) cursor is select data_length all_tab_columns where table_name = 'BASE_TABLE' and column_name = name;
    But we get atonce data in the first query while the second slider, I need to get for each column and then compare with the first?
    Can someone tell me how to get the desired results?

    Thank you
    Manoi.

    Hey, Marco.

    Of course, you can set src.err_length in the USING clause (where you can reference all_tab_columns) and use this value in the SET clause.
    It is:

    MERGE INTO  staging_table   dst
    USING  (
           WITH     got_lengths     AS
                     (
              SELECT  MAX (CASE WHEN column_name = 'ENAME' THEN data_length END)     AS ename_len
              ,     MAX (CASE WHEN column_name = 'JOB'   THEN data_length END)     AS job_len
              FROM     all_tab_columns
              WHERE     owner          = 'SCOTT'
              AND     table_name     = 'EMP'
              )
         SELECT     s.ename
         ,     s.job
         ,     CASE WHEN LENGTH (s.ename) > l.ename_len THEN 'ENAME ' END     ||
              CASE WHEN LENGTH (s.job)   > l.job_len   THEN 'JOB '   END     AS err_length
         FROM     staging_table     s
         JOIN     got_lengths     l     ON     LENGTH (s.ename)     > l.ename_len
                             OR     LENGTH (s.job)          > l.job_len
         )     src
    ON     (src.ename     = dst.ename)
    WHEN MATCHED THEN UPDATE
         SET     dst.err_length     = src.err_length
    ;
    

    As you can see, you have to hardcode the names of the columns common to several places. I swam () to simplify that, but I found an interesting (at least for me) alternative grouping function involving the STRAGG user_defined.
    As you can see, only the subquery USING is changed.

    MERGE INTO  staging_table   dst
    USING  (
           SELECT       s.ename
           ,       s.job
           ,       STRAGG (l.column_name)     AS err_length
           FROM       staging_table          s
           JOIN       all_tab_columns     l
          ON       l.data_length  < LENGTH ( CASE  l.column_name
                                              WHEN  'ENAME'
                                    THEN      ename
                                    WHEN  'JOB'
                                    THEN      job
                                       END
                               )
           WHERE     l.owner      = 'SCOTT'
           AND      l.table_name     = 'EMP'
           AND      l.data_type     = 'VARCHAR2'
           GROUP BY      s.ename
           ,           s.job
           )     src
    ON     (src.ename     = dst.ename)
    WHEN MATCHED THEN UPDATE
         SET     dst.err_length     = src.err_length
    ;
    

    Instead of the user-defined STRAGG (that you can copy from AskTom), you can also use the undocumented, or from Oracle 11.2, WM_CONCAT LISTAGG built-in function.

  • Switch between the graph and the table as in the DAQ Assistant

    I was wondering if it is possible or if anyone has any success making a user interface, such as the DAQ Assistant, where you can switch between a graphical output or an array of the recorded signals.  I would like to have this feature in my code .VI.  From now on, I'm just a waveform graph in my front panel.  I'd love to be able to alternate between this waverform table and a table of output values. I have attached a few screenshots to explain what I mean.

    Hello

    Personally, I like the TAB ideas that have been validated, but you can also use property nodes and the visible value.

    Good luck.

    Steven

  • Write a string and an integer and a table all in the same file?

    Hello

    I am currently it several different types of values with LabView.

    I have a shot, a few numbers and several paintings.

    Thus, for example, I have a timestamp of the chain, several values of "integer" amplitude of the signal for example, RMS value, frequency and I have several paintings - table of signal, the FFT (PIC and location) values.

    Basically, I'm trying to find a way to write all the values in a single file. I can write all the individual types to separate files (so I can write the RMS, amplitude and frequency to a single file, some of the tables in the other)
    but is it possible to write a string and an integer and a table all in the same file?

    Pointers would be much appreciated,

    Thank you

    Paula

    Your file will be all text... any format in a table of text, to build as a single table, "table chain worksheet", to write to the file.

    (I'm sure this has been on the forums before... a search it would have thrown upward)

  • HFM and FDM tables

    Hi Experts,

    I want to know the tables FDM and HFM, through which Exchange rates are charged. I mean the FDM used tables and HFM tables used for the loading of the exchange rate at HFM. and how do I question them databases

    Thanks for your help.

    All data, same exchange rate, are loaded by FDM tDataSegx tables. Identify the location that you load through exchange rate and will give you the reference to the correct tDataSeg table. On the top of my head, I don't know the HFM table, but why would you want to query these tables directly as you can view the information you need - FDM both HFM in the relevant application forms?

  • When embedding the HTML table for table border does not appear even if it appears in a web browser and the tables generator

    Need help.  When I add the HTML code to integrate the following table, the border appears in the table designer and if I find the table separately from muse, but when they are incorporated into the Muse from the edge of the table is not displayed.  Any ideas what I can do wrong?

    Here is the HTML Code below:

    < style type = "text/css" >

    .TG {border-collapse: collapse; border-spacing: 0 ;}}

    .TG td {-font family: Arial, without serif; do-size: 14px; padding: 10px 5px; border-style: solid; border-width: 1px; overflow: hidden; word-break: normal ;}}

    .TG th {font family: Arial, without serif; do-size: 14px; police-weight: normal; padding: 10px 5px; border-style: solid; border-width: 1px; overflow: hidden; word-break: normal ;}}

    .TG .tg-jlrw {do-size: 16px; text-align: center}

    .TG .tg-lvl4 {police-weight: "BOLD"; do-size: 16px; do-family: Arial, Helvetica, sans! important; text-align: center}

    .TG .tg-qnmb {make-weight: bold; do-size: 16px; text-align: Center}

    .TG .tg-wm6t {make-weight: bold; do-size: 16px}

    < / style >

    < table class = "tg" style = "undefined; table-layout: fixed; Width: 875px ">"

    < colgroup >

    < style col = "width: 175px" >

    < style col = "width: 175px" >

    < style col = "width: 175px" >

    < style col = "width: 175px" >

    < style col = "width: 175px" >

    < / colgroup >

    < b >

    < class th = 'tg-lvl4' > print size < br < /th > >(Width x Height)

    < class th = "tg-qnmb" > model size < /th >

    < class th = 'tg-qnmb' > < /th > < br > security zone

    < class th = "tg-qnmb" > < br > print Code < /th >

    < class th = "tg-qnmb" > < br > < br > graphic border width (pixels) < /th >

    < /tr >

    < b >

    < class td = "tg-wm6t" colspan = "5" > cards & amp; The year-at-a-Glance calendars - 4 x 6, 4 x 8, 5 x 7, 6 x 8, & amp; 8 x 10: < table >

    < /tr >

    < b >

    < class td = "tg-jlrw" > 4 x 6 < table >

    < class td = "tg-jlrw" > 1212 x 1818 < table >

    < class td = "tg-jlrw" > 1136 x 1742 < table >

    < class td = "tg-jlrw' > 46 t < table >

    < class td = "tg-jlrw' > < table > 60

    < /tr >

    < b >

    < class td = "tg-jlrw" > 5 x 7 < table >

    < class td = "tg-jlrw" > 1515 x 2121 < table >

    < class td = "tg-jlrw" > 1439 x 2045 < table >

    < class td = 'tg-jlrw' > < table > 57(d)

    < class td = "tg-jlrw' > < table > 75

    < /tr >

    < b >

    < class td = "tg-jlrw" > 4 x 8 < table >

    < class td = "tg-jlrw" > 1224 x 2424 < table >

    < class td = "tg-jlrw" > 1148 x 2348 < table >

    < class td = "tg-jlrw" > 48 t < table >

    < class td = "tg-jlrw' > < table > 60

    < /tr >

    < b >

    < class td = "tg-jlrw" > 8 x 10 < table >

    < class td = "tg-jlrw" > 2424 x 3030 < table >

    < class td = "tg-jlrw" > 2348 x 2954 < table >

    < class td = "tg-jlrw" > 80 t < table >

    < class td = "tg-jlrw' > < table > 120

    < /tr >

    < b >

    < class td = "tg-wm6t" colspan = "5" > Important: safe area on the base prints is 38 pixels per side. < table >

    < /tr >

    < b >

    < class td = "tg-wm6t" colspan = "5" > large Format prints - Posters & Collages: < table >

    < /tr >

    < b >

    < class td = "tg-jlrw" > 6 x 8 < table >

    < class td = "tg-jlrw" > 1818 x 2424 < table >

    < class td = "tg-jlrw" > 1742 x 2348 < table >

    < class td = "tg-jlrw" > 6 x 8 < table >

    < class td = "tg-jlrw' > < table > 90

    < /tr >

    < b >

    < b >

    < class td = "tg-jlrw" > 8 x 12 < table >

    < class td = "tg-jlrw" > 2400 x 3600 < table >

    < class td = "tg-jlrw" > 2380 x 3580 < table >

    < class td = "tg-jlrw" > 8 x 12 < table >

    < class td = "tg-jlrw' > < table > 120

    < /tr >

    < b >

    < class td = "tg-jlrw" > 8 x 20 < table >

    < class td = "tg-jlrw" > 2400 x 6000 < table >

    < class td = "tg-jlrw" > 2380 x 5980 < table >

    < class td = "tg-jlrw" > 8 x 20 < table >

    < class td = "tg-jlrw' > < table > 120

    < /tr >

    < b >

    < class td = "tg-jlrw" > 10 x 14 < table >

    < class td = "tg-jlrw" > 3030 x 4242 < table >

    < class td = "tg-jlrw" > 2954 x 4166 < table >

    < class td = "tg-jlrw" > 10 x 14 < table >

    < class td = "tg-jlrw' > < table > 165

    < /tr >

    < b >

    < class td = "tg-jlrw" > 11 x 14 < table >

    < class td = "tg-jlrw" > 3300 x 4200 < table >

    < class td = "tg-jlrw" > 3280 x 4180 < table >

    < class td 'tg-jlrw' = > 14x11E-24_STN < table >

    < class td = "tg-jlrw' > < table > 165

    < /tr >

    < b >

    < class td = "tg-jlrw" > 12 x 12 < table >

    < class td = "tg-jlrw" > 3600 x 3600 < table >

    < class td = "tg-jlrw" > 3580 x 3580 < table >

    < class td = "tg-jlrw" > 12 x 12-24_STN < table >

    < class td = "tg-jlrw' > < table > 90

    < /tr >

    < b >

    < class td = "tg-jlrw" > 12 x 18 < table >

    < class td = "tg-jlrw" > 3600 x 5400 < table >

    < class td = "tg-jlrw" > 3580 x 5380 < table >

    < class td = "tg-jlrw" > 12 x 18-24_STN < table >

    < class td = "tg-jlrw' > < table > 90

    < /tr >

    < b >

    < class td = "tg-jlrw" > 16 x 20 < table >

    < class td = "tg-jlrw" > 4800 x 6000 < table >

    < class td = "tg-jlrw" > 4780 x 5980 < table >

    < class td 'tg-jlrw' = > 20x16E-24_STN < table >

    < class td = "tg-jlrw' > < table > 120

    < /tr >

    < b >

    < class td = "tg-jlrw" > 18 x 24 < table >

    < class td = "tg-jlrw" > 2700 x 3600 < table >

    < class td = "tg-jlrw" > 2680 x 3580 < table >

    < class td = "tg-jlrw" > 18 x 24-24_STN < table >

    < class td = "tg-jlrw' > < table > 135

    < /tr >

    < b >

    < class td = "tg-jlrw" > 20 x 24 < table >

    < class td = "tg-jlrw" > 3000 x 3600 < table >

    < class td = "tg-jlrw" > 2980 x 3580 < table >

    < class td 'tg-jlrw' = > 20x24E-24_STN < table >

    < class td = "tg-jlrw' > < table > 150

    < /tr >

    < b >

    < class td = "tg-jlrw" > 20 x 30 < table >

    < class td = "tg-jlrw" > 3000 x 4500 < table >

    < class td = "tg-jlrw" > 2980 x 4480 < table >

    < class td 'tg-jlrw' = > 20x30E-24_STN < table >

    < class td = "tg-jlrw' > < table > 150

    < /tr >

    < b >

    < class td = "tg-jlrw" > 24 x 36 < table >

    < class td = "tg-jlrw" > 3600 x 5400 < table >

    < class td = "tg-jlrw" > 3580 x 5380 < table >

    < class td 'tg-jlrw' = > 24x36E-24_STN < table >

    < class td = "tg-jlrw' > < table > 180

    < /tr >

    < b >

    < class td = "tg-jlrw" > 24 x 72 < table >

    < class td = "tg-jlrw" > 2328 x 6912 < table >

    < class td = "tg-jlrw" > 2308 x 6892 < table >

    < class td 'tg-jlrw' = > 24x72E-24_STN < table >

    < class td = "tg-jlrw' > < table > 115

    < /tr >

    < b >

    < class td = "tg-jlrw" > 24 x 96 < table >

    < class td = "tg-jlrw" > 2328 x 9216 < table >

    < class td = "tg-jlrw" > 2308 x 9196 < table >

    < class td 'tg-jlrw' = > 24x96E-24_STN < table >

    < class td = "tg-jlrw' > < table > 115

    < /tr >

    < class td = "tg-wm6t" colspan = "5" > Important: safe area on the base prints is 38 pixels per side. < table >

    < /tr >

    < class td = "tg-wm6t" colspan = "5" > 4 x 8 gift tags: < table >

    < /tr >

    < b >

    < class td = "tg-jlrw" > 4 x 8 < table >

    < class td = "tg-jlrw" > 1224 x 2424 < table >

    < class td = "tg-jlrw" > 1148 x 2348 < table >

    < class td = "tg-jlrw" > 48 t < table >

    < class td = 'tg-jlrw' > < table > N/A

    < /tr >

    < b >

    < class td = "tg-wm6t" colspan = "5" > Important: safe area on the base prints is 38 pixels per side. < table >

    < /tr >

    < /table >

    Once again... Muse removes the style code that you put into this table so your other option is to use an iframe

    example of your table in an iframe = table (by itself) and i-table (inside the iframe Muse)

  • HPCM import the staging tables

    Hello

    I'm trying to import records in the staging table HPCM_STG_ASGN_RULE_SEL in HPCM application. But he isn't getting imported into application HPCM. When I see the field "import exception" in the staging table HPCM_STG_ASGN_RULE_SEL it shows as ERROR_POV_GROUP_NOT_FOUND. What could be the reason? Help, please.

    Kind regards
    Vishal

    Problem is solved by ordering the appropriate POV.

    Kind regards

    Vishal

  • UPA_UD_FORMFIELDS and UPA_UD_FORMS tables are empty in OIM 11 g

    Hello

    I need to obtain audit information, but the UPA_UD_FORMFIELDS and UPA_UD_FORMS tables are empty.

    Help me solve this problem.

    XL. EnableExceptionReports go to TRUE and restart your server

  • Difference between an associative array and Nested table

    Hello

    Can you please tell me, what is the main differences between associative array and Nested table. I'm not sure, in this case we are to use.

    Thank you and best regards,
    Sanjeev.

    user13483989 wrote:
    Hello

    Can you please tell me, what is the main differences between associative array and Nested table. I'm not sure, in this case we are to use.

    Did you happen to read the documentation, explain its good enough!
    http://docs.Oracle.com/CD/E11882_01/AppDev.112/e25519/composites.htm#LNPLS005

    Aman...

  • Is there a problem with ValueChangeListener and af: table?

    Hello...

    I use JDeveloper 11.1.2.0.0

    Is there a problem with ValueChangeListener and af: table.

    Here my problem...

    I have two inputtext in af:table and I want to change the value of inputtext2 when I change the value of inputtext1
    so I put the autosubmit = "true" to inputtext1 and set the valuechangelistener method that is in the page bean
    and I put the partial inputtext2 trigger = "inputtext1 id".

    but when I run the page and change the value of inputtext1 that nothing happens.

    But if I have the previous scenario in af:panelFormLayout instead of af: table its work and the value of inputtext2 is changed to the user.

    any ideas...

    Thans.

    Sorry for the delay... :(

    And why if I use page JSF is the binding property disappears
    in the tab advanced in the property inspector.

    If you cannot power discovered the binding property in the palette of the means, your jsff page is automatically linked.
    If only the problem.

    try to create the new page jsff, while creating jsff, finally there is radio box something like
    do not expose the UI components automatically. check and create.

    and create a java file. Then you can bind components with the java file as you wish.

    to check your jsff page is autobinded are no means?
    Open your jsff page.

    Menu's that are on it - in this section. You can see the design menu that struck. If you hit it means you see Wizard property page go to the tab component binding
    There is a check box available

    If the box is ticked means that you page are automatically linked. If this isn't the case, you must link.

    -edited lately.

  • What is the difference between associative arrays and nested tables?

    Hello
    What is the difference between associative arrays and nested tables?

    nested tables cannot be indexed by other than pls_integer and unlike nested tables table associative cananot be declared at the schema level.

    is there any other difference set apart from the diff above 2?

    user13710379 wrote:
    What is the difference between associative arrays and nested tables?

    Name-value pairs (associative) against a list of values (table standard/nested table).

    nested tables cannot be indexed by other than pls_integer

    They are not "indexed" the way in which an associative array is indexed. A standard table is referenced by the position of the cell in the table. This position is essentially the offset of the memory of the cell from the start address of the table.

    Can not solve a cell in an associative array directly via a memory offset index. You place a cell reference value it by his 'name' (a search in the linked list/hash table).

    The following example shows the difference between the pairs of name / value and a list of core values.

    SQL> declare
      2          --// associative arrays are NAME-VALUE pairs
      3          type TArr1 is table of varchar2(10) index by pls_integer;
      4          type TArr2 is table of varchar2(10) index by varchar2(10);
      5
      6          arr1    TArr1;
      7          arr2    TArr2;
      8  begin
      9          arr1(100) := '1st entry';
     10          arr1(1) := '2nd entry';
     11          arr1(5) := '3rd entry';
     12
     13          arr2('john') := 'New York';
     14          arr2('jane') := 'Paris';
     15          arr2('jack') := 'London';
     16
     17  end;
     18  /
    
    PL/SQL procedure successfully completed.
    
    SQL>
    SQL>
    SQL> declare
      2          --// standard arrays are lists
      3          type TArr3 is table of varchar2(10);
      4          type TArr4 is table of number;
      5
      6          arr3    TArr3;
      7          arr4    TArr4;
      8  begin
      9          arr3 := new TArr3( '1st entry', '2nd entry', '3rd entry' );
     10
     11          arr4 := new TArr4( 100, 1, 5 );
     12  end;
     13  /
    
    PL/SQL procedure successfully completed.
    
    SQL> 
    
  • Problem with a master tree table and detail table

    Hello

    I have a treetable master showing on a page and a separate detail below the treetable table on the same page.
    To clarify things, the three tables are involved here: a master and detail table to compose the treetable and another table of details for the current line in the treetable.

    Usually things work well if they browse the detail table. However, if I create or delete some lines of the secondary table and press Rollback, some unwanted behaviors happening.
    In fact, the Rollback, the treetable master both the secondary table are redesigned page.

    However, once updated, despite the current line selected in the treetable still appears as the one that precedes by clicking on restore (don't guess the premiera), the secondary table is always the first line of the master treetable.

    Is there a way to make the first line the master treetable selected current or (preferably) to make the secondary table reflect the selected line that is currently visible in the treetable?

    Thank you

    @user10047839
    see How to keep selected after cancellation line. It can help you
    http://www.Oracle.com/technetwork/developer-tools/ADF/learnmore/OCT2010-OTN-harvest-183714.PDF

    @Erp
    As far as I know, there is no cancellation line level. Restore is done to AM in all versions of Jdeveloper.

  • difference between materailized and a table

    Hey hiii

    I want to know what is a difference between a materialized view and that is to say a table suppose I create a table and another table B on the table, I created a trigger that will download all changes made to A, it IE insert, update or delete while it will perform all actions that a materialized view can perform on one or is there a difference between them



    Thks

    In this case, MView will be much more robust and reliable, because it is designed for that you use coding the trigger. You will manage all possible exceptions and lock the trigger claim everything is Oracle build-in MView. And also, MView can be much more powerful.

    Nicolas.

Maybe you are looking for