Table Collection & quot; get question to & quot; question

I have an application with a picture of the collection, here's the elements of fist 2:

[Bindable]
private var ingredientList:ArrayCollection = new ArrayCollection([)
{label: "Celery, chopped", max: 2, def:1, min:1, units: "cups"},
([{label: "Onions, chopped", max: 3, def:1, min:2, units: "cups"}]) ;

I'm making reference to these elements in form controls, as in:

< mx:FormItem >
< mx:HBox >
< mx:CheckBox id = 'c0' width = "{draped}" label = "{ingredientList [0] .label}" change = "enableStepper (q0, c0)" selected = "false" / > "
< mx:NumericStepper id = "q0" width = "{nsW}" minimum = "{ingredientList [0] .revolutions} ' maximum stepSize =" {.max ingredientList [0]} "=".5"enabled ="false"/ >
< mx:Label text = "{.units ingredientList [0]}" / >
< / mx:HBox >
< / mx:FormItem >

Now, it seems to work, but the compiler 'complained' (yellow icon) me has access to members of the table with the support rating, saying I should "use ArrayCollecyion.getItemAt ().

Why and how it works, exactly? How would re - write my code to use the preferred method?

Thank you.

just replace [0] getItemAt (0) and leave all the rest the same.

Tags: Flex

Similar Questions

  • On closure of my MacBook Pro always get question "continue application"? with the boxes option to cancel or continue the request.

    On my Mac Book Pro to always stop get question "continue application"? with the boxes option to cancel or continue the request.

    Selection of abandonment does not prevent the following message appears when closing next down.

    Activity monitor shows all the applications that you have

    installed, running in the background? Something can be...

    If you open the force quit, are there topics other than the Finder

    and maybe a browser?

    You repaired the disk from disk utility permissions lately?

    We could also see other boot options on the use in

    Recovery of OS X to use the "OS X Utilities" in there. Be careful.

    Is there more than one user account on your computer? If you

    Start in another user account and have auto login for

    the fact that it is one that rises at the start, a piece

    similar issues or is it just works fine on shut down?

    The question may take some trial and error troubleshooting. This

    may include some basic startup keyboard shortcuts for

    the computer to start in Safe Mode, to do more test, etc.

    If you have access to an official Apple store, you can be

    able to set up an engineering appointment & have someone closer.

    Good luck anyway...

  • What does it mean when I get question marks in my ink level indicator for my lexmak 3600-4600 printer

    What does it mean when I get question marks in my ink level indicator for my lexmak 3600-4600 printer

    Hello

    Maybe you are low on ink

    Contact Lexmark technical support and are looking for a manual on the use of your printer and the error messages mean or asking for their support

    http://support.Lexmark.com/index?page=home&channel=supportAndDownloads&locale=en&UserLocale=en_AU

  • casting with NVARCHAR2 table collection

    Hello world

    I have defined some SQL types at the schema level and use them in the stored procedure, in particular, I need to some casting of this type to the table collection.
    However, it seems to be a problem if the SQL type contains fields of type NVARCHAR2. Example is quite simple:

    Select min (INNER_CODE) in the TABLE test_quality (CAST (highest_quality_table AS highest_quality_table_type));

    In the case of the concerned type (highest_quality_table_type) contains NVARCHAR2, I get ORA-12714 (invalid national character the specified value).
    However, if the type does not NVARCHAR2 (for example numbers only) - contain it compiles successfully.

    Any advice would be appreciated.

    You might knock Bug 6029647 ORA-12714 access to typed function TABLE() column:

    This problem is fixed in:
    Patch 7 10.2.0.3 on Windows platforms
    10.2.0.4 (Server Patch Set)
    11.1.0.7 (Server Patch Set)
    11.2 (next version)

  • Table Collection cast to object

    In my application I push data in a table collection. When I debug or trace the AC I get [object Object]. I'm doing something wrong?

             public var newsDB:ArrayCollection = new ArrayCollection;
    
    

    then I add to it here.

                      if(archive.selected == true){
                        newsDB.addItem( { 
                        title: titleText.label, 
                        clickURL: clickURL.text, 
                        info: itemInfo.text, 
                        abstract: abstract.text, 
                        category: category.selectedLabel, 
                        rateItem: rateItem.selectedItem });               
                        trace(newsDB);          
                      }
    

    When I debug, I can see that the items are in HQ, but as generic objects. Thoughts?

    How you draw the objects in the table?  If you want to see special properties, you must specify the... trace (newsDB [i] .title);

  • When I try to open the master collection I get an error message saying invalid checksum

    When I try to open the master collection I get an error message saying invalid checksum

    If you complete solution 1 to troubleshoot Adobe Download Assistant - n_1 http://helpx.adobe.com/creative-suite/kb/troubleshoot-download-assistant.html#main_Solutio it will allow you to reset the download experience.  Please choose the default location for the user folder when to reset the download.

    Alternatively, you can follow the steps listed in http://forums.adobe.com/thread/981369 to launch a direct download.

  • I accidentally dropped a table, can I get it back?

    Hello

    I accidentally dropped a table, I can get it back is back with a different name than the original? I use Oracle 10.2.0.3.

    Thanks, Felipe.

    Hi Felipe,.

    If you accidentally deleted a table, you can retrieve it back using the FLASHBACK TABLE... Before FILING to recover a table deleted from the Recycle Bin. Look at the following SQL example:

    SQL> CREATE TABLE emp_example
      2  AS SELECT * FROM employees WHERE department_id=70;
    Table created.
    
    SQL> SELECT COUNT(*) FROM emp_example;
      COUNT(*)
    ----------
             5
    
    SQL> DROP TABLE emp_exaple;
    Table dropped.
    
    SQL> FLASHBACK TABLE emp_example TO BEFORE DROP
      2  RENAME TO emp_other_name;
    Flashback complete.
    
    SQL> SELECT COUNT(*) FROM emp_other_name;
      COUNT(*)
    ----------
             5
    

    See you soon,.

    Francisco Munoz Alvarez
    http://www.oraclenz.com

  • Question of nested initialization Tables collection

    When I'm this operation with Index by table it works howerver not able to perform even with the Tables IMBRIQUEES

    DECLARE

    TYPE column_record IS TABLE OF employees % rowtype

    INDEX BY PLS_INTEGER;

    EmpData column_record;

    I PLS_INTEGER: = 100;

    BEGIN

    WHILE I < = 200 LOOP

    SELECT * INTO empdata (i)

    EMPLOYEES

    WHERE employee_id = i;

    i: = i + 10;

    END LOOP;

    I: = 100;

    WHILE I < = 200 LOOP

    DBMS_OUTPUT. Put_line (EmpData (i). FIRST_NAME. "Work on the profile ' | EmpData (i). Job_id |' a salary '. EmpData (i). SALARY);

    i: = i + 10;

    END LOOP;

    END;

    /

    Steven is working on a salary 24000 AD_PRES profile

    John works on a salary 8200 FI_ACCOUNT profile

    Matthew is working on a salary 8000 ST_MAN profile

    Mozhe working on profile ST_CLERK has salary 2800

    Joshua working on profile ST_CLERK has salary 2500

    Peter is working on a salary 10000 SA_REP profile

    Louise is working on a salary 7500 SA_REP profile

    Tayler is working on a salary 9600 SA_REP profile

    Winston works on the SH_CLERK a salary 3200 profile

    Timothy working on SH_CLERK a salary 2900 profile

    Jennifer works on the AD_ASST a salary 4400 profile

    PL/SQL procedure successfully completed.

    Now when it is run with the IMBRIQUEE TABLE:

    SQL > DECLARE

    2 TYPE column_record IS TABLE OF employees % rowtype;

    3 empdata column_record;

    4 I PLS_INTEGER: = 100;

    5 BEGIN

    6 WHILE I < = 200 LOOP

    7 if he would CHOOSE * IN empdata (i)

    8 EMPLOYEES

    9. WHERE employee_id = i;

    10 i: = i + 10;

    11 END OF LOOP;

    12 I: = 100;

    13 then I < = 200 LOOP

    14 DBMS_OUTPUT. Put_line (EmpData (i). FIRST_NAME. "Work on the profile ' | EmpData (i). Job_id |' a salary '. EmpData (i). SALARY);

    15 i: = i + 10;

    16 END LOOP;

    END 17;

    18.

    DECLARE

    *

    ERROR on line 1:

    ORA-06531: Reference to an uninitialized collection

    ORA-06512: at line 7

    Too much remedy that I have included the following line:

    And then I'm stuck with another error.

    SQL > DECLARE

    2 TYPE column_record IS TABLE OF employees % rowtype;

    3 empdata column_record;

    4 empdata: = column_record();

    5 I PLS_INTEGER: = 100;

    6 BEGIN

    7 then I < = 200 LOOP

    8. SELECT * IN empdata (i)

    9 EMPLOYEES

    10. WHERE employee_id = i;

    11 i: = i + 10;

    12 END LOOP;

    13 I: = 100;

    14 then I < = 200 LOOP

    15 DBMS_OUTPUT. Put_line (EmpData (i). FIRST_NAME. "Work on the profile ' | EmpData (i). Job_id |' a salary '. EmpData (i). SALARY);

    16 I: = i + 10;

    17 END OF LOOP;

    18 END;

    19.

    EmpData: = column_record();

    *

    ERROR on line 4:

    ORA-06550: line 4, column 9:

    PLS-00103: encountered the symbol "=" when expecting one of the following conditions:

    constant exception < an ID >

    < a between double quote delimited identifiers > double long Ref table

    char time timestamp interval date binary character national nchar

    The symbol '< identifier >' has been substituted for "=" continue.

    Guide gently on the correct way to do it.

    Do you miss extend

    DECLARE
       TYPE column_record IS TABLE OF employees%ROWTYPE;
    
       empdata   column_record;
    
       i         PLS_INTEGER := 100;
    BEGIN
       empdata := column_record ();
       empdata.extend(200);
       WHILE i DECLARE
       TYPE column_record IS TABLE OF employees%ROWTYPE;
    
       empdata   column_record;
    
       i         PLS_INTEGER := 100;
    BEGIN
       empdata := column_record ();
       empdata.extend(200);
       WHILE i
    
    Steven Working on Profile AD_PRES has salary 24000
    John Working on Profile FI_ACCOUNT has salary 8200
    Matthew Working on Profile ST_MAN has salary 8000
    Mozhe Working on Profile ST_CLERK has salary 2800
    Joshua Working on Profile ST_CLERK has salary 2500
    Peter Working on Profile SA_REP has salary 10000
    Louise Working on Profile SA_REP has salary 7500
    Tayler Working on Profile SA_REP has salary 9600
    Winston Working on Profile SH_CLERK has salary 3200
    Timothy Working on Profile SH_CLERK has salary 2900
    Jennifer Working on Profile AD_ASST has salary 4400
    
  • Oracle 11g R2, CREATE THE TABLE and QUOTAS

    Hi all
    I need some insight on a strange behavior, that I discovered in Oracle 11 g 2. Don't know if I'm missing something or if I just discovered a security issue with Oracle.

    Oracle Version: 11.2.0.1.0

    The problem is with the CREATE TABLE and the QUOTA on the specific tablespace privilege.

    Please, try this on your system (if you have some free time and care to confirm the "bug").

    Create a user, grant privileges than two, CREATE THE SESSION and CREATE TABLE.

    Grant NO quota on any tablespace.

    Try to create a table on any tablespace (except SYSTEM) and everybody say if it worked or not.

    The oracle documentation provides the following:

    To create a relational table in your own schema, you must have the CREATE TABLE system privilege. To create a table in the schema of another user, you must have the CREATE ANY TABLE system privilege. In addition, the owner of the schema containing the table must have a quota of space on the tablespace contains the table or the UNLIMITED TABLESPACE system privilege.

    [http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/statements_7002.htm#SQLRF01402]

    The fact is, so far, on two different instances of Oracle 11 g 2, my users are not limited in the creation of the tables only when they have quotas, but where they want to, except the STRING.

    The behavior correct would be to deny the creation of the table the tablespace where there is no quota, but it does not work.

    My instance of Oracle 10 g behave properly and therefore the creation of the table is denied the tablespace with no quota.

    P.s1 sorry if this a well known "bug/problem/question". I've been ridiculous on a well-known forum for the same question. I don't need to be "filled spoon" as shown on this famous site! I have read the documentation! I googled a lot!

    P.s2 even if the creative work of table on tablespace with no quota, you cannot insert data into it. Yes, big picture, the user cannot not filled space with irrelevant data tables, but it can create thousands of tables...!

    Did I miss something?
    Is there a 'default' option I have to mark to prevent the creation of the table where it shouldn't?
    ? (?)

    Please read http://tkyte.blogspot.com/2011/02/deferred-segment-creation.html.

  • More on my table of full scan question...

    Ok. Apology. start one new thread, like other a receipt very complicated... If anyone can help Id be very grateful, because this results in a significant performance problem...

    XE 11.2

    Re this query:

    Select ENTITY_BUDGET_CAT,

    Sum (actual) real by

    de)

    Select Br ENTITY_BUDGET_CAT_ID as ENTITY_BUDGET_CAT,

    sum (br. BRI_CREDIT) under the real name

    from: br bri_recon

    Group of BR. ENTITY_BUDGET_CAT_ID

    )

    where ENTITY_BUDGET_CAT = (SELECT "EBC". (' ' ID ' FROM 'ENTITY_BUDGET_CAT' "EBC" WHERE 'ENTITY_ID' = 55)

    ENTITY_BUDGET_CAT group

    The query results in a table full of BRI_RECON scan, even if there is an index on BR. ENTITY_BUDGET_CAT_ID... If I put the where conditition on the inner circle question it works fine.

    The void, select retrieve entity_budget_cat on where clause returns a single value.

    If I replace the subselect statement to get the entity_budget_cat with a literal value, it uses the index on ENTITY_BUDGET_CAT and is much faster with a much lower cost.

    If I remove the sum (actual) external and just retrieve the value and no group, it also uses a sweep of indexes on the inner query on BRI_RECON.

    I need instruction in this format because its share actually well expand with unions comprising the sum of 4 tables, then later adds the value of the outer query to retrieve a single value by group of... The docs say that the filter must be passed to any SQL internally, but everything Ive tried to change the query, but leave the internal SQL without a where clause clause and apply it on the outer query. (as I would a view) translates into a full table scan.

    Here is a simple example of the view I have as an example of how the larger view needs to look for tables of the amount and return a single sum by group...

    Create union_sum_view like)

    Select sum (a) as a 'b' b

    de)

    Select nvl (sum (2), 0) as a 'b' of the double

    Union of all the

    Select nvl (sum (2), 0) as a 'b' of the double

    )

    Group by 'b '.

    )

    Select * from union_sum_view where b = (select "b" double)

    Ive tried to put a hint about it, and it doesn't seem to make a difference...

    Ive looked full statistics on the diagram too...

    So my question is: what is causing the full table scan (which is clearly much less effective). And given that I need to build a view in this way, how can I change to use an index in this format, or what I do to make it work...   All variants and the traces are below...

    Select ENTITY_BUDGET_CAT,

    Sum (actual) real by

    de)

    Select Br ENTITY_BUDGET_CAT_ID as ENTITY_BUDGET_CAT,

    sum (br. BRI_CREDIT) under the real name

    from: br bri_recon

    Group of BR. ENTITY_BUDGET_CAT_ID

    )

    where ENTITY_BUDGET_CAT = (SELECT "EBC". (' ' ID ' FROM 'ENTITY_BUDGET_CAT' "EBC" WHERE 'ENTITY_ID' = 55)

    ENTITY_BUDGET_CAT group

    | ID | Operation | Name | Lines | Bytes | Cost (% CPU). Time |
    ---------------------------------------------------------------------------------------------------------------
    | 0 | SELECT STATEMENT | 230. 3910 | 3335 (3) | 00:00:41 |
    | 1. HASH GROUP BY. 230. 3910 | 3335 (3) | 00:00:41 |
    |* 2 | VIEW | 230. 3910 | 3333 (3) | 00:00:40 |
    | 3. HASH GROUP BY. 230. 1610. 3333 (3) | 00:00:40 |
    | 4. TABLE ACCESS FULL | BRI_RECON | 589K | 4031K | 3287 (2) | 00:00:40 |
    | 5. TABLE ACCESS BY INDEX ROWID | ENTITY_BUDGET_CAT | 1. 8. 2 (0) | 00:00:01 |
    |* 6 | INDEX RANGE SCAN | ENTITY_BUDGET_CAT_ENTITY_IDX1 | 1 | | 1 (0) | 00:00:01 |
    ---------------------------------------------------------------------------------------------------------------
    Information of predicates (identified by the operation identity card):
    ---------------------------------------------------
    2 - filter("ENTITY_BUDGET_CAT"= (SELECT "EBC".")) ID""ENTITY_BUDGET_CAT""EBC"WHERE
    'ENTITY_ID' = 55))
    6 - access ("ENTITY_ID" = 55)

    Select ENTITY_BUDGET_CAT,

    Sum (actual) real by

    de)

    Select Br ENTITY_BUDGET_CAT_ID as ENTITY_BUDGET_CAT,

    sum (br. BRI_CREDIT) under the real name

    from: br bri_recon

    Group of BR. ENTITY_BUDGET_CAT_ID

    )

    where ENTITY_BUDGET_CAT = (382)

    ENTITY_BUDGET_CAT group

    | ID | Operation | Name | Lines | Bytes | Cost (% CPU). Time |
    ----------------------------------------------------------------------------------------------------
    | 0 | SELECT STATEMENT | 1. 17. 54 (0) | 00:00:01 |
    | 1. GROUP SORT BY NOSORT | 1. 17. 54 (0) | 00:00:01 |
    | 2. VIEW | 1. 17. 54 (0) | 00:00:01 |
    | 3. GROUP SORT BY NOSORT | 1. 7. 54 (0) | 00:00:01 |
    | 4. TABLE ACCESS BY INDEX ROWID | BRI_RECON | 808 | 5656. 54 (0) | 00:00:01 |
    |* 5 | INDEX RANGE SCAN | BRI_RECON_IDX_EBC | 808 | 4 (0) | 00:00:01 |
    ----------------------------------------------------------------------------------------------------
    Information of predicates (identified by the operation identity card):
    ---------------------------------------------------
    5 - access("BR".") ENTITY_BUDGET_CAT_ID "= 382)

    Richard Legge wrote:

    The void, select retrieve entity_budget_cat on where clause returns a single value.

    If I replace the subselect statement to get the entity_budget_cat with a literal value, it uses the index on ENTITY_BUDGET_CAT and is much faster with a much lower cost.

    Because the query runs faster when you use literal is because Oracle merges internal queries and views, so that it looks to below.

    Select Br ENTITY_BUDGET_CAT_ID as ENTITY_BUDGET_CAT

    sum (br. BRI_CREDIT) under the real name

    from: br bri_recon

    where br. ENTITY_BUDGET_CAT_ID =

    Group of BR. ENTITY_BUDGET_CAT_ID

    However when a subquery is used, as in the column ENTITY_BUDGET_CAT - the subquery must be run before the outer query can send more data, so that the outer query to only return results that match records based on the subquery.

    Richard Legge wrote:

    I need instruction in this format because its share actually well expand with unions comprising the sum of 4 tables, then later adds the value of the outer query to retrieve a single value by group of...

    Maybe you should re - write the query as follows so that the optimizer would get the opportunity to merge the view and give you better performance...

    Select entity_budget_cat

    , sum (actual) real by

    from (select br.entity_budget_cat_id as entity_budget_cat

    , sum (br.bri_credit) real by

    from: br bri_recon

    Br.entity_budget_cat_id group

    ) a1

    , (select ebc.id from entity_budget_cat where entity_id = 55 ebc) b1

    where a1.entity_budget_cat = b1.id

    A1.entity_budget_cat group;

    or just... would...

    Select entity_budget_cat_id entity_budget_cat

    , sum (actual) real by

    bri_recon a1

    , (select ebc.id from entity_budget_cat where entity_id = 55 ebc) b1

    where a1.entity_budget_cat_id = b1.id

    A1.entity_budget_cat_id group

  • Loading external Table with quotes

    I have a file with fields in the file are as TAB delimiter ~ TAB.

    Example as below:

    QM ~ CD ~ Exzm ~ BMW

    DM ~ BD ~ Exzm ~ BMW

    CREATE TABLE test

    (

    Col_1 VARCHAR2 (100),

    Col_2 VARCHAR2 (100),

    Col_3 VARCHAR2 (100),

    Col_4 VARCHAR2 (100)

    )

    EXTERNAL ORGANIZATION

    (TYPE ORACLE_LOADER

    DEFAULT DIRECTORY 'Test_Report '.

    ACCESS SETTINGS

    (records delimited by '\n'

    CHARACTERSET 'UTF8 '.

    fields terminated by '\t~\t '.

    missing field values are null

    )

    LOCATION ("test.asc")

    )

    REJECT LIMIT UNLIMITED;

    OUTPUT:

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

    Data loaded in DB, but col_4 data comes from the quotation as below

    col_4

    -------

    "BMW".

    "BMW".

    Note: Col1 - col3 data arrives correctly.

    2807064 wrote:

    A finding on my side.

    I found that the values of Col_4 after inserting into DB with "transport return character" (CHR (13)) at the end of each value as shown below when I copy paste the value in notepad ++ "»

    Example:

    ----------

    "BMW".

    "

    But if I see the file I saw that BMW.

    My question is, in this case the external table loading must fail right? Why is this it is to load data in DB?

    Do you have this file begin life on windows, and then are transferred to * nix to serve an external table?  If so, which explains a lot.  Windows is the standard record delimiter x '0d0a' (Chr (13) 10)  On * nix, it's just x '0A' (10.  When the process of loader is scanning for record delimiter he's just looking for the '0A' x and x'd 0' gets included in the data.

    Two solutions-

    1 - Make sure that the data file is transferred so that the Records delimiters are converted.  It's supposed to to happen with ascii ftp mode, but this week I saw several examples in the House of it does not.

    2. attach your table definition external to seek the delimiter of actual recording instead of the default value of the operating system. == RECORDS DELIMITED BY X '0D0A '.

  • Table MC AS3 n00b question

    OK I loaded xml in video clips created dynamically, and when the user clicks on these other dynamically created clips video clip appears with more info loaded in XML. My question is how can I go back the information individually for each clip instead of all at once. My code:

    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import flash.display.MovieClip;
    import flash.text.TextField;
    import flash.events.MouseEvent;

    var theXml:XML;
    var loader: URLLoader = new URLLoader();
    var mcArray:Array = new Array();
    var boxArray:Array = new Array();
    Loader.Load (new URLRequest ("template.xml"));
    loader.addEventListener (Event.COMPLETE, loadXML);
    function loadXML(e:Event):void
    {
    Check = new XML (e.target.data);
    for (var i: Number = 0; i < theXml.name.length (); i ++)
    {
    var theMC:MovieClip = new MovieClip();
    var theText:TextField = new TextField();
    theText.text = theXml.name [i]. @ Title;
    theText.x = 20;
    theText.y = 40;
    theText.selectable = false;
    theMC.addChild (theText);
    theMC.graphics.beginFill (0xff0000);
    theMC.graphics.drawCircle (50,50,50);
    theMC.graphics.endFill ();
    theMC.x = theMC.width * i;
    theMC.name = "mc" + i;
    mcArray.push (theMC);
    mcArray [i] .addEventListener (MouseEvent.CLICK, moClick);

    var descBox:MovieClip = new MovieClip();
    var descText:TextField = new TextField();
    descText.height = 100;
    descBox.graphics.beginFill (0xff0000);
    descBox.graphics.drawRoundRect (0,0,100,200,10,10);
    descBox.graphics.endFill ();
    descBox.name = 'box' + i;
    descBox.addChild (descText);
    boxArray.push (descBox);
    mcArray [i] .addChild (boxArray [i]);
    descText.text = theXml.name [i]. @ Title + ":"+ theXml.name [i]; ".
    boxArray [i] = mcArray [i] there .height-70;
    boxArray [i] .visible = false;
    addChild (mcArray [i]);

    }

    function moClick(e:MouseEvent)
    {

    / * If I try to put a loop here obviously it would display all and when I try to target by e.currentTarget.boxArray [n] .visible = true;

    its not able to find the properties in the table and get the error:

    TypeError: Error #1010: a term is undefined and has no properties.

    to MethodInfo - 1)

    */


    }
    }

    Any help would be greatly appreciated, thank you!

    Load the data separately only must not serious.  I don't see a reason why you want to put a loop in the event handler.  If you add a descBox as a child of each object in mcArray, then you should be able to target the descBox using his name, but I would just change the name to be 'box' for each of them so that you can use the following syntax...

    MovieClip (event.currentTarget) .getChildByName ('box');

    That should be the object descBox, you have added as a child object theMC as long as you assign it the 'name' box (instead of 'box ' + i).

  • table import DataPump, simple question

    Hello
    A junior DBA, I'm a bit confused.
    Suppose that a user wants to import a table with datapump which it exports from another database with different schemas and tablespaces (it has exported with expdp using tables = XX and I don't know the details..)...
    If I don't know the name of the table, should I ask these three questions 1) diagram 2) 3) version oracle tablespace?
    Of the documentation. I know the remapping of impdp capacities... But they are required when importing a table?
    Thanks in advance

    Hello

    Suppose that a user wants to import a table with datapump which it exports from another database with different schemas and tablespaces (He > exported with expdp using tables = XX and I don't know the details..)...
    If I don't know the name of the table, should I ask these three questions 1) diagram 2) 3) version oracle tablespace?

    You can get this information from the dumpfile if you want - just to make sure you get the right information. If you run your import command, but add:

    sqlFile = MySQL.SQL

    You can edit this sql file to see what is in the dumpfile. It won't display the data, but it will show all the metadata (tables, storage spaces, etc.). If you have not added sqlfile parameter is a .sql file that contains all the create statements that would have been executed.

    Of the documentation. I know the remapping of impdp capacities... But they are required when importing a table?
    Thanks in advance

    You must re-map anything, but if the dumpfile contains a table scott.emp then it will import this table scott.emp in. If you want to go in blake, then you must remap_schema. If it goes in the tablespace tbs1 and you want in tbs2, you need a remap_tablespace.

    Suppose that an end-user wants me to export a table spesific use datapump...
    Should I give him also the name of the repository where the exported table?

    It would be nice, but see above, you can get the name of the tablespace of sqlfile command during the import.

    I hope this helps.

    Dean

  • Insert a column in the table (perhaps a silly question?)

    This may seem a stupid question, but is - it possible in Labview to insert a new column in a table that is established? For example, if I have a 2 column table is it possible to insert a new column between two columns? If not is there another tool such as a table or something I should use, and how do you use it?

    Thank you

    Hi LV.

    Use the Vi 'insert Array"as shown:

    RGS,

    Lucither

  • Related table: space White/Page Question

    I have 2 Questions, they are two associated Table:

    1. in one of my document, an anchor of the Table starts on the new top of the Page, I don't know why (in the paragraph tag, is not defined for anywhere).

    Then the rest of the page is empty and begins on the next page, no Table should be displayed in the next line of the Table anchor?

    2. I also have another table that is several pages long. In this table, some lines are divided between pages (obviously because it is long several page table), however, the top on the Page row 2 (which is only 3 lines) could easily fit on 1 Page (which is half empty), but I don't know why FM8 and FM12 is splitting of lines in this way.

    Any answer will appreciated. Thank you.

    It's probably a combination of widows parameters and the orphans for the rows of the table, and maybe some settings to keep with lines that raises questions. The settings of the widows and the orphans are controlled in the table designer and for keeping with the settings are applied individually to the lines via the menu of Table Format > row suboptions.

Maybe you are looking for