How to find size of bundle?

hi all,
i am making a vi in which the input is a bundle containing unknown
number of elements (string and double 1d and 2d arrays), i want to
unbundle it and then write in matfile format, i need to know how many
elements and the type of each element and then i can write them using a
for loop and writing for each element.
please give me suggestion how to do it and if somebody has any example please attach.
thank you

Hi,
I'm not sure if you already have the cluster made or not... but an easy way to find and display what is inside, is to right click the cluster icon on the back panel > create > indicator.  This will automatically configure the indicator so that it dispalys everything correctly.
Also if you need to see the elements individually, use the unbundle command.  Again to create indicators for each element of the unbundle, you can right click > create > indicator, like I have shown in the attached image.  This image demonstrates how to create an numeric indicator off of the array size module.
Hope that helps.
Attachments:
cluster.JPG ‏20 KB

Similar Messages

  • How to find size of each RMAN backup

    friends,
    How to find size of each RMAN backup? Everyday we r taking rman hotbackup and need to find size of each day backup? Is there any dba views ?
    Thanks in advance

    Or start rman target / rcvcat rman/rman@catalogdb
    and use the command:
    RMAN> list backup;
    Output should look like:
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    8152318 Full *38.72G* SBT_TAPE 02:05:35 20-APR-09
    BP Key: 8152322 Status: AVAILABLE Compressed: NO Tag: FULL_BK_DB
    Handle: df_WCSPRD_t684630039_s1757_p1 Media:
    List of Datafiles in backup set 8152318
    File LV Type Ckp SCN Ckp Time Name
    1 Full 4657366129868 19-APR-09 /opt/test/db01/system01.dbf
    2 Full 4657366129868 19-APR-09 /opt/test/db01/undotbs01.dbf
    3 Full 4657366129868 19-APR-09 /opt/test/db01/sysaux01.dbf
    4 Full 4657366129868 19-APR-09 /opt/test/db01/users01.dbf
    5 Full 4657366129868 19-APR-09 /opt/test/db01/testc01.dbf
    6 Full 4657366129868 19-APR-09 /opt/test/db01/test01.dbf
    7 Full 4657366129868 19-APR-09 /opt/test/db01/testc02.dbf
    See bold text for backup piece size

  • How to find size of ResultSet in JAVA

    hi ,
    I have one problem... went for sun API but i did not get any solution....please any body help me... my problem is ......
    I got the data from DataBase by executing a query . so my Resultset having some records.Now my problem is how to find the size of ResultSet.without converting into list or without wile loop I want to find out size of my ResultSet
    ..... Is there any predefined method for that;
    thanks in advance

    gbabu wrote:
    hay.... again you are diverting from topic. my problem is how to find resultset size.... not for how to write query for counting records.Of cousre he is. Because the answer to your question is: it can't be done. So he's kindly moved on, and offered you an alternative way to achieve what you want. If that offends you, I suggest you have your head in an uncomfortable and unsuitable orifice
    Why are you so desperate to know the size of the ResultSet anyway? If you've got limits on the size of ResultSet that's acceptable, you can adjust your query to limit the number of rows returned. if you simply need to know how many rows there are, pulling the entire content of the table(s) back and counting them afterwards is horrifically inefficient. If you need to know to so you can prepare a datastructure to put the results in, maybe you've chosen the wrong structure (I'm thinking 'array' here). You might have a legitimate reason to find out the size of a ResultSet, I don't know. But the ResultSet interface doesn't give you that option, so you're on a hiding to nothing, and might as well use the suggested alternative, or reconsider your requirement

  • How to find Size of the fact table?

    hello all
    how do i find out the size of the fact table?
    Is the size of the fact table is same as size of the cube.
    pls let meknow
    regards
    balji

    Hello Balaji,
    To find out size of fact table
    DB02 ->Detailed anaysis -> Fact table name
    It will show you the details.
    The size of cube is not exactly equal to the size of fact table, but usually as fact table is much more larger than dimension tables, fact table size will give you a fair idea about cube size.
    Hope it helps.
    Regards,
    Praveen

  • How to find Size of  Dimension Table

    Hi
      I just need to Find the Size of Dimension Table and Fact Table also .
    Thanks
    Bhanuprakash

    Infocube ->Manage -> Contents -> when it as for table name enter /finfocube name and click on no. of entries you will know how many records are in fact table. if you think the cube is being compressed enter /einfocube name
    for Dimension enter /D dimension name and click on no of entires. you will know how many records are in dimension.
    to know the name of the dimension Infocube ->change -> click on dimensions -> further details about dimensions click on Assign tab
    hope this help!
    Rafi

  • How to find size of the plsql packages

    Oracle : 10.2.0.4
    Os : Solaris
    Issue : DB has around 2000 packages which are in development mode. In case If we want to find the size of all the packages what is the mechanism from the dictionary tables. ?
    Is there way the size is being stored in the dictionary tables ?
    Pl. let me know.

    [email protected] wrote:
    Issue : DB has around 2000 packages which are in development mode. In case If we want to find the size of all the packages what is the mechanism from the dictionary tables. ?
    Is there way the size is being stored in the dictionary tables ?Source code is stored in the dictionary table sys.source$ - it is a very basic table with only 3 columns. OBJ# refers to the object in sys.objects$, LINE is the source code line number and SOURCE contains the line of source code.
    So you can use the LENGTH() function and SUM() that and group by object to get each object's size. But this will be pretty meaningless as source code is not what is loaded and executed - compiled (aka p-code ) is loaded into memory and executed.
    Obviously, more source code means a bigger sys.source$ table - but that is fairly easily addressed by ensuring that the SYSTEM tablespace is large enough.

  • How to find accurate number of Rows, and size of all the tables of a Schema

    HI,
    How to find the accurate number of Rows, and size of all the tables of a Schema ????
    Thanks.

    SELECT t.table_name AS "Table Name",
    t.num_rows AS "Rows",
    t.avg_row_len AS "Avg Row Len",
    Trunc((t.blocks * p.value)/1024) AS "Size KB",
    t.last_analyzed AS "Last Analyzed"
    FROM dba_tables t,
    v$parameter p
    WHERE t.owner = Decode(Upper('&1'), 'ALL', t.owner, Upper('&1'))
    AND p.name = 'db_block_size'
    ORDER by 4 desc nulls last;
    ## Gather schema stats
    begin
    dbms_stats.gather_schema_stats(ownname=>'SYSLOG');
    end;
    ## Gather a particular table stats of a schema
    begin
    DBMS_STATS.gather_table_stats(ownname=>'syslog',tabname=>'logs');
    end;
    http://www.oradev.com/create_statistics.jsp
    Hope this will work.
    Regards
    Asif Kabir
    -- Mark the answer as correct/helpful

  • Command for "How to find Cursor Size" in Oracle Stored Procedure"

    Hi
    Can u tell me....
    How to find Cursor Size" in Oracle Stored Procedure........
    I want command for that........

    why don't you try select count(*) from your_table;That requires running the same query twice - or rather running two different queries twice. Besides it still doesn't guarantee anything, because Oracle's read consistency model only applies at the statement level (unless you're running in a serialized transaction).
    This is such a common requirement - users are wont to say "well Google does it" - it seems bizarre that Oracle cannot do it. The truth is that that Google cheats. Firstly it guesses the number on the basis of information in its indexes and refines the estimate as pages are returned. Secondly, Google is under no onus to kepp all its data and indexes synchronized - two simultaneous and identical queries which touch different Google servers can return different results. Oracle Text works the same way, which is why we can get a count with CTX_QUERY.COUNT_HITS in estimate mode.
    Cheers, APC
    blog: http://radiofreetooting.blogspot.com
    .

  • How to find out the image size?

    How to find out the image size values(Width and height) in illustrator CS3 using any script. I tried but i got only the document height and width. I need to find out the image BoundingBox value of width and height. Kindly advice me.

    Try this.
    tell application "Adobe Illustrator"
    set heightImage to get height of raster item 1 of current layer of current document
    set widthImage to get width of raster item 1 of current layer of current document
    display dialog (heightImage & " X " & widthImage) as string
    end tell
    JaiMS

  • How to find out the size of files transferred over the SQL * Net?

    I am trying to test the Advanced Compress (AC) for 11g Data Guard. When the AC is turned on, the archived log files are supposed to be compressed on the primary database server and sent over SQL*Net, then decompressed on the standby db server. We will see the file sizes are the same on both primary and standby servers. I want to verify that the AC works by monitoring how much data are sent over SQL*Net. Per Oracle, AC uses 35% less of the bandwith. That means the size of the files transferred should be at least 65% of the original size.
    Is there a way to find out the size through Oracle utilities? If not, how to find out by OS utilities? OS is Solaris 5.10.
    Thanks.

    I'm not sure this can be done via SQL*Net, but a network packet sniffer between the two servers should be able to help - you might want to contact your network team.
    HTH
    Srini

  • How to find out the transaction size

    Hai
    Is it possible ,how to find out the size of transaction ?
    Any one idea about this should be appreciated
    Regards
    mohan

    Hai
    Is it possible ,how to find out the size of transaction ?
    Any one idea about this should be appreciated
    Regards
    mohan create a small rollback segment to start with, with small initial and next extent sizes and maxextents unlimited.
    assign this rollback segment to the test session and run the particular transaction.
    query the view v$rollstat to see how much the rollback segment has extended.
    this is roughly your transaction size. this may not accurate but its give you
    a general idea of how much data is generated.

  • File / Folder size... How do Finder gets it?

    Hi there!
    While checking some of my hardrives for sucessfull shell script execution backups, i noticed that Finder took a loooot of time to provide the info about the Folder / File size on the Information window, while a simple ls -l could provide on the fly values regarding file or folder size, as always, fast simple and faithfull unix mindset!
    Well, that makes me wonder, how does Finder calculates those values? Anyone got an hint?
    Does it make it all by himself, if so. WHY? Been an "posix" system, shouldn't he be using whats already provided by its *nix heritage?
    In this case, the value is already there, why don't use it and simply parse it to the desired format (MB / GB / TB)?
    Maybe this could be only one of several features (GUI) that could improve it's performance from being more "conscious" of the system natively provided "toolkit".
    Please, this is only my humble thouhgts on this, and please do shut me up if totally wrong!
    Hope to get some nice and interesting feedback from the OS X community!
    If there's a better spot to start this kind of discussion, please do mention it, i will appreciate it!
    Best regards.

    Properties. Short Cuts, Change Icon resolved the issue after restarting. Problem resolved.. Thank you for all the help Dwain

  • How to find the client size?

    i want to know  how to find the size of the client?

    Hi Gadangi,
    Check OSS note# "118823 - CC-ADMIN: Size of a client".
    Best regards,
    Orkun Gedik

  • How to find the Schema size

    Hi,
    How to find the size of the schema in a daabase.
    Thanks,
    Mahi

    Mahi,
    One more option, though not so clean would be use Data Pump and its estimate file size option for the schema. The estimate would tell you the info about the size of the schema.
    HTH
    Aman....

  • How to find the db size

    Hi ,
    Please tell me how to find the db size.
    Thanks,
    Kumar.

    If I understand correctly, the above query will give the space allocated to the database. This isn't necessarily the same as the space used by the database. Or do I need to clean my glasses ?
    I use the following to get sizes for tablespaces (may need some formatting done - works in 9i and 10g) :
    SELECT
         Total.name "TABLESPACE_NAME",
         total_space "TABLESPACE_SIZE",
         nvl(Free_space, 0) Free_space,
         nvl(total_space-Free_space, 0) Used_space
    FROM
         select
              tablespace_name,
              sum(bytes/1024/1024) Free_Space
         from
              sys.dba_free_space
         group by
              tablespace_name
         ) Free,
         select
              b.name,
              sum(bytes/1024/1024) TOTAL_SPACE
         from
              sys.v_$datafile a,
              sys.v_$tablespace B
         where
              a.ts# = b.ts#
         group by
              b.name
         ) Total
    WHERE
         Free.Tablespace_name(+) = Total.name
    ORDER BY
         Total.name
    ;

Maybe you are looking for

  • Stock in quality inspection

    Hi Gurus, I am getting an issue in Quality inspection stock.The issue is like this . In the last month one inspection lot generated and  without stock posting only UD done. The lot quantity was 33.670 , but when I am checking the quality inspection s

  • Change APEX from HTTP-Server to 11g

    Hello together I installed an Oracle 10gR2 Database and Apex 3.1 is running on the HTTP-Server (from the 10gR2 Companion CD). Now i want to upgrade to 11g and use the embedded PL/SQL Gateway so that i can turn off the HTTP-Server. Have you got any ti

  • Unable to modify or create Protection Groups in DPM 2012 R2 - Error: 31220

    "DPM failed to apply the required policies to this protection group since the recovery point limit for this DPM server has been exceeded. (ID: 31220)" I am trying to add new data sources to our DPM server and continually run into the above message. I

  • How to use native method

    how to use native methods

  • Object file handling giving java.io.StreamCorruptedException

    Hi All, I am storing and retriving objects from a file. but when i write multiple objects then while reading objects from the file its giving java.io.StreamCorruptedExceptionPlease advice. Here's the code import java.io.*; class Person implements Ser