Extraction of data to xml by value

How can I retrieve from an xml value by value?

In this example, I need to extract one by a pair of LABEL / VALUE:
pLABEL = pVALUE 101 = A
pLABEL = 102 pVALUE = B
pLABEL = 102 pVALUE = C
pLABEL = 102 pVALUE = D

If I run the query in this example, I get all the data at once:

ABCD
101102103104

PL/SQL procedure successfully completed

The labels are not always the same.



DECLARE
t varchar2 (1000): =' < tip t = "1" > '
||     ' < info > < label > 101 < / label > < value > < / value > < / info > '
||     ' < info > < label > 102 < / label > < value > B < / value > < / info > '
||     ' < info > < label > 103 < / label > C < value > < / value > < / info > '
||     ' < info > < label > 104 < / label > D < value > < / value > < / info > '
||     "< / Tip >."
v_xml XMLType: = XMLType (t);
r varchar2 (1000);
pLABEL number (10);
VARCHAR2 (10) pVALUE;

BEGIN

Select extract(v_xml,'//tip/info/value/text()').getStringVal () in double r
where existsNode (v_xml, '//tip/info [label = "101"]') = 1;
dbms_output.put_line (substr (r, 1, 255));

Select extract(v_xml,'//tip/info/label/text()').getStringVal () in double r
where existsNode (v_xml, '//tip/info [label = "101"]') = 1;
dbms_output.put_line (substr (r, 1, 255));

END;
/

You will need to use a function to return the nodes of a collection as a set of lines. In 10g, it is table (xmlsequence ()). 11 g, you can use XMLTABLE().

Here is a sample of 10g:

Select
ExtractValue (value (p), "/ info/label") label.
ExtractValue (value (p), "/ info / value ') value
Of
table)
xmlsequence)
extract)
XmlType)
' < Tip t = "1" >
< info > < label > 101 < / label > < value > < / value > < / info >
< info > < label > 102 < / label > < value > B < / value > < / info >
< info > < label > 103 < / label > C < value > < / value > < / info >
< info > < label > 104 < / label > D < value > < / value > < / info >
< / tip > '
)
,'/ / info'
)
)
) p ;

HTH,
Keith

Tags: Database

Similar Questions

  • Extract the plsql nested xml attributes

    Hi, I need to extract xml file and insert 2 oracle tables. The xml file is the use of attributes, and I cannot retrieve the element 'code' nested with its attributes in the context of its parent element 'table '. Here is a sample of the xml data that I have to extract the date:

    <? XML version = "1.0" encoding = "UTF-8"? >
    < dataset - cv:dataset - cv dateProduced = "2011-09-19 11:50:45 ' xmlns:dataset - cv ="http://www.myurl.com/dataset-cv/1.0.0">"
    < lov >
    < id of the table = "00000000000001000" Name = "Role of the system" isSystem = "true" status = "Enabled" >
    < id code = "00000000000000306" Name = "Helpdesk" code = "1" status = "Enabled" / >
    < id code = "000000000000000307" Name = "Reviewer" code = "2" status = "Enabled" / >
    < id code = "00000000000000308" Name = 'Administrator' code = '3' status = "Enabled" / >
    < /table >
    < id of the table = "00000000000002000" Name = 'Country' sSystem 'false' status = "Enabled" = >
    < id code = "000000000000002004" Name = "AFGHANISTAN" code = "4" status = "Enabled" / >
    < id code = "000000000000002008" Name = 'ALBANIA' code = '8' status = "Enabled" / >
    < id code = "000000000000002010" Name = "ANTARCTICA" code = "10" status = "Enabled" / >
    < /table >
    < / lov >
    < / dataset - cv:dataset - cv >

    I have tried to use a query like this but does not retrieve the code attributes in the context of his record in the parent table.

    SELECT ID, Name, frenchname, State, code
    FROM XMLTABLE ('for $i //lov//table return $i"
    In PASSING db_get_xml_from_file ("myfile.xml", "XMLORADIR")
    ID VARCHAR2 COLUMNS (32) PATH '@id '.
    , englishName PATH VARCHAR2 (32) "@englishName".
    , frenchName PATH VARCHAR2 (32) "@frenchName".
    , status VARCHAR2 (6) PATH '@status '.
    code VARCHAR2 (6) path "/ / code / / code");

    Any help will be much appreciated

    Thank you

    Dave

    Hi Dave,.

    Do you want something like this:

    SQL> SELECT x1.id
      2       , x1.englishName
      3       , x1.frenchName
      4       , x1.status
      5       , x2.*
      6  FROM XMLTable(
      7         XMLNamespaces('http://www.myurl.com/dataset-cv/1.0.0' as "dc")
      8       , '/dc:dataset-cv/lov/table'
      9         passing xmltype(bfilename('TEST_DIR','myfile.xml'),nls_charset_id('AL32UTF8'))
     10         columns
     11           id          VARCHAR2(32) path '@id'
     12         , englishName VARCHAR2(32) path '@englishName'
     13         , frenchName  VARCHAR2(32) path '@frenchName'
     14         , status      VARCHAR2(6)  path '@status'
     15         , codes       XMLType      path 'code'
     16       ) x1
     17     , XMLTable(
     18         '/code'
     19         passing x1.codes
     20         columns
     21           codeId          VARCHAR2(32) path '@id'
     22         , codeEnglishName VARCHAR2(32) path '@englishName'
     23         , codeStatus      VARCHAR2(6)  path '@status'
     24         , code            NUMBER       path '@code'
     25       ) x2
     26  ;
    
    ID                               ENGLISHNAME                      FRENCHNAME                       STATUS CODEID                           CODEENGLISHNAME                  CODESTATUS       CODE
    -------------------------------- -------------------------------- -------------------------------- ------ -------------------------------- -------------------------------- ---------- ----------
    00000000000001000                System Role                                                       Enable 00000000000000306                Helpdesk                         Enable              1
    00000000000001000                System Role                                                       Enable 000000000000000307               Reviewer                         Enable              2
    00000000000001000                System Role                                                       Enable 00000000000000308                Administrator                    Enable              3
    00000000000002000                Country                                                           Enable 000000000000002004               AFGHANISTAN                      Enable              4
    00000000000002000                Country                                                           Enable 000000000000002008               ALBANIA                          Enable              8
    00000000000002000                Country                                                           Enable 000000000000002010               ANTARCTICA                       Enable             10
    
    6 rows selected
     
    
  • Need to convert the Varchar2 column number for the extraction of data based on the range of values.

    Hello

    I have a ZIP column which is the Varchar2 data type, it has values such as 2345, 09485, 10900, 07110, 06534.

    I have to go look up records from the range of values for the ZIP column as between 00000 and 07500.

    Could you give a logic.

    Thank you.

    Hello

    I think you can use the following code:

    SELECT T.*

    OF t

    WHERE the to_number (ZIP) between TO_NUMBER('0000') and TO_NUMBER('07500')

    ;

    CGomes

  • Extract ODBC data Long field names

    I need to extract some data created by the 4 lookout data logging (files .thd).  Is it possible to do so. I use a PC that does not have installed belvedere, I only database files

    What I got so far is to export some fields whose names are less than 62 characters (using the program Logos 4.5 and driver ODBC database of 4 of Citadel by strict limitation of the field at 62 names). If I increase the limit to about 100 required to extract all the fields I can't export to Microsoft Query or any other software (which supports the import of ODBC database). I've tried several programs but usually they jump a message you can read that one point in time (or they do not see the fields or values at all)

    Please, can you tell me a way I can extract the data?

    The lifecycle of database is not applied in an aggressive manner. The database do not try and remove data simply because life has expired. On the contrary, the life expectancy is applied only when new data are currently recorded in the database and the log would need to increase the size of the database to store incoming data. The rate at which data are removed from the database may vary according to the rate at which new data are recorded in the database. If the frequency of recording is slow, it may take a long time for the data to be deleted.

    J.D. Robertson

    National Instruments

  • Extracting the data from QVariantMap

    I have the following data :

    QVariant (QVariantMap, QMap ((' data', QVariant (QVariantMap, QMap ((' current_condition', QVariant (QVariantList, ((QVariantMap, QMap... QVariant QVariant (QVariantMap, QMap ((' weather', QVariant (QVariantList, ((QVariantMap, QMap... QVariant QVariant (QVariantMap, QMap ((' weather_desc', QVariant (QVariantList, ((QVariantMap, QMap... QVariant

    m_model-> insert(data.value() .value ("data") .toMap ().value("weather").toList () .at (0) .toMap ());

    Using the above line, I am able to extract relevant data from "current_condition and"weather".

    What should I add to the line above to also extract data from 'weather_desc '?

    Any help would be appreciated. Thank you.

    Thank you! It is much easier to read when formatted, it's the first thing I did.

    { "data":
      {
        "current_condition":
        [
          {
            "cloudcover": "0",
            "humidity": "18",
            "observation_time": "02:36 AM",
            "precipMM": "0.0",
            "pressure": "1007",
            "temp_C": "39",
            "temp_F": "102",
            "visibility": "10",
            "weatherCode": "113",
            "weatherDesc": [ {"value": "Sunny" } ],
            "weatherIconUrl": [ {"value": "http:\/\/www.worldweatheronline.com\/images\/wsymbols01_png_64\/wsymbol_0001_sunny.png" } ],
            "winddir16Point": "N",
            "winddirDegree": "10",
            "windspeedKmph": "46",
            "windspeedMiles": "29"
          }
        ],
        "request":
        [
          {
            "query": "Melbourne, Australia",
            "type": "City"
          }
        ],
        "weather":
        [
          {
            "date": "2013-01-04",
            "precipMM": "0.0",
            "tempMaxC": "37",
            "tempMaxF": "98",
            "tempMinC": "19",
            "tempMinF": "66",
            "weatherCode": "113",
            "weatherDesc": [ {"value": "Sunny" } ],
            "weatherIconUrl": [ {"value": "http:\/\/www.worldweatheronline.com\/images\/wsymbols01_png_64\/wsymbol_0001_sunny.png" } ],
            "winddir16Point": "N",
            "winddirDegree": "3",
            "winddirection": "N",
            "windspeedKmph": "21",
            "windspeedMiles": "13"
          }
        ]
      }
    }
    

    To access weatherDesc in usage by time:

    Data.value.value("data").toMap ().value("weather").toList () .at (0) .toMap ().value("weatherDesc").toList () .at (0) .toMap .value ("value") ())

    This will return "Sunny."

    For readability, I suggest if this string to:

    QMap  dataMap = data.value().value("data").toMap();
    
    QList weatherList = dataMap..value("weather").toList();
    
    QVariant firstWeatherEntry = weatherList.at(0);
    
    QMap weatherEntryMap = firstWeatherEntry.toMap();
    
    QList weatherDescList =
    weatherEntryMap.value("weatherDesc").toList();
    
    QVariant firstWeatherDescEntry = weatherDescList.at(0);
    
    QMap weatherDescEntryMap = firstWeatherDescEntry.toMap();
    
    QString value = weatherDescEntryMap.value("value").toString(); // "Sunny"
    

    Also, you can check intermediate outcomes at each stage by calling

    qDebug()< weatherlist="">< "\n";="" and="" so="">

  • to retrieve data from xml data type

    Hello...
    I have a doubt in the oracle database... Here's how to retrieve data from xml data type?

    Like this...

    SQL> ed
    Wrote file afiedt.buf
    
      1  with t as (select xmltype('
      2  
    3 4 toMonth5 5 ctTestPan1 6 costType2 7 toYear2012 8 fromMonth12 9 fromYear2011 10 11
    ') as xml from dual) 12 -- 13 -- end of sample XMLDATA, use below query on your own table etc. as required 14 -- 15 select x.* 16 from t 17 ,xmltable('/DETAILS/FIELDS_VALUES/FIELD' 18 passing t.xml 19 columns name varchar2(30) path './NAME' 20 ,val varchar2(10) path './VALUE' 21* ) x SQL> / NAME VAL ------------------------------ ---------- toMonth 5 ctTestPan 1 costType 2 toYear 2012 fromMonth 12 fromYear 2011 6 rows selected.
  • Extracting the data from relational tables in 11.1.2.1

    I want to extract the following data sets from relational tables
    1 attribute and his partner basic member
    2 Smartlist value of an account

    Have a code to extract such data? It will be useful in pointing to the correct table names.

    Thank you

    You will find the table schemas in the [documentation for EPMA | http://www.oracle.com/technetwork/middleware/bi-foundation/epm-data-models-11121-354684.zip]. If this does not work, there are other options to export hierarchies in text files. You can use the lifecycle management or the [EPMA line Generator | http://docs.oracle.com/cd/E17236_01/epm.1112/epma_file_gen_user/launch.html].

    Kyle Goodfriend
    http://www.in2hyperion.com

    Please make sure that you assign your post as answered when an appropriate response is provided (or useful when it takes place) as well as other benefits.

  • Graphic design of data sourcing XML from a database

    Hi all

    I try to display a histogram with Source such as an XML that is generated from a database using PHP. Some how I get errors... Is it possible to do that... He... If so how should it be done.

    This table exists in MYSQL

    CREATE TABLE "project1". "bubble_graph")
    Varchar (45) 'Product' NOT NULL default ",
    int (10) 'delivery' unsigned zerofill NOT NULL,.
    int (10) unsigned zerofill NOT NULL ' delay'
    ) ENGINE = InnoDB DEFAULT CHARSET = latin1;


    INSERT INTO bubble_graph VALUES ('IteamA', 20, 2);
    INSERT INTO bubble_graph VALUES ('IteamB', 20, 8);
    INSERT INTO bubble_graph VALUES ('IteamC', 20, 1);
    INSERT INTO bubble_graph VALUES ('IteamD', 20, 6);
    INSERT INTO bubble_graph VALUES ('IteamE', 20, 15);
    INSERT INTO bubble_graph VALUES ('IteamF', 20, 3);
    --------------------------------------PHP----------------code
    <? PHP
    Define ("DATABASE_SERVER", "localhost: 3306 ');
    Define ('DATABASE_USERNAME', 'root');
    Define ("DATABASE_PASSWORD", "yyyyyyy");
    Define ('database_name', 'Project1');

    connect to the database
    $mysql = mysql_connect (' localhost: 3306 ', 'root', 'yyyyyy');

    @mysql_select_db (DATABASE_NAME);

    Returns a list of all users
    $Query = ' select Product, round (delivery) as delivery, round (delay) in the time of bubble_graph ";
    $Result = mysql_query ($Query);

    $Return = "< root >."

    While ($User = mysql_fetch_object ($Result))
    {
    $Return. = "< Data > ';
    $Return. = "< data". " Product =------"". " $User-> product. » \ "> » ;
    $Return. = '< product >. $User-> product. "< / product > ';
    $Return. = "< delivery >." $User-> delivery. "< / delivery > ';
    $Return. "< delay > =. $User-> delay. "< / delay > ';
    $Return. = "< / data > ';

    }
    $Return. = "< / root >;
    mysql_free_result ($Result);
    print ($Return)
    ? >
    ++++++++++++++++++++++++++++++Flex code+++++++++++

    < mx:ColumnChart id = "table" dataProvider = "{results}" showDataTips = "true" width = "513" height = "286" type = "grouped" x = "0" y = "31" >
    < mx:horizontalAxis >
    < mx:CategoryAxis dataProvider = "{results}" categoryField = "Product" / >
    < / mx:horizontalAxis >

    < mx:series >
    < mx:Array >
    < mx:ColumnSeries yField = 'period' name = 'time' / >
    < mx:ColumnSeries yField = 'delivery' name = 'delivery' / >
    < / mx:Array >
    < / mx:series >
    < / mx:ColumnChart >


    Consider this, your code is far away. Your idea is fundamentally correct, but take a look at one, I built. This actauly return xml from a database published on a page and access to the page & data using the correct data aggregate query string values. Look closley the code using im to organize the results.


    http://www.Adobe.com/2006/mxml"layout ="absolute"backgroundGradientColors ="[#ffffff, #ffffff]"currentState ="stSalesByDate">


    Import the required namespaces
    Import mx.controls.Alert;
    import mx.validators.DateValidator

    var ResolveUrl:String = "";

    Initialization function manages the init program
    private function init (): void {}

    ResolveUrl = Application.application.parameters.ResolveUrl;

    }

    Valid entries and fires http service
    private function buildReports (): void {}

    var retVal:Boolean = isValidDates (dateStart.text, dateEnd.text);

    If (retVal == true) {}

    wService.send ();
    currentState = "stSalesResults";

    } else {}

    Alert.Show ("Please enter dates valid.', 'Invalid Date', Alert.OK");

    }

    }

    Manages the State switch Events for new reports
    private function newReport (): void {}

    currentState = "stSalesByDate";

    }

    Date comparison function handles to ensure deadlines are valid
    private void isValidDates(strStart:String,_strEnd:String):Boolean {}

    var blnIsValid:Boolean = false;

    If (strStart.length == 0 | strEnd.length == 0) {}

    blnIsValid = false;

    } else {}

    blnIsValid = true;

    }

    return blnIsValid

    }

    ]]>































    This code is called e4x he treats xml as a native object, search :)

  • Extracts the Date of Date part /Timestamp part

    Hello

    How to extract the party only date without the timestamp value in SQL. For example, from 2008-05-13 01:34:20, I need to extract only the 2008-05-13...


    Thank you...

    Hello

    Try

    Select to_char(SYSTIMESTAMP,'YYYY-MM-DD') DATE_EXT FROM DUAL;
    

    * 009 *.

    Published by: 009 March 14, 2010 23:30

  • SQL Query to retrieve data in XML format with several levels

    Hello

    I'm looking to help generate XML from Oracle database. The request must contain many levels of sub...

    For example.
    Create table inventory
    (Group varchar2 (10))
    category varchar2 (10),
    ProductName varchar2 (10),
    Detail varchar2 (10));

    The output should be also present below. The data must be multiple values for each item.

    < inventory >
    < name of group 'auto' = >
    < category name 'cars' = >
    < name productname = 'Seat' >
    < details > red color < / details >
    < details > 5 seats < / details >
    < / productname >
    < / category >
    < / Group >
    < / inventory >

    Please share your ideas by retrieving data in the XML structure using SQL or PL/SQL for oracle 10 g.

    Thank you and best regards,
    Siva.

    This?

    SQL> create table t as
    with t as (
     select 'automobiles' "GROUP", 'cars' category, 'seat' productname, 'color red' details from dual union all
     select 'automobiles', 'cars', 'seat', '5 seats' from dual union all
     select 'automobiles', 'cars', 'make', 'ford' from dual union all
     select 'automobiles', 'cars', 'make', 'Toyota' from dual union all
     select 'automobiles', 'Bus', 'Model', 'volvo' from dual union all
     select 'automobiles', 'flight', 'Airbus', '400 passenger' from dual union all
     select 'automobiles', 'flight', 'Airbus', '500 mph' from dual union all
     select 'HealthCare', 'Nutrition', 'centrum', 'Organic' from dual union all
     select 'HealthCare', 'Nutrition', 'centrum', 'Chemical' from dual union all
     select 'Computers', 'Software', 'Database', 'Oracle' from dual union all
     select 'Computers', 'Software', 'Database', 'sqlserver' from dual
    )
    select * from t
    /
    Createtable successfully completed.
    
    SQL> select xmlserialize (content x.column_value indent) xml
      from xmltable('element Inventory
                     {for $g in distinct-values(ora:view("t")/ROW/GROUP)
                       return element group
                          {attribute name {$g},
                            for $c in distinct-values(ora:view("t")/ROW[GROUP=$g]/CATEGORY)
                              return element category {attribute name {$c},
                                for $p in distinct-values(ora:view("t")/ROW[GROUP=$g and CATEGORY=$c]/PRODUCTNAME)
                                  return element productname {attribute name {$p},
                                    for $d in distinct-values(ora:view("t")/ROW[GROUP=$g and CATEGORY=$c and PRODUCTNAME=$p]/DETAILS)
                                      return element details {$d}
                                                             }
                                                      }
                          }
                     }') x
    /
    XML
    --------------------------------------------------------------------------------
    
      
        
          
            
    Oracle
    sqlserver
    Chemical
    Organic
    volvo
    Toyota
    ford
    5 seats
    color red
    400 passenger
    500 mph
    1 row selected.
  • Firefox Version 27 Action Menu error in Reporting Services. An error has occurred with the extraction of data.

    Hello, since I've updated for Firefox 27.0.1 on Windows 7, I have a problem with Reporting Services on a Sharepoint site. It is a site of Sharepoint 2010 with SQL Server Reporting Services 2012 Sharepoint integrated mode. I was already on Firefox version 26 and didn't meet with this problem.

    When a report is opened and you use the Actions link on the Reporting Services toolbar, I get the following error messages.

    An error has occurred with the extraction of data. Please, refresh the page and try again.

    I tried updating to the beta version of Firefox 28 but the same error occurs. I see that someone else is having the same problem here. http://SharePoint-community.NET/forum/topics/reporting-service-and-Firefox-27

    Any help would be appreciated. Thank you!

    Ryan

    Firefox version 28.0 has corrected this problem. Thank you!

  • DV7 - 7333cl: how to extract usable data from a bad drive using 22 pins adapter usb to SATA on the new HD

    Greetings HP Forum,

    Recently, I replaced a bad hard drive on my laptop. I need now step by step procedure to extract usable data from the wrong drive using 22 pins adapter usb to SATA on the new HD.

    NOTE: I can't not all data that especially if some of the software downloaded on the replaced disk can be altered. Should I first download Internet Antivirus to protect my new hard drive? I'm not an expert, or even close to this when you work on the back of the laptop, so I'll have to step by step how to download and to partition the data recoverable and software, etc..

    Thanks in advance for your help... I greatly appreciate it!

    See you soon!

    Wes

    It is not complex. Attach the drive to the adapter and connect it to any other computer with good antivirus and antispyware installed. I use Malwarebytes and Avast. When you connect the adapter with the drive connected to the usb port, the drive will appear and it will be assigned a letter maybe E:\ or F:\ or something else. Immediately, he analyzes with the antivirus and anti-spyware. Quarantine or delete any virus or malware it finds. Then, it's just a matter of navigate the disk and copy and paste the contents of the host computer in a directory for this purpose. Obviously, you can copy from documents word, photos, music files, but you cannot copy the applications like Microsoft Word, iTunes. Photoshop.  You may need to take ownership of the files on the old hard drive, but Windows will guide you through this. Don't know what else I can answer.

  • extract table data to different locations

    Hello

    I collected data in the format:

    Temp: 25 Freq: 136 100 99.993 2998,581 0
    Temp: 25 Freq: 136 125,89 125.991 2997,196-0.004
    Temp: 25 Freq: 136 158,48 158.007 - 2995, 1 0.01
    Temp: 25 Freq: 136 199,52 200.002 2991, 905 - 0.019
    Temp: 25 Freq: 155 100 100.005 3000,866 0.003
    Temp: 25 Freq: 155 125,89 126.003 3000,086 0.000
    Temp: 25 Freq: 155 158,48 157.985 2996, 133 - 0.011
    Temp: 25 Freq: 155 199,52 200.018 2992,644-0,021
    Temp: 25 Freq: 174 100 100 3001,405 0.000
    Temp: 25 Freq: 174 125,89 126.016 2997, 996 - 0.010
    Temp: 25 Freq: 174 158,48 158.013 2996,371-0.015
    Temp: 25 Freq: 174 199,52 199.983 2992, 315 - 0,026
    Temp :-30 Freq: 136 100 99.993 2998,581 0
    Temp :-30 Freq: 136 125,89 125.991 2997,196-0.004
    Temp :-30 Freq: 136 158,48 158.007 - 2995, 1 0.01
    Temp :-30 Freq: 136 199,52 200.002 2991, 905 - 0.019
    Temp :-30 Freq: 155 100 100.005 3000,866 0.003
    Temp :-30 Freq: 155 125,89 126.003 3000,086 0.000
    Temp :-30 Freq: 155 158,48 157.985 2996, 133 - 0.011
    Temp :-30 Freq: 155 199,52 200.018 2992,644-0,021
    Temp :-30 Freq: 174 100 100 3001,405 0.000
    Temp :-30 Freq: 174 125,89 126.016 2997, 996 - 0.010
    Temp :-30 Freq: 174 158,48 158.013 2996,371-0.015
    Temp :-30 Freq: 174 199,52 199.983 2992, 315 - 0,026
    Temp: + 70 Freq: 136 100 99.993 2998,581 0
    Temp: + 70 Freq: 136 125,89 125.991 2997,196-0.004
    Temp: + 70 Freq: 136 158,48 158.007 - 2995, 1 0.01
    Temp: + 70 Freq: 136 199,52 200.002 2991, 905 - 0.019
    Temp: + 70 Freq: 155 100 100.005 3000,866 0.003
    Temp: + 70 Freq: 155 125,89 126.003 3000,086 0.000
    Temp: + 70 Freq: 155 158,48 157.985 2996, 133 - 0.011
    Temp: + 70 Freq: 155 199,52 200.018 2992,644-0,021
    Temp: + 70 Freq: 174 100 100 3001,405 0.000
    Temp: + 70 Freq: 174 125,89 126.016 2997, 996 - 0.010
    Temp: + 70 Freq: 174 158,48 158.013 2996,371-0.015
    Temp: + 70 Freq: 174 199,52 199.983 2992, 315 - 0,026

    I am able to extract specific data and establish a curve for the different Freqs (see "extract file_for email.VI pivot table).  I would like to help in order now to a parcel with a fixed frequency but different time (therefore field will be 3 Graphics: 25-30, + 70 for the same word of freq 136).

    Thanks for your help and your time,

    hiNi.

    This code gross works for any number of temperatures and allow for different sizes of each table (say that you measured 3 points to 1, temp and 6 points to another).  I strongly doubt this operation is necessary, but this is how the code works.

    Just drop the and connect the tables correctly loaded from your text file to place the controls in table I used.  (or you can wire up and use it as a subvi).

  • Extraction of data from MS SQL .bak file

    Hi all

    I received a MS SQL .bak file and need to extract the data into it, what should I do to achieve this?

    In addition, what is a bak file? It's a backup for a database file? I remember that I read somewhere that backup database has several different method (for example, the differential backup, the full backup), which will affect the restoration?

    Thank you

    Lee

    Hi Lee

    Your best resource for information is the Forum dedicated to suppoeting SQL.

    Category of the SQL Server:

    http://social.msdn.Microsoft.com/forums/en-us/category/SQLServer

    Concerning

  • DBTools extract element data

    Hello

    Calling a stored procedure from a MS - SQL database 2005, and he returned the 2 dozen fields.  I need to combine the result data in a cluster for my client.

    Its cluster contains booleans, strings and I32s and slna.

    I need to do the same thing, but my data comes from the function "dbtools extract the data of the item.  Problem is that I can't get output anywhere to convert native data types so that the function of the original function of the customer Cluster beam.

    Can someone point me to an example of LV function for this code?  I tried to use the "database of Variant data", but I have not found the magic way to make sure the function bundle sees a native data type.

    Help to LV and this forum are not telling me what I need to know.

    Any help is greatly appreciated!

    Dave

    OK maybe the 'database of Variant data"is most appropriate?

Maybe you are looking for

  • How long does take to install El Capitan?

    Try to install it on my iMac mid-2011, and after about an hour and a half the progress bar has filled only about 10%. What will happen if the installation was interrupted because at this rate, it will take another 13.5 hours to complete just the firs

  • Static VI reference

    I dynamically call a VI so I used the call by reference and dragged the inside VI, the question is if I use the reference open VI or not because I fell twice, handmade VI using the reference open VI the call by reference and the path of the VI of wir

  • DeskJet 2540 is ready, but don't print a Web page

    I got my printer about a week and have used it for all necessary items with no problem until today. I try to print from a Web site that I had NO problem for many years but today, nothing happens. Also, note that anything on the web comes as a PDF fil

  • How reverse "Run As Administrator" with indiv. software?

    A question of NTFS permissions:Can someone tell me the best way to clear the "Run As Administrator" status for the software once it has been power in this way, please? I have Firefox for this (for irrelevant reasons), via the dialog window right clic

  • How can I stop WMP to import .flv files?

    Original title: How can I stop WMP to import .flv files?  Windows media player is important all my .flv files, but when I try to play Windows Media Player currupts and stops working. I deleted the video files .flv twice, but Windows Media Player impo