Txt to XML table

I have a table 2D string that I want to put in the XML with the first row (headers) as the tags when its in xml. At the moment when I flattened table, he treats them like any other line and uses own labviews tags. How to separate the first row and make the tags

Looks like you are trying to make your own custom XML schema. If you use the flatten XML functions, the schema XML of LabVIEW is used. It is documented in the help of LabVIEW. If you have LabVIEW 8.6 or later then you can use the functions and XML parser screws to create your own XML file. If you have an earlier version you can use something like LabXML to create your XML file.

Tags: NI Software

Similar Questions

  • Loading the XML in Oracle XML Table/OWB

    Hi gurus,

    Need help to load the XML file into oracle XML table /OWB.

    Here is an example of XML file

    < GEBIZ_PURCHASE_ORDER xmlns = "http://ordabc.xmlbeans.order.importexport.de" >
    < HEADER >
    external < ORDER_CODE > < / ORDER_CODE >
    < EXTERNAL_SYSTEM_CODE > E < / EXTERNAL_SYSTEM_CODE >
    < AMENDMENT_NUMBER > 1 < / AMENDMENT_NUMBER >
    < VARIATION_NUMBER > 1 < / VARIATION_NUMBER >
    document in < DESCRIPTION > < / DESCRIPTION >
    < FINANCIAL_SYSTEM >
    PR < SUB_BUSINESS_UNIT > < / SUB_BUSINESS_UNIT >
    < NFS >
    < COST_CENTER_GROUP > 21 < / COST_CENTER_GROUP >
    < BUYER_CODE > 121 < / BUYER_CODE >
    < FINANCIAL_SYSTEM_ORDER_CODE > 23 < / FINANCIAL_SYSTEM_ORDER_CODE >
    < USER_NRIC > 8 < / USER_NRIC >
    < / NFS >
    < SAP >
    < PURCHASING_GROUP > 3 < / PURCHASING_GROUP >
    < / SAP >
    < / FINANCIAL_SYSTEM >
    < STATUS > ELEMENT < / STATUS >
    < / Header >
    ELEMENTS <>
    < ITEM >
    < LINE_NUMBER > 1 < / LINE_NUMBER >
    the COSTS OF HANDLING < DESCRIPTION > < / DESCRIPTION >
    < UNIT_OF_MEASURE > M < / UNIT_OF_MEASURE >
    < QUANTITY > 12 < / QUANTITY >
    SERVICES < LINE_TYPE > < / LINE_TYPE >
    < UNIT_PRICE > 12 < / UNIT_PRICE >
    < PRICE_UNIT > 12 < / PRICE_UNIT >
    < > 12 TOTAL_AMOUNT < / TOTAL_AMOUNT >
    < STATUS > < / STATUS >
    < / POINT >
    < ITEM >
    < LINE_NUMBER > 2 < / LINE_NUMBER >
    COSTS OF HANDLING CARGO < DESCRIPTION > < / DESCRIPTION >
    < UNIT_OF_MEASURE > M < / UNIT_OF_MEASURE >
    < QUANTITY > 13 < / QUANTITY >
    SERVICES < LINE_TYPE > < / LINE_TYPE >
    < UNIT_PRICE > 14 < / UNIT_PRICE >
    < PRICE_UNIT > 14 < / PRICE_UNIT >
    < > 1200 TOTAL_AMOUNT < / TOTAL_AMOUNT >
    < STATUS > STATUSDELIVERED < / STATUS >
    < / POINT >
    < / OBJECT >
    < / GEBIZ_PURCHASE_ORDER >

    I created the table and the procedure below

    create the table xxpo_estimate_details
    (ORDER_CODE, varchar2 (100),)
    EXTERNAL_SYSTEM_CODE varchar2 (100),
    AMENDMENT_NUMBER varchar2 (100),
    VARIATION_NUMBER varchar2 (100),
    DESCRIPTION varchar2 (100),
    SUB_BUSINESS_UNIT varchar2 (100),
    COST_CENTER_GROUP varchar2 (100),
    BUYER_CODE varchar2 (100),
    FINANCIAL_SYSTEM_ORDER_CODE varchar2 (100),
    USER_NRIC varchar2 (100),
    PURCHASING_GROUP varchar2 (100),
    FS_STATUS varchar2 (100),
    PR_LINE_NUMBER varchar2 (100),
    PR_DESCRIPTION varchar2 (100),
    UNIT_OF_MEASURE varchar2 (100),
    PR_QUANTITY varchar2 (100),
    LINE_TYPE varchar2 (100),
    Unit_price varchar2 (100),
    PRICE_UNIT varchar2 (100),
    TOTAL_AMOUNT varchar2 (100),
    PR_STATUS varchar2 (100));


    declare
    acct_doc xmltype: = xmltype (bfilename('FLAT_FILES','PO_DETAILS_COPY.xml'), nls_charset_id ('AL32UTF8'));
    BEGIN
    insert into xxpo_estimate_details
    (ORDER_CODE,
    EXTERNAL_SYSTEM_CODE,
    AMENDMENT_NUMBER,
    VARIATION_NUMBER,
    DESCRIPTION,
    SUB_BUSINESS_UNIT,
    COST_CENTER_GROUP,
    BUYER_CODE,
    FINANCIAL_SYSTEM_ORDER_CODE,
    USER_NRIC,
    PURCHASING_GROUP,
    FS_STATUS,
    PR_LINE_NUMBER,
    PR_DESCRIPTION,
    UNIT_OF_MEASURE,
    PR_QUANTITY,
    LINE_TYPE,
    UNIT_PRICE,
    PRICE_UNIT,
    TOTAL_AMOUNT,
    PR_STATUS
    )
    SELECT X 1. ORDER_CODE,
    X 1. EXTERNAL_SYSTEM_CODE,
    X 1. AMENDMENT_NUMBER,
    X 1. VARIATION_NUMBER,
    X 1. DESCRIPTION,
    X 1. SUB_BUSINESS_UNIT,
    X 1. COST_CENTER_GROUP,
    X 1. BUYER_CODE,
    X 1. FINANCIAL_SYSTEM_ORDER_CODE,
    X 1. USER_NRIC,
    X 1. PURCHASING_GROUP,
    X 1. STATUS,
    X 2. LINE_NUMBER,
    X 2. DESCRIPTION,
    X 2. UNIT_OF_MEASURE,
    X 2. QUANTITY,
    X 2. LINE_TYPE,
    X 2. UNIT_PRICE,
    X 2. PRICE_UNIT,
    X 2. TOTAL_AMOUNT,
    X 2. STATUS
    FROM XMLTABLE)
    ' / GEBIZ_PURCHASE_ORDER/HEADER.
    passage acct_doc
    header_no of columns for the ordinalite,
    Path of varchar2 (100) ORDER_CODE "ORDER_CODE"
    Path of varchar2 (100) EXTERNAL_SYSTEM_CODE "EXTERNAL_SYSTEM_CODE"
    Path of AMENDMENT_NUMBER VARCHAR2 (100) "AMENDMENT_NUMBER."
    PATH OF VARCHAR2 (10) VARIATION_NUMBER "VARIATION_NUMBER"
    DESCRIPTION VARCHAR2 (100) PATH "DESCRIPTION."
    PATH OF VARCHAR2 (100) SUB_BUSINESS_UNIT "FINANCIAL_SYSTEM/SUB_BUSINESS_UNIT,"
    PATH OF VARCHAR2 (10) COST_CENTER_GROUP "FINANCIAL_SYSTEM/NFS/COST_CENTER_GROUP,"
    PATH OF VARCHAR2 (50) BUYER_CODE "FINANCIAL_SYSTEM/NFS/BUYER_CODE,"
    PATH OF VARCHAR2 (50) FINANCIAL_SYSTEM_ORDER_CODE "FINANCIAL_SYSTEM/NFS/FINANCIAL_SYSTEM_ORDER_CODE,"
    PATH OF VARCHAR2 (50) USER_NRIC "FINANCIAL_SYSTEM/NFS/USER_NRIC,"
    PATH OF VARCHAR2 (50) PURCHASING_GROUP "FINANCIAL_SYSTEM/SAP/PURCHASING_GROUP,"
    PATH VARCHAR2 (50) STATUS 'STATUS '.
    ) X 1,
    XMLTable)
    ' / GEBIZ_PURCHASE_ORDER/ITEMS/ITEM ".
    passage acct_doc
    columns for the ordinalite header_no
    path of columns LINE_NUMBER varchar2 (10) "LINE_NUMBER.
    Path varchar2 (100) DESCRIPTION "DESCRIPTION."
    PATH OF VARCHAR2 (100) UNIT_OF_MEASURE "UNIT_OF_MEASURE"
    PATH VARCHAR2 (10) OF "QUANTITY."
    PATH OF VARCHAR2 (100) LINE_TYPE "LINE_TYPE"
    PATH OF VARCHAR2 (10) UNIT_PRICE "UNIT_PRICE."
    PATH OF VARCHAR2 (10) PRICE_UNIT "PRICE_UNIT"
    PATH OF VARCHAR2 (10) TOTAL_AMOUNT 'TOTAL_AMOUNT ';
    PATH VARCHAR2 (120) STATUS 'STATUS '.
    ) X 2;
    -EXCEPTION
    -WHILE OTHERS THEN
    -DBMS_OUTPUT. PUT_LINE (' ERROR ' |) SQLERRM);
    END;

    When I run the above procedure, it runs successfully but the records charge not in the table.

    When I remove the attribute xmlns = "http://ordabc.xmlbeans.order.importexport.de" and start the process, and then load the records.

    can you please is it possible in the xml file without change? (deletion of the attribute)

    If choose table for loading XML /OWB XML files then what are challeges and challenges we face.

    Add two expressions XMLTable XMLNAMESPACES clause:

    ...
    
    FROM XMLTABLE(
      XMLNamespaces(default 'http://ordabc.xmlbeans.order.importexport.de')
    , '/GEBIZ_PURCHASE_ORDER/HEADER'
    
    ...
    
  • After you generate a table in xml format, how can I save the result in an XML table?

    Hi all
    I used this feature to create a table in the XML schema:
    example:
    SELECT xmlelement ("State", xmlattributes (http://www.opengis.net/gml as "xmlns:gml"),)
    XMLFOREST (name as "Name", "Population" of the population)) of the State;
    result:
    < Statexmlns:gml = "http://www.opengis.net/gml" >
    < name > Wilkopolska < / name >
    the population of 35000 <>< / Population >
    < / state >
    Now I need to insert the result in an XML table, because I need to save the result to use the latter, I hope someone can help, and if there is other way to do this, it would be great.
    Thanks an ot and best regards,
    Lama.

    Just insert in a table...

    insert into t
    SELECT xmlelement("State", xmlattributes( 'http://www.opengis.net/gml' as "xmlns:gml"),
    xmlforest(name as "Name", population as "Population")) from state; 
    

    and a complete example:

    SQL> create table t (test xmltype)
      2  /
    
    Table created.
    
    SQL>
    SQL> create table state
      2  (name varchar2(10)
      3  ,population number
      4  )
      5  /
    
    Table created.
    
    SQL>
    SQL> insert into state values ('WI', 35000)
      2  /
    
    1 row created.
    
    SQL>
    SQL> SELECT xmlelement("State", xmlattributes( 'http://www.opengis.net/gml' as "xmlns:gml"),
      2  xmlforest(name as "Name", population as "Population")) from state; 
    
    XMLELEMENT("STATE",XMLATTRIBUTES('HTTP://WWW.OPENGIS.NET/GML'AS"XMLNS:GML"),XMLFOREST(NAMEAS"NAME",P
    ----------------------------------------------------------------------------------------------------
    WI35000
    SQL>
    SQL> insert into t
      2  SELECT xmlelement("State", xmlattributes( 'http://www.opengis.net/gml' as "xmlns:gml"),
      3  xmlforest(name as "Name", population as "Population")) from state; 
    
    1 row created.
    
    SQL> select *
      2    from t
      3  /
    
    TEST
    ----------------------------------------------------------------------------------------------------
    WI35000
    
  • pdf to txt/html/xml export

    Hello

    I downloaded "acrobat adobe x pro" to try the "save under" / text/xml/htm etc export capability and the result was exactly what I was looking for in terms of production, keeping formatting etc.

    However, I am building an application that need to have a bookcase to the pdf with the conversion of xml/txt/html on the fly keeping the formatting.

    I tried a number of libraries for pdf to xml/txt/html conversion a none of them offer anything near what acrobat from adobe pro x done in terms om keeping format/tables etc.

    So my question is how to get to the "save under" / export feature in adobe acrobat x pro in any library official adobe, sdk, service, product, etc. because I assume that acrobat x pro does not expose an api for the feature to convert or can be used on the server side?

    Best regards

    Rick

    Looks like you want to use Acrobat as a web service. Rather than continue this way, you can see that such use of Acrobat is prohibited under the terms of the license. Thus, it cannot merit to be pursued. Why convert to HTML is a possible question in any case, at least on a regular basis? Occasions, I can understand the need.

    For programmable functions, you should probably check into the SDK forum.

  • Charger xml with sql loader in an xmltype table and show that contain it this XML table

    Hello

    I have a xml document and I want to load in an xmltype table.

    create table foo as xmltype;


    the control file is:


    LOAD DATA
    INFILE
    *
    INTO TABLE foo
    TRUNCATE
    XMLType(XMLDATA)(
    lobfn FILLER CHAR TERMINATED BY
    ',',
    XMLDATA LOBFILE
    (lobfn) TERMINATED BY EOF
    )
    BEGINDATA
    C
    :\Users\xxx\Desktop\file.xml


    now, I want to show the content of the xml file that is loaded at the time of table. How do you?


    select * from foo;   ??


    but this does not show the content of this xml file, but only total, this xml code.



    Thank you

    Hello

    Try to take a look at the Oracle XML SQL functions:

    http://docs.Oracle.com/CD/B28359_01/AppDev.111/b28369/xdb04cre.htm

  • Dreamweaver CC - Responsive Design, XML tables?

    Hi people,

    I created my first web page sensitive. I need to have a simple database that is connected to a web page with a table.

    Q1. XML is the best database to use or is there something more recent that I should look. In the past, I used the spry for this table. How do now?

    I want to be able to sort, filter and search the table.


    Thank you!

    The best medium to long term is to use a database MySQL and PHP as scripting language to communicate with the database.

    When you say you used the Spry tables, I guess you used the SpryXMLDataSet JavaScript object. As far as I know, there is no similar packing available but you can watch http://www.dmxzone.com/go/21863/html5-data-bindings/ for use with a local JSON file.

  • Generate the HTML XML table

    Hi all

    In the Sub function I need to add the HEAD and STYLE for HTML tags, but when I try to encode hard, it, it gives me an error of XML parsing.

    Please can you let me know how I can make?

    < html >

    < head >

    < style >

    table, th, td

    {

    border: 1px solid black;

    border-collapse: collapse;

    }

    < / style >

    < / head >

    < body >

    < table style = ' width: 300px ">

    create or replace FUNCTION get_html_report (p_query IN VARCHAR2) IS BACK CLOB

    ctxh dbms_xmlgen.ctxhandle;

    xslt_tranfsorm XMLTYPE.

    l_mail_body CLOB.

    BEGIN

    ctxh: = dbms_xmlgen.newcontext (p_query);

    -XSLT Transformation to HTML

    xslt_tranfsorm: = NEW XMLTYPE (')

    "< xsl: stylesheet xmlns: xsl ="http://www.w3.org/1999/XSL/Transform"version ="1.0">"

    < xsl: template match = "/ rowset" >

    < table >

    < b >

    < xsl: for-each select = "ROW [1] / *" >

    < th > < xsl: value - of select = "name ()" / > < /th > ""

    < / xsl: foreach >

    < xsl: apply-templates / >

    < /tr >

    < /table >

    < / xsl: template >

    < xsl: template match = "ROW" >

    < tr > < xsl: apply-templates / > < /tr >

    < / xsl: template >

    < xsl: template match = "ROW / *" >

    < style td = "" text-align: left; "" > < xsl: value-of select = "'." / > < table > "

    < / xsl: template >

    (< / xsl: stylesheet > ');

    dbms_xmlgen.setnullhandling (ctxh, dbms_xmlgen.empty_tag);

    dbms_xmlgen.setxslt (ctxh, xslt_tranfsorm);

    l_mail_body: = dbms_xmlgen.getxml (ctxh);

    dbms_xmlgen.closecontext (ctxh);

    RETURN l_mail_body;

    END get_html_report;

    First the function doesn't compile, for this reason:

    Given that the style sheet is declared inline literal string, apostrophes must be escaped, or use double quotes:

    Then you get the actual error:

    LPX-00225: element end tag ' xsl: template ' does not match start tag "html" element

    I find it quite explicit, not you?

    You have not closed theTag:

  • XML-Table, EXPDP data

    Hello

    My environment:


    + Linux Red Hat 5.4 1 / 32 - Bit + company Oracle 10.2.0.4
    + Linux Red Hat 5.4 1 / 64 - Bit + company Oracle 11.2.0.2
    + Taste patterns scott, hr, oe, bi, pm...

    expdp system / * parfile = full.par

    where full.par contains:
    DIRECTORY=EXPDMP
    DUMPFILE=strm.dmp
    LOGFILE=strm.log
    FULL=y
    After the execution
    expdp system/STRM  parfile=full.par FLASHBACK_SCN=9999999
    I got the following error in the log file:
    ORA-39139: Data Pump does not support XMLSchema objects. TABLE_DATA:"OE"."PURCHASEORDER" will be skipped.
    My question:

    How can I export and import this table without losing its structure?

    Thanks in advance and best regards

    hqt200475

    Data Import/Export XML using normal exp/imp utility not datapump.

  • Get unique values from an xml table

    I have an xml file and I would like to create a table of all the unique values of one of its nodes.

    The xml file is called pntxml and the node is pntxml.row.Category where the category is where I would like to create a table of all the unique values.

    I was working through this and would first create an array of all the values in the category in iterating through the xml and pushing these values in a separate table.  When I try to push each entry in a table I get an error or

    TypeError: Error #1009: cannot access a property or method of a null object reference.
    at NAPA_fla::MainTimeline/sortXml()

    var catArray:Array;
    
    function sortXml(event:Event):void{
    for (var i:int = 0; i< pntxml.row.length(); i++){
         tmpCat=pntxml.row[i].Category;
         trace(tmpCat);
            catArray.push(tmpCat);           
    }
    }
    

    Anyone has a suggestion for the best way to get at this problem?

    Thanks in advance,

    Josh

    Your catArray does not exist because you said only she, you have not created an instance of this...

    var catArray:Array = new Array();

  • XML table in INdesign CS3 problem - come as that tables no lines

    Hello

    I create a price list in Indesign CS3 with xml

    everyting is workin except when xml imports, in that it puts the data in the tables not in one separate table.

    I have 5 columns in a table of 1 row. I select the table tag the story, and then select the line & label it row.

    I then select each column & tag part names of individual columns - ProductName, Description, etc.

    This corresponds to the structure of the xml instance file

    <? XML version = "1.0" encoding = "UTF-8" standalone = 'yes' ?>
    - < History >
    - < Line >
    < Category > Acacia Acacia < / category >
    < ProductName > Acacia acinacea < / ProductName >
    < CommonName > WATTLE gold DUST < / CommonName >
    < Description > SME Hardy shrub. Golden Ball blooms from August to December. Suitable for dry or wet, gravelly or sandy soils.  Frost tolerant. </ Description >
    </Row>
    - < Line >
    < Category > Acacia Acacia < / category >
    < ProductName > Acacia baileyana < / ProductName >
    < CommonName > COOTAMUNDRA WATTLE < / CommonName >
    < Description > Evergreen shrub with silvery-gray foliage. Flowers Golden winter, young purple foliage< /Description>
    </Row>
    < /Story >
    < / Root >


    the structure in the display panel is

    Root
    - History 
    -   Row
    Category
    ProductName
    CommonName
    Description
    all the info comes perfectly, but he made a separte for each line instead of a table with a nmuber of information lines

    can anyone help please

    Hi Juliet,.

    Here is the XML for your reference. Simply import the xml file into InDesign and pour the XML in connected text frames, it automatically create the table for you.

    OrderForm.Xml

    
    
    
        Acacia WattlesAcacia acinaceaGOLD DUST WATTLEHardy small-medium shrub. Golden ball flowers August to December. Suitable for dry or moist soils, gravel or sandy soils. Frost tolerant.Acacia WattlesAcacia baileyanaCOOTAMUNDRA WATTLEEvergreen small tree with silvery grey foliage. Golden flowers in winter, young foliage purpleAcacia WattlesAcacia buxifoliaBOX LEAF WATTLEEvergreen medium-tall shrub with bright yellow flowers in spring. Most soils, tolerating dryness & lime.Acacia WattlesAcacia dealbataSILVER WATTLEEvergreen medium tree. Grey fern-like foliage, bright yellow flowers in spring. Clay soils. Tolerates wetness frost & snow.Acacia WattlesAcacia deaniiDEANE'S WATTLEEvergreen small-medium tree. Fern-like foliage, pale yellow flowers in winter. Well drained soils. Tolerates frost & some dryness.Acacia WattlesAcacia decoraWESTERN SILVER WATTLEHardy evergreen dense medium shrub. Masses of yellow flowers August to October. Well drained soils. Tolerates some dryness & lime. Usually frost resistentAcacia WattlesAcacia decurrensGREEN WATTLEEvergreen medium tree. Large fine fern-like foliage, profuse yellow flowers in early spring. Well drained soils. Frost tender when young.Acacia WattlesAcacia doratoxylonCURRAWONGSmall tree or erect shrub. Leaves straight, firm, narrow & dense. Bright golden flowers in spring. Well drained soils. Tolerates drought. Usually frost resistant.Acacia WattlesAcacia flexifoliaBENT LEAF WATTLEEvergreen medium shrub. Light yellow ball flowers winter to spring. Well drained soils. Tolerates some dryness & lime. Usually frost resistant.Acacia WattlesAcacia genistifoliaSPREADING WATTLEEvergreen small to medium shrub. Narrow sharply pointed leaves. Yellow flowers in winter. Moist soils.Tolerates dryness. Usually frost resistant.Acacia WattlesAcacia hakeoidesWESTERN BLACK WATTLEEvergreen medium to tall shrub with dense foliage, yellow flowers in winter. Well-drained soils. Tolerates lime, dryness & frost.Acacia WattlesAcacia implexaHICKORY WATTLEEvergreen medium tree with curved foliage & pale yellow flowers in summer. Well drained soils. Tolerates dryness & frostAcacia WattlesAcacia iteaphyllaFLINDERS RANGE WATTLEEvergreen tall shrub with blue-green foliage. Pale yellow flowers autumn to spring. Well-drained soils. Tolerates lime, salt & drought. Usually frost resistant.Acacia WattlesAcacia lanigeraWOOLLY WATTLESmall to medium hardy shrub with attractive woolly grey-green foliage. Yellow ball flowers autumn to spring. Adapts to most soil types. Tolerates frosts.Acacia WattlesAcacia leucocladaNORTHERN SILVER WATTLEErect shrub or small tree. Glaucous, pinnate leaves. Yellow ball-shaped flowers in spring.  Suited to most soils.Acacia WattlesAcacia mearnsiiBLACK WATTLEEvergreen medium tree. Green fern-like foliage. Creamy yellow flowers in spring-summer. Well drained soils. Tolerates dryness & lime. Usually frost resistant.Acacia WattlesAcacia melanoxylonBLACKWOODEvergreen tree. Deep green foliage. Cream flowers winter-spring. Good plant for moist conditions. Tolerates salt, snow & frost.Acacia WattlesAcacia montanaMALLEE WATTLESpreading medium shrub. Bright yellow balls in spring. Well-drained light to heavy soils. Tolerates dryness & lime. Usually frost resistant.Acacia WattlesAcacia paradoxaKANGAROO THORNPrickly shrub. Gold ball flowers in spring. Well-drained soils. Tolerates dryness, lime & frost.Acacia WattlesAcacia pendulaWEEPING MYALLMedium shrub. Pale lemon flowers in winter. Silvery blue-green weeping foliage. Well-drained soils. Tolerates dryness, lime & salt soils. Usually frost resistant.Acacia WattlesAcacia pravissimaOVENS WATTLEEvergreen small tree with graceful drooping habit. Small yellow flowers in spring. Most soils. Tolerates dryness, lime, frost and snow.Acacia WattlesAcacia pycnanthaGOLDEN WATTLEEvergreen small tree. Deep green foliage. Deep golden flowers in spring. Most soils. Tolerates dryness, lime & salt. Frost tender when young.Acacia WattlesAcacia rubidaRED STEM WATTLEEvergreen tall shrub with light green foliage. Yellow flowers in spring. Most soils. Tolerates dryness & frost.Acacia WattlesAcacia salicinaCOOBA, NATIVE WILLOWEvergreen small-medium tree. Graceful weeping habit. Pale yellow flowers in winter. Most soils. Tolerates drought, lime & salt. Usually frost resistant.Acacia WattlesAcacia stenophyllaRIVER COOBAEvergreen small-medium tree. Handsome pendulous foliage. Yellow flowers autumn-winter. Most soils. Tolerates dryness, lime & salt. Usually frost resistant.Acacia WattlesAcacia vernicifluaVARNISH WATTLEEvergreen medium-tall shrub with handsome foliage. Yellow flowers in spring. Tolerates wetness, dryness, lime & frost.Acacia WattlesAcacia vestitaHAIRY WATTLEEvergreen tall shrub with soft grey-green foliage & yellow flowers in spring. Well drained soils. Tolerates lime & frost.Banksia & BottlebrushBanksia ericifoliaHEATH BANKSIAEvergreen tall shrub. Small leaves, large cones of amber-reddish flowers autumn-winter. Most soils. Tolerates dryness, lime & salt. Usually frost resistant.Banksia & BottlebrushBanksia integrifoliaWHITE HONEYSUCKLEGreenish yellow flowers most of the year, 8 to 15 cm long.  This species varies in size from a shrub to a tree.  It grows on coastal sands and can tolerate severe coastal exposure.Banksia & BottlebrushBanksia marginataSILVER BANKSIAEvergreen tall shrub. Attractive foliage. Cones of yellow flowers in autumn-winter. Most soils. Tolerates wetness, dryness, lime, salt soils, frost & light snow.Banksia & BottlebrushCallistemon brachyandrusPRICKLY BOTTLEBRUSHA useful bottlebrush to plant in streets and gardens in inland areas, and also useful in windbreak plantings in hot dry regions.  The foliage is good refuge of birdlife.Banksia & BottlebrushCallistemon citrinusRED BOTTLEBRUSHLarge shrub with dense foliage massed with crimson flowers in spring/summer.  Most soil type or situation. Tolerates wetness, dryness, lime & salt soils.Banksia & BottlebrushCallistemon pallidusLEMON BOTTLEBRUSHMedium to tall shrub with attractive foliage & lovely lemon flowers in spring/summer. Excellent water absorber. Moist soils. Tolerates light snow & frost.Banksia & BottlebrushCallistemon salignusWILLOW BOTTLEBRUSHHardy large shrub with dense foliage massed with lemon flowers in spring-summer.  Attractive white papery bark. Moist soils. Full sun. Frost tender when young.Banksia & BottlebrushCallistemon seiberiRIVER BOTTLEBRUSHHardy, quick growing tall shrub. Likes moist/well-drained soils but tolerates boggy wet conditions. Cream to pale pink flowers during spring & autumn. Banksia & BottlebrushCallistemon speciosusSHOWY BOTTLEBRUSHLong spikes of deep red, gold-tipped flowers in spring.  This species is one of the most attractive of all bottlebrushes.Banksia & BottlebrushCallistemon pityoidesALPINE BOTTLEBRUSHShrub with silvery-grey new growth and yellow or cream flowers. Suitable for alpine, subalpine and tablelands. Tolerates periodically wet ground.  Frost tolerant.Banksia & BottlebrushCallistemon viminalisWEEPING BOTTLEBRUSHSmall to medium tree with narrow leaves & rich red flowers in spring. Good water absorber. Tolerates lime & salt soils. Frost tender when young.Banksia & BottlebrushCallistemon Captain CookDWARF WEEPING BOTTLEBRUSHHardy small-medium shrub. Lots of bright red flowers in spring/summer & autumn. Grows better in moist soils and sun. Tolerates light frost. Prune after floweringKunzea, Melaleuca & LeptospermumMelaleuca armillarisBRACELET HONEY MYRTLETall spreading shrub.  Narrow dark-green leaves. Small white bottle brush flowers. Windbreaks. Any soil. Tolerates dryness, lime & salt.Kunzea, Melaleuca & LeptospermumMelaleuca decussataCROSS LEAF HONEY MYRTLEMedium-tall shrub. Small narrow leaves, short mauve-pink bottlebrush flowers in spring-summer. Any position. Tolerates lime, salt & frost.Kunzea, Melaleuca & LeptospermumMelaleuca ericifoliaSWAMP MELALEUCAA dense, bushy coastal shrub, that loses its lower branches at maturity to expose layers of pale, corky bark.Will tolerate wet, swampy, poorly drained and saline sites.Kunzea, Melaleuca & LeptospermumMelaleuca halmaturorumSALT PAPERBARKLarge shrub to small tree. Small dark-green leaves, profuse white flowers in spring. Any soil. Tolerates wetness, dryness lime & salt soil. Kunzea, Melaleuca & LeptospermumMelaleuca incanaGREY HONEY MYRTLEMedium-tall shrub with soft grey-green leaves. Yellowish-green flowers in spring. Most soils. Tolerates wetness, dryness & lime.Kunzea, Melaleuca & LeptospermumMelaleuca lanceolata MOONAHTall shrub or small tree. Deep green or grey-green leaves. White flowers spring-summer. Any soil. Tolerates wetness, drought, lime & salt.Kunzea, Melaleuca & LeptospermumMelaleuca lateritiaROBIN RED BREASTMedium shrub with narrow leaves & bright orange-red bottlebrush-like flowers. Any soil. Tolerates wetness, dryness & lime. Usually frost resistant.Kunzea, Melaleuca & LeptospermumMelaleuca linarifoliaSNOW IN SUMMERBushy tree with attractive foliage, lovely paperbark trunk. Conspicuous white flowers in early summer. Most soils. Tolerates wetness, dryness, lime & salt.Kunzea, Melaleuca & LeptospermumMelaleuca stypheloidesPRICKLY LEAF PAPERBARKMedium-tall tree with paperbark trunk. Small pointed green leaves, cream flowers in summer. Any soil.  Tolerates wetness, dryness, lime, salt soil & frost.Kunzea, Melaleuca & LeptospermumKunzea ambiguaWHITE KUNZEAEvergreen large shrub. White flowers in profusion in spring & summer. Well-drained soil. Tolerates dryness & lime. Usually frost resistant.Kunzea, Melaleuca & LeptospermumKunzea ericoidesBURGANEvergreen large shrub with massed fluffy white flowers along arching branches in spring-summer. Well-drained soils. Tolerates wetness, light snow & frostKunzea, Melaleuca & LeptospermumKunzea parvifloraVIOLET KUNZEAEvergreen medium shrub with fine aromatic foliage & massed pinky-mauve pompom flowers in spring-summer. Mois well-drained soils. Tolerates wetness & frost.Kunzea, Melaleuca & LeptospermumLeptospermum brevipesSLENDER TEA-TREESpreading shrub with white flowers in spring-summer. Suitable for screening. Purplish new growth. Well-drained soil. Frost resistant.Kunzea, Melaleuca & LeptospermumLeptospermum continentalePRICKLY TEA-TREEUpright prickly shrub with white flowers in spring-summer. Moist soil. Tolerates frost & extended dry periods.Kunzea, Melaleuca & LeptospermumLeptospermum obovatumRIVER TEA-TREEErect shrub with creamy flowers during spring and summer. Moist well-drained soil. Frost resistantKunzea, Melaleuca & LeptospermumLeptospermum scopariumPINK TEA-TREEPink flowering with narrow prickly leaves.  It will tolerate both dry and poorly drained sites.  The showy, pink flowers are especially valuable for autumn and winter display.Grevilleas & OrnamentalCalytrix tetragonaCOMMON FRINGE MYRTLEBushy medium shrub with aromatic green leaves. Flowers cream to pink, mainly in spring. Well-drained soils. Frost & drought tolerant.Grevilleas & OrnamentalCorrea albaWHITE CORREAEvergreen samll shrub with white star flowers and round leaves.  Flowers for most of the year. Frost resistant.Grevilleas & OrnamentalCorrea pulchellaDEEP PINK CORREAHardy compact small shrub. Deep green foliage massed withGrevilleas & OrnamentalCorrea reflexa COMMON CORREABushy medium shrub with aromatic green leaves. Flowers cream to pink, mainly in spring. Well-drained soils. Frost & drought tolerant.Grevilleas & OrnamentalEremophila glabraGREY EMU BUSHEvergreen small shrub with grey foliage. Greenish flowers in spring-summer. Very hardy. Well-drained soil.Grevilleas & OrnamentalEremophila sspVARIOUS VARIETIESPlease enquire about our varieties of EremophilaGrevilleas & OrnamentalGrevillea Clearview DavidGREVILLEA 'CLEARVIEW DAVID'Evergreen dense medium shrub. Very vigorous growth. Masses of bright-red spider flowers during winter and spring. Well-drained soil, full sun. Frost resistant.Grevilleas & OrnamentalGrevillea alpinaALPINE GREVILLEAEvergreen small shrub with grey-green foliage.  Well drained soil. Tolerates frost and extended dry periods. Attractive pink flowers are a nectar-source for native birds.Grevilleas & OrnamentalGrevillea lanigeraWOOLLY GREVILLEAEvergreen small-medium shrub. Lime green flowers in winter & spring. Moist, well-drained soil. Frost resistant.Grevilleas & OrnamentalGrevillea rosmarinifoliaROSEMARY GREVILLEAHardy quick growing dense shrub, dark-green pointed leaves. Pinkish-red flowers most of the year. Well-drained soil, full sun. Frost tolerant. Good screen plant.Grevilleas & OrnamentalHibbertia obtusifoliaGREY GUINEA FLOWERSmall spreading prostrate shrub with masses of bright yellow flowers in spring & summer. Well-drained soil in some shade. Usually frost resistant.Grevilleas & OrnamentalMyoporum parvifloliumCREEPING BOOBIALLAAttractive ground cover with white flowers in spring. Sunny position. Most soils. Tolerates dryness, lime & frost.Grevilleas & OrnamentalWestringia fruticosa(white or blue)NATIVE ROSEMARYRounded medium shrub with grey leaves. White or blue flowers spring-summer. Very hardy in most situations. Useful screen plant.Saltbush & Understorey Daviesia latifoliaHOP BITTER PEAOpen straggly shrub with ovate leaves. Yellow & brown pea flowers in spring. Very hardySaltbush & Understorey Dillwynia retortaSMALL LEAF PARROT-PEAVariable upright or prostrate shrub with yellow & red pea flowers in spring-summer. Well-drained soil. Frost tolerant.Saltbush & Understorey Dillwynia sericeaSHOWY PARROT-PEAUpright shrub with sticky hairy stems, copious yellow & red pea flowers in spring-summer. Well-drained soil. Tolerates frost.Saltbush & Understorey Mirbelia oxylobioidesMOUNTAIN MIRBELIAOpen branched shrub with small leaves.  Orange-yellow pea flowers in late spring. Well-drained soil, semi shade. Drought & frost tolerant.Saltbush & Understorey Pultenaea foliolosaBUSH PEASmall leafed shrub with yellow-orange flowers in spring.  Well drained soil. Drought & frost tolerant.Saltbush & Understorey Pycnosorus globosusDRUMSTICKSRobust perennial with woolly, silvery leaves. Tall globular yellow flower heads appear in spring & summer. Hardy, sunny situation, most soils.Grevilleas & OrnamentalCorrea reflexa var.CORREASpreading or erect shrub with round dull-green leaves. Green or red & green bell shaped flowers from autumn-spring. Hardy plant. Likes well-drained soi.Saltbush & Understorey Atriplex nummulariaOLD MAN SALTBUSHDense, large, grey shrub with whitish, branches. Frost and salt tolerant and withstands severe drought and long periods of shallow flooding. Excellent fodder plant.Saltbush & Understorey Chenopodium nitrariaceumNITRE GOOSEFOOTSpiny, greyish shrub, with slender branches and thick, green leaves. Drought and saline soil tolerant and can withstand extended period of complete inundation.Saltbush & Understorey Enchylaena tomentosaRUBY SALTBUSHAttractive, excellent container plant with succulent red berries. Tolerates drought, frost and some salinity.Saltbush & Understorey Maireana decalvansBLACK COTTONBUSHGood coloniser on heavy soils.  Tolerates salinity to some degree.  Rarely grazed by stock.Saltbush & Understorey Rhagodia spinescensTHORNY SALTBUSHBranches rigid and often ending in a spine.  Leaves oblong and greensh or mealy white.  Fruit a deep red berry.  Useful for colonising saline scalds.Saltbush & Understorey Bursaria lasiophyllaHAIRY BURSARIAPrickly evergreen tall shrub with small leaves, masses of small white flowers in spring. Most soils. Tolerates dryness, lime & frost.Saltbush & Understorey Bursaria spinosaSWEET BURSARIAPrickly evergreen tall shrub with small leaves, masses of small white flowers in spring. Most soils. Tolerates dryness, lime & frost.Saltbush & Understorey Cassina aculeataCOMMON CASSINIATall shrub. Small creamy white flowers in dense heads spring-summer. Rough needle leaves. Most moist soils. Some shade. Frost resistant.Saltbush & Understorey Cassinia longifoliaSHINY CASSINIAOpen rounded bush.  Off-white flower heads in summer. Drought & frost tolerant.Saltbush & Understorey Daviesia latifoliaHOP BITTER PEAOpen shrub, broad dull green leaves. Flowers are orange-yellow with dark reddish markings. Adaptable to most well drained soils.Saltbush & Understorey Daviesia mimosoidesNARROW LEAF BITTER PEABroom like erect shrub with dull yellow green linear leaves. Yellow and red-brown/orange pea flowers.  Well drained soils. Tolerates frost.Saltbush & Understorey Dillwynia juniperinaPRICKLY PARROT PEAErect prickly shrub. Rigid narrow leaves. Flowers are golden yellow with red. Well drained soils.Saltbush & Understorey Dillwynia retortaSMALL LEAF PARROT-PEAWell drained light to medium soils. Tolerates frost. Flowers yellow and red.Saltbush & Understorey Dillwynia sericeaSHOWY PARROT-PEAEvergreen small suckering shrub with serrated foliage. Many mauve-pink star shaped flowers during summer. Suitable ground cover for rockeries. Most soil.Saltbush & Understorey Dodonea visc.ssp. angustissimaNARROW LEAF HOP BUSHEvergreen large shrub with purplish-green leaves & yellow-red hop-like fruits. Well-drained soil. Tolerates drought & frost.Saltbush & Understorey Dodonea viscosa ssp. cuneataWEDGE LEAF HOP BUSHEvergreen medium shrub with colourful bronze hop-like fruits. Well-drained soils. Tolerates drought & frost.Saltbush & Understorey Hakea laurinaPINCUSHION HAKEAA bushy, ornamental, small tree with a compact, rounded crown and globular clusters of beautiful red and yellow flowers.  It is suitable to most well drained soils.Saltbush & Understorey Hakea tephrospermaHOOKED NEEDLEWOODPendulous shrub with white flowers in axillary clusters in early spring. Hardy.Saltbush & Understorey Indigofera adesmiifoliaTICK INDIGOEvergreen medium shrub with fern-like leaves. Flowers similar to I. australis but with shorter stems. Well-drained soil. Usually frost resistant.Saltbush & Understorey Indigofera australisAUSTRAL INDIGOEvergreen medium shrub with fern-like leaves. Sprays of pink or mauve flowers in winter & spring. Well-drained soil. Usually frost resistant.Saltbush & Understorey Pultenaea foliolosaBUSH PEAErect to spreading shrub, with small leaves. Good habitat.  Flowers are a nectar source for native wasps and bees.Saltbush & Understorey Pycnosorus globosusDRUMSTICKSErect, perennial herb, has a few unbranched woolly stems.  Basal rosette of a few linear, white-grey leaves. Flowers a globular head, bright yellow.Saltbush & Understorey Senna artemisiodesSILVER CASSIARounded small-medium shrub with silvery-grey leaves. Yellow flowers for many months in spring, summer & autumn.  Very hardy. Tolerates light frost.Saltbush & Understorey Arthropodium strictumCHOCOLATE LILLYTuberous plant with grass-like leaves. Attractive, delicate, frangrant mauve flowers. Full-sun position in most soilsSaltbush & Understorey Bracteantha viscosaSTICKY EVERLASTINGErect sticky herb with branching stems. Yellow flowers with papery bracts in spring & summer. Most soils. Usually annual herb.Saltbush & Understorey Isomtoma axillarisSHOWY ISOTOMEEvergreen small suckering shrub with serrated foliage. Many mauve-pink star shaped flowers during summer. Suitable ground cover for rockeries. Most soil.Grasses and Groundcovers Carex appressaSEDGEA tussocky, rush-like perennial grass.  Suited to poorly-drained areas along watercourses & swamp margins.Grasses and Groundcovers Danthonia ssp.WALLABY GRASSA tufted perennial grass with fine leaves. Remains green throughout the yearGrasses and Groundcovers Chloris truncataWINDMILL GRASSForms a dense low crown of small fibrous leaves. Distinctive flower spike, late winter to summer.Grasses and Groundcovers Juncus sspRUSHESAn erect or spreading tussocky herb. Suited to wet or seasonally wet areas. Common on clays & clay loams.Grasses and Groundcovers Microleana stipoidesWEEPING GRASSA tufted perennial grass with short rhizome. Remains green throughout the year.Grasses and Groundcovers Phragmites australisCOMMON REEDSemi-aquatic, bamboo-like perennial grass with strongly creeping rhizomes. Suited to seasonally wet areas, marshes, lagoons & creeksGrasses and Groundcovers Poa labillardiereiTUSSOCK GRASSDense, tussocky perennial grass, slender leaves. Generally occurs in areas of medium-high fertility, on valley floors of areas wet in winter.Grasses and Groundcovers Poa sieberianaSNOW GRASSTussocky perennial grass with fine, grey-green leaves. Occurs on mid slopes to ridges of well- drained areas.Grasses and Groundcovers Themeda triandraKANGAROO GRASS A drought-resistant, deep-rooted, warm season perennial grass with a tussocky habit.Grasses and Groundcovers Arthropodium strictumCHOCOLATE LILLYTufted perennial herb white to pale blue fragrant flowers. Tolerates frost.Grasses and Groundcovers Bracteantha viscosaSTICKY EVERLASTINGErect, sticky, usually annual herb.  Usually multifbranced, with yellow flowers "paper" flowers in spring.Grasses and Groundcovers Bulbine bulbosaBULBINE LILYSmall tufted perennial herb.  Thick roots and succulent strap like leaves.Grasses and Groundcovers Chrysocephalum apiculatumYELLOW BUTTONSProstrate suckering herb. Silvery-grey, hairy leaves. Clusters of heads of bright yellow flowers in spring & summer. Frost hardy.Grasses and Groundcovers Chrysocephalum semipapposumCLUSTERED EVERLASTINGVariabe aromatic perennial herb. Clusters of heads of bright yellow flowers in summer. Hardy.Grasses and Groundcovers Dianella longifoliaSMOOTH FLAX LILLYTufted matt forming herg. Strappy leaves. Pale blue flowers with yellow anthers in spring-summer. Drought & frost tolerant.Grasses and Groundcovers Dianella revolutaSPREADING FLAX-LILLYTufted matt forming herb. Strappy leaves. Dark blue flowers with black anthers. Moist, well-drained soils. Drought & frost tolerant.Grasses and Groundcovers Glycine clandestinaTWINING GLYCINENon-vigorous twining plant with clusters of mauve-purple wisteria flowers in spring. Requires moist, protection situation. Tolerataes dryness & light frost.Grasses and Groundcovers Hardenbergia violaceaHAPPY WANDERERClimbing or prostrate. Green leathery leaves  and purple flowers in spring.  Attractive ornamental for rockeries, embankments, under trees. Hardy, fast growing.Grasses and Groundcovers Isotoma auxillarisSHOWY ISOTOMELow bush perennial herb.  Bright blue to mauve flowers. Attractive ornamental for rockeries. Milky sap can irritate skin and eyes.Grasses and Groundcovers Lomandra longifoliaSPINY HEADED MAT RUSHTufted perennial herb with leaves 50-100cm.  Creamy or yellow strongly honey-scented flowers in spring.Grasses and Groundcovers Hardenbergia violaceaPURPLE CORAL PEAEvergreen trailer or low climber. Purple pea flowers in winter & spring. Well-drained soil. Tolerates dryness, lime & light frost.Eucalyptus treesEucalyptus albensWHITE BOXTall tree with spreading crown. Ornamental, shade, shelter, honey. Well-drained soil. Tolerates dryness & lime. Usually frost resistantEucalyptus treesEucalyptus blakelyiBLAKELY'S RED GUMTall tree. Smooth mottled bark. Ornamental, shelter & honey. Prefers deep loam soil. Tolerates dryness, lime, frost, winter waterloggingEucalyptus treesEucalpytus botryoidesSOUTHERN MAHOGANYTall tree with spreading branches. Rough fibrous bark. Most soils. Tolerates dryness, lime, salt soil. Frost tender when young.Eucalyptus treesEucalyptus bridgesianaAPPLE BOXTall tree suitable for shade & shelter. Moderately drought resistant. Well drained soil. Usually frost resistant.Eucalyptus treesEucalyptus caesiaSILVER PRINCESSOrnamenal small tree with glaucous foliage. Clusters of large deep pink flowers in winter & spring.Eucalyptus treesEucalyptus camaldulensis RIVER RED GUMFast growing large shade tree. Adapable most conditions. White or blotched trunk. Frost tender when young.Eucalyptus treesE.camaldulensis subcinereaSILVERTON RED GUMTall tree with large shady crown. Suitable for river banks, creeks & heavy soils with adequate water supply. Frost tender when young.Eucalyptus treesEucalyptus camphoraMOUNTAIN SWAMP GUMLarge tree with spreading crown. Shade, shelter, ornamental purposes. Suits, damp & cold situations, heavy soils. Tolerates snow & frost.Eucalyptus treesEucalyptus cinereaARGYLE APPLESmall-medium tree with blue-grey foliage. Ornamental shade tree. Most soils. Tolerates dryness & lime. Usually frost resistant.Eucalyptus treesEucalyptus citriodoraLEMON-SCENTED GUMTall slender tree, striking lemon scented foliage. Highly ornamental. Well drained soil. Tolerates dryness & lime. Frost tender when young.Eucalyptus treesEucalyptus cladocalyx SUGAR GUMTall tree with spreading crown. Suitable for shelter & shade. Well drained soil. Tolerates drought & lime. Frost tender when young.Eucalyptus treesEucalyptus cladocalyx nanaDWARF SUGAR GUMSmall bushy tree that withstands dry conditions & excessively alkaline soils. Well drained soil. Tolerates salt soils. Usually frost resistant.Eucalyptus treesEucalyptus crenulataSILVER GUMSmall to medium tree. Roundish silvery foliage. Suitable to cool & sub-alpine climates.  Ornamental.  Moist soil. Tolerates lime, light snow & frost.Eucalyptus treesEucalyptus dealbataHILL RED GUMSmall to medium straggly tree. Dusky green foliage. Suitable for shade, windbreak, honey. Well-drained soil. Tolerates drought & lime. Usually frost resistant.Eucalyptus treesEucalyptus divesBROAD LEAF PEPPERMINTSpreading small-tall tree. Suitable for shelter or shade, cool climates, well-drained soil. Tolerates dryness & snow. Usually frost resistant.Eucalyptus treesEucalyptus eximiaYELLOW BLOODWOODMedium tree with dense, blue-green foliage. Sandstone or well-drained soils. Ornamental. Tolerates dryness & lime. Frost tender.Eucalyptus treesEicalyptus eximia nanaDWARF YELLOW BLOODWOODSmall tree with dense, blue-green foliage. Tolerates wide range of soils. Ornamental. Frost tender.Eucalyptus treesEucalyptus ficifoliaSCARLET FLOWERING GUMSmall to medium tree with dark green foliage & striking orange-deep red flowers in summer. Well-drained soil. Tolerates dryness. Frost tender when young.Eucalyptus treesEucalyptus globulusBLUE GUMTall tree with smooth grey, tan & white bark, sheds in ribbons. Suits open areas with available moisture. Very fast growing. Tolerates salt soil & frost.Eucalyptus treesEucalyptus goniocalyxLONG LEAF BOXMedium to large tree with spreading branches. Suitable for shade & shelter. Drought resistant. Well-drained soil. Tolerates lime. Usually frost resistant.Eucalyptus treesEucalyptus lansdoweanaCRIMSON MALLEESmall trees or mallee with dark green leaves. White or purplish flowers in summer. Well-drained soil. Tolerates drought. Usually frost resistant.Eucalyptus treesEucalyptus largiflorensBLACK BOXLarge spreading tree with rough bark. Suitable for shelter & shade. Most soils, watercourse or flood plains. Tolerates lime & salt soil. Usually frost resistant.Eucalyptus treesEucalyptus leucoxylon var.megla.LARGE POD YELLOW GUMSmall to medium tree with smooth yellowish bark & grey-green leaves. Cream to deep pink flowers in spring. Highly ornamental. Frost tolerant.Eucalyptus treesEucalyptus leucoxylon var.roseaYELLOW GUM Small to medium tree with yellowish bark & grey-green leaves. Red flowers in spring. Highly ornamental. Frost tolerant.Eucalyptus treesEucalyptus macarthuriiPADDY'S RIVER BOXTall tree with white flowers in autumn. Ideal shade & shelter tree. Moist, well-drained soil. Frost resistant.Eucalyptus treesEucalyptus macrorhynchaRED STRINGY BARKMedium tree suitable for windbreaks & woodlots in good to poor soils. Tolerates light snow & frost.Eucalyptus treesEucalyptus maculataSPOTTED GUMTall ornamental tree with dappled light coloured bark. Most soils. Tolerates lime & salt soil. Frost tender when young.Eucalyptus treesEucalyptus manniferaRED SPOTTED GUMMedium to tall tree with smooth white bark changing to orange red before shedding. Sparse crown.  For well-drained poorer soils including clays. Frost resistant.Eucalyptus treesEucalyptus melliodoraYELLOW BOXMedium-tall graceful tree, bluish-green leaves. Shade, shelter, honey, ornamantal. Well-drained soil. Tolerates dryness, lime & salt soil. Usually frost resistantEucalyptus treesEucalyptus microcarpaGREY BOXMedium-large tree suitable for windbreak & general purpose planting. Heavy clay to well-drained soils. Tolerates drought, lime, salt soil & frost.Eucalyptus treesEucalyptus nicholliSMALL LEAVED PEPPERMINTSmall-medium graceful tree with narrow leaves. Shade, shelter, ornamental.  Well-drained soil. Tolerates dryness, lime & frost.Eucalyptus treesEucalyptus nortoniiSILVER BUNDYHandsome medium to tall ornamental tree with silvery foliage & rough bark. Striking silver-white buds & nuts. Well-drained soil. Usually frost resistant.Eucalyptus treesEucalyptus ovataSWAMP GUMMedium-tall moisture loving tree.  Good for poorly drained soils.  Smooth white trunk. Frost tolerant. Good tree for cool districts. Water absorber.Eucalyptus treesEucalyptus paucifloraWHITE SALLEESmall-medium tree for shade & shelter in higher altitudes. Beautiful trunk. Moist, humus-rich soils. Tolerates snow & frost. Suitable erosion control in alpine areasEucalyptus treesEucalyptus polyanthemosRED BOXMedium to tall tree with grey-green foliage. Shelter, honey, ornamental. Well drained soil. Tolerates dryness, lime & frost.Eucalyptus treesEucalyptus platypusROUND LEAVED MORTA  medium tree with a rounded, compact, bushy crown of thick, leathery leaves, which persist close to the ground. White flowers. Suitable for heavy and poorly drained soils as well sandy loams.Eucalyptus treesEucalyptus radiataNARROW LEAVED PEPPERMINTMedium-tall graceful tree, bluish-green leaves. Shade, shelter, honey, ornamantal. Well-drained soil. Tolerates dryness, lime & salt soil. Usually frost resistantEucalyptus treesEucalyptus rossiiSCRIBBLY GUMMedium-large tree suitable for windbreak & general purpose planting. Heavy clay to well-drained soils. Tolerates drought, lime, salt soil & frost.Eucalyptus treesEucalyptus rubidaCANDLEBARK GUMSmall-medium graceful tree with narrow leaves. Shade, shelter, ornamental.  Well-drained soil. Tolerates dryness, lime & frost.Eucalyptus treesEucalyptus salignaSYDNEY BLUE GUMHandsome medium to tall ornamental tree with silvery foliage & rough bark. Striking silver-white buds & nuts. Well-drained soil. Usually frost resistant.Eucalyptus treesEucalyptus salmonophloiaSALMON GUMMedium-tall moisture loving tree.  Good for poorly drained soils.  Smooth white trunk. Frost tolerant. Good tree for cool districts. Water absorber.Eucalyptus treesEucalyptus sargentiiSARGENT MALLETSmall-medium tree for shade & shelter in higher altitudes. Beautiful trunk. Moist, humus-rich soils. Tolerates snow & frost. Suitable erosion control in alpine areasEucalyptus treesEucalyptus scopariaWILLOW GUMMedium to tall tree with grey-green foliage. Shelter, honey, ornamental. Well drained soil. Tolerates dryness, lime & frost.Eucalyptus treesEucalyptus sideroxylonRED IRONBARKMedium ot tall spreading tree. Suitable for windbreak & shade. Likes moist well-drained soil. Tolerates dryness & light snow. Usually frost resistant.Eucalyptus treesEucalyptus sideroxylon roseaPINK FLOWERING IRONBARKTall tree with clean grey-white trunk & characteristic scribbles on the bark. Well drained soil. Tolerates dryness & light snow.  Usually frost resistant.Eucalyptus treesEucalyptus stellulataBLACK SALLEESmall to medium tree with smooth greenish-white bark. Shade & shelter. Suitable for cold, wet, exposed sites. Moist, well-drained soil. Tolerates snow & frost.Eucalyptus treesEucalyptus torquataCORAL GUMTall straight tree with bluish-white bark. Suitalble for timber & shade. Ornamental. Well-drained soil. Tolerates lime. Usually frost resistant.Eucalyptus treesEucalyptus viminalisRIBBON GUMTall tree with smooth bark shedding in ribbons. Shade & shelter. Moist well-drained soil. Tolerates snow & frost. Koala food tree.Eucalyptus treesEucalyptus viridisGREEN MALLEESmall tree or mallee suitable for windbreak. Suites most soils in dry areas. Tolerates lime. Usually frost resistant.Eucalyptus treesEucalyptus woodwardiiLEMON FLOWERING GUMMedium to tall willow-like tree with narrow leaves. Well drained soil. Tolerates drought, lime, snow & frost.Other Native TreesCallitris glaucophyllaWHITE CYPRESS PINEMedium-sized tree with single trunk, conical shape & bluish-grey foliage. Well drained soil. Tolerates extended period of dryness.Other Native TreesCallitris endlicheriBLACK CYPRESS PINEMedium sized tree with single trunk, greenish foliage, rough furrowed bark. Well drained soils. Tolerates frost & dry periods.Other Native TreesAllocasuarina luehmaniiBULOKEMedium to tall tree suitable for areas with poor drainage. Good fuel wood. Most soils. Tolerates drought, lime and salt soil. Usually frost resistant.Other Native TreesAllocasuarina verticillataDROOPING SHE OAKSmall to medium tree with rounded crown & dark-green drooping foliage. Any soil. Tolerates dryness, lime & salt soils. Usually frost resistant.Other Native TreesCasuarina cristataBELAHMedium to tall tree suitable for most soils.  Excellent windbreak for plains. Drought resistant. Tolerates lime, salt soils & frost.Other Native TreesCasuarina cunninghamianaRIVER SHE OAKMedium to tall tree, dense shady crown suitable for windbreak & shade. Most soils. Tolerates wetness, dryness, lime, salt soils & frost.Other Native TreesCasuarina glaucaSWAMP SHE OAKMedium to tall tree with attractive dark green foliage suitable for windbreak. Swampy or wet soils . Tolerates mild salinity, dryness, lime & frost.Other Native TreesAngonis flexuosaNATIVE WILLOW A graceful, small and weeping tree with willow like foliage. Frost tender when young. Tolerates heavy and wet soils.Other Native TreesAngophora costataSMOOTH BARKED APPLELarge tree with attractive clean, pink coloured trunk & cream flowers. Well-drained soils. Tolerates dryness & lime. Frost tender when young.Other Native TreesBrachychiton populneusKURRAJONGMedium to tall spreading tree.  Excellent for shelter & shade. Tolerates frought, lime, sandy & salt soils. Usually frost resistant. Other Native TreesGrevillea robustaSILKY OAKMedium-large erect tree with attractive fern-like foliage. Masses of orange flowers in early summer. Wide range of soils & conditions.  Frost tender when young.Tree Planting AccesoriesMilk Carton  1LnoneTree Planting AccesoriesPlastic tree guardnoneTree Planting AccesoriesBamboo stakesnoneTree Planting AccesoriesOption 1noneTree Planting AccesoriesOption 2noneTree Planting AccesoriesPoti-putki Tree Planternone
  • Based on two different XSD validation XML table

    Hello

    Is it possible to create a table of validation XML (which will automatically validate the XML with an XSD file) with two XML type column, and the two columns relate other two recorded patterns. My goal is to store the XMl files and validate, but some XMl files are based on XSD1 and some XML files are based on XSD2, I am already registered patterns, now I need to create a table with two type of XML or a column of XML type to validate and store the different XSD base XML files.

    Thanks in advance

    Rizly

    Hello

    something like this:
    Purchase.xsd and purchase2.xsd are a few simple xsd.
    XML validation is performed inside the trigger.
    What follows is a 11.1.0.6

    SQL> create or replace directory xmldir as '/tmp';
    
    Directory created.
    
    SQL>
    SQL> begin
      2   dbms_xmlschema.registerschema(
      3      schemaurl=>'http://xmlns.oracle.com/xdb/purchase'
      4    , schemadoc=>bfilename('XMLDIR','purchase.xsd')
      5    , gentypes=>false
      6    , gentables=>false
      7    , genbean=>false
      8    , owner=>'SCOTT');
      9  end;
     10  /
    
    PL/SQL procedure successfully completed.
    
    SQL> begin
      2   dbms_xmlschema.registerschema(
      3      schemaurl=>'http://xmlns.oracle.com/xdb/purchase2'
      4    , schemadoc=>bfilename('XMLDIR','purchase2.xsd')
      5    , gentypes=>false
      6    , gentables=>false
      7    , genbean=>false
      8    , owner=>'SCOTT');
      9  end;
     10  /
    
    PL/SQL procedure successfully completed.
    
    SQL> create table test_xml(
      2     id number
      3   , xcol  xmltype
      4   , xcol2 xmltype)
      5  xmltype column xcol
      6  element "http://xmlns.oracle.com/xdb/purchase#PurchaseOrder"
      7  xmltype column xcol2
      8  element "http://xmlns.oracle.com/xdb/purchase2#PurchaseOrder2";
    
    Table created.
    
    SQL>
    SQL> create trigger test_xml_trg before insert or update on test_xml for each row
      2  declare
      3   l_xml xmltype;
      4  begin
      5   if :new.xcol is not null then
      6     l_xml := :new.xcol;
      7     xmltype.schemavalidate(l_xml);
      8   end if;
      9
     10   if :new.xcol2 is not null then
     11    l_xml := :new.xcol2;
     12    xmltype.schemavalidate(l_xml);
     13   end if;
     14  end;
     15  /
    
    Trigger created.
    
    SQL>
    SQL> insert into test_xml(id,xcol)
      2  values(1,xmltype('
      3                   1234567890123456789
      4                  '));
    
    1 row created.
    
    SQL>
    SQL> insert into test_xml(id,xcol)
      2  values(1, xmltype('1') );
    values(1, xmltype('1') )
              *
    ERROR at line 2:
    ORA-30937: No schema definition for 'a' (namespace '') in parent '/'
    ORA-06512: at "SYS.XMLTYPE", line 354
    ORA-06512: at "SCOTT.TEST_XML_TRG", line 6
    ORA-04088: error during execution of trigger 'SCOTT.TEST_XML_TRG' 
    
    SQL>
    SQL> insert into test_xml(id, xcol2)
      2  values(1, xmltype('
      3                      1234567890123456789
      4               '));
    
    1 row created.
    
    SQL>
    SQL> insert into test_xml(id, xcol, xcol2)
      2  values(1, xmltype('
      3                      1234567890123456789
      4               ')
      5          ,xmltype('
      6                  1234567890123456789
      7              '));
    
    1 row created.
    
    SQL>
    SQL> --clean
    SQL> drop trigger test_xml_trg;
    
    Trigger dropped.
    
    SQL> drop table test_xml;
    
    Table dropped.
    
    SQL> purge recyclebin;
    
    Recyclebin purged.
    
    SQL> exec dbms_xmlschema.deleteschema('http://xmlns.oracle.com/xdb/purchase',3);
    
    PL/SQL procedure successfully completed.
    
    SQL> exec dbms_xmlschema.deleteschema('http://xmlns.oracle.com/xdb/purchase2',3);
    
    PL/SQL procedure successfully completed.
    
    SQL> spool off;
    

    Ants

  • Extract XML data using XML table NULL recovery

    Hello

    I use XMLtable to recover data using XMLtable

    XML

    "< env:Envelope xmlns:env = ' http://schemas.xmlsoap.org/SOAP/envelope/ ">

    < env:Header > < / env:Header >

    < env:Body >

    " < = Xmlns:ns1 CreditBureauResponse ' http://www.example.org "xmlns =" " http://www.example.org ">

    < ns1:Body >

    < ns1:MGResponse > & lt; MGResponse xmlns = "urn: crif - messagegateway:2006 - 08-23" > & lt; U2:AUE_RES xmlns:u2 = "urn: AUE" > & lt; U2:response > & lt; U2:CBApplicationId > 123456789 & lt; / u2:CBApplicationId > & lt; U2:ProviderApplicationNo > 123 & lt; / u2:ProviderApplicationNo > & lt; U2:PreviousPhase > D & lt; / u2:PreviousPhase > & lt; U2:ActualPhase > D & lt; / u2: ActualPhase > & lt; U2:ApplicationDeleted > 0 & lt; / u2:ApplicationDeleted > & lt; / u2:Response > & lt; / u2:AUE_RES > & lt; / MGResponse > < / ns1:MGResponse >

    < / ns1:Body >

    < / CreditBureauResponse >

    < / env:Body >

    "< / env:Envelope >.

    I would like to know where I am going wrong

    SELECT x1.*

    OF tmp_xml_aue t.

    XMLTABLE (XMLNAMESPACES ('http://schemas.xmlsoap.org/soap/envelope/"as"env","http://www.example.org"as 'ns1", default'http://www.example.org'), )

    ' / env:Envelope / env:Body / CreditBureauResponse' T.OBJECT_VALUE by the WAY

    columns MGRESPONSE xmltype PATH "ns1:Body/ns1:MGResponse/text()") X 1,

    XMLTABLE (XMLNAMESPACES ("urn: crif - messagegateway:2006 - 08-23' as"v1", default" urn: AUE' '), ' / MGResponse/AUE_RES ' PASSAGE xmltype (DBMS_XMLGEN.convert (X 1.) MGRESPONSE. GETCLOBVAL(), 1))

    columns CBAPPLICATIONID varchar2 (15) WAY "response/CBApplicationId.

    ) X 2;

    Hello

    I saw your question and I hope that the link below will help you solve your solution:

    https://Oracle-base.com/articles/Misc/XMLTable-query-XML-data-from-SQL

    If there are problems more made me know I'll like you the exact solution for your query.

    Kind regards

    Vinoth.

  • How to adjust the height of txt to xml

    I have a height of 300 width x 300 textfield in the instance.

    Once I loaded the xml file in this textfield (xml_txt), all the rest inside this txtfield content. so, if I select the text I scroll down...

    but I don't want...

    is it possible, after loading the xml, to adjust the height of the textfield object to fit in the text, so I don't have to scroll. ?

    can anyone show me an example?

    use:

    yourTF.multiline = true;

    yourTF.wordWrap = true;

    yourTF.width = 300;

    yourTF.autoSize = "left";

    yourTF.text = yourxml.whatever.nodeValue;

  • dynamically create files (.txt/.doc/.css etc.) and save the table as BLOB without file system reference

    Hi guys,.

    IAM trying to find a plsql/pkg process that creates a file for example myiphones.txt (with content) and save this file as BLOB directly in a table in the DB (not on file system moreove there is no access to the file system) - Ive studied this but nothing about other than as_pdf3 that iam still working on.

    Here are the summarized steps:

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

    1. run plsql to create a single file like myiphone.txt,

    2. in this (myiphone.txt) inserts a record content from another table EMP as,

    MYiPhone.txt

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

    Greg Taylor,

    Mike Owen

    3 then finally record this (myiphone.txt) in another table MYFILES as BLOB - Note Please that I don't want to not refer to file system manager and I have not access to it for the time being,

    I hope it is clear

    no idea about the way to handle this is appreciated?

    Thank you.

    You can try this:

    Data are from a clob table.

    DECLARE
      L_BLOB BLOB;
      L_CLOB CLOB;
      L_DEST_OFFSET INTEGER := 1;
      L_SRC_OFFSET INTEGER := 1;
      L_LANG_CONTEXT INTEGER := DBMS_LOB.DEFAULT_LANG_CTX;
      L_WARNING INTEGER;
      L_LENGTH INTEGER;
    BEGIN
    
      -- create new temporary BLOB
      DBMS_LOB.CREATETEMPORARY(L_BLOB, FALSE);
    
      --Select CLOB
      SELECT CLOB_VAL INTO L_CLOB FROM MY_TABLE;
    
      -- tranform the input CLOB into a BLOB of the desired charset
      DBMS_LOB.CONVERTTOBLOB( DEST_LOB => L_BLOB,
      SRC_CLOB => L_CLOB,
      AMOUNT => DBMS_LOB.LOBMAXSIZE,
      DEST_OFFSET => L_DEST_OFFSET,
      SRC_OFFSET => L_SRC_OFFSET,
      BLOB_CSID => NLS_CHARSET_ID('WE8MSWIN1252'),
      LANG_CONTEXT => L_LANG_CONTEXT,
      WARNING => L_WARNING
      );
    
      -- determine length for header
      L_LENGTH := DBMS_LOB.GETLENGTH(L_BLOB);  
    
      -- Your custom INSERT INTO statement
      INSERT
        INTO MY_TABLE
         (NAME,
          BLOB_FILE,
          BLOB_LENGTH
         )
         VALUES
         ('lala.txt',
          L_BLOB,
          L_LENGTH
         );
    
      EXCEPTION
      WHEN OTHERS THEN
      DBMS_LOB.FREETEMPORARY(L_BLOB);
      RAISE;
    END;
    

    Concerning

    Tobias

  • transform xml into slow rational table

    my xml file looks like this

    has about 3000 'Sidonie' (tag < row >)

    and is really simple

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

    <? XML version = "1.0" encoding = "ISO-8859-1? >
    < adapt_xml >
    < row >
    < Field1 > 34093 < / field1 >
    < Field2 > < / Field2 >
    ...
    < field50 > 34 < / field50 >
    < liste_photos >
    adf_photo_2.jpg < picture > < / photo >
    adf_photo_7.jpg < picture > < / photo >
    adf_photo_4.jpg < picture > < / photo >
    ....
    < / liste_photos >
    ...


    < / row
    < row >
    < Field1 > 34093 < / field1 >
    < Field2 > < / Field2 >
    ...
    < field50 > 34 < / field50 >
    < liste_photos >
    adf_photo_2.jpg < picture > < / photo >
    adf_photo_7.jpg < picture > < / photo >
    adf_photo_4.jpg < picture > < / photo >
    ....
    < / liste_photos >
    ...


    < / row >
    < row >
    < Field1 > 34093 < / field1 >
    < Field2 > < / Field2 >
    ...
    < field50 > 34 < / field50 >
    < liste_photos >
    adf_photo_2.jpg < picture > < / photo >
    adf_photo_7.jpg < picture > < / photo >
    adf_photo_4.jpg < picture > < / photo >
    ....
    < / liste_photos >
    ...


    < / row >
    < row >
    < Field1 > 34093 < / field1 >
    < Field2 > < / Field2 >
    ...
    < field50 > 34 < / field50 >
    < liste_photos >
    adf_photo_2.jpg < picture > < / photo >
    adf_photo_7.jpg < picture > < / photo >
    adf_photo_4.jpg < picture > < / photo >
    ....
    < / liste_photos >
    ...


    < / row >
    < row >
    < Field1 > 34093 < / field1 >
    < Field2 > < / Field2 >
    ...
    < field50 > 34 < / field50 >
    < liste_photos >
    adf_photo_2.jpg < picture > < / photo >
    adf_photo_7.jpg < picture > < / photo >
    adf_photo_4.jpg < picture > < / photo >
    ....
    < / liste_photos >
    ...


    < / row >
    ...
    < / adapt_xml >

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

    the XML is stored in an xml table in Oracle (Version 11.2...)

    I have to extract the values a store in a relational table

    to do this, I make the following declarations

    It's fast

    SELECT
    x1.field1,
    x 1. Field2,
    x1.field3,
    ....
    x 1. Field50
    OF tmp_xml.
    XMLTable)
    ' / / row '
    by the way OBJECT_VALUE
    columns
    path of Field1 "Field1."
    path of Field2 'Field2 ',.
    field3 path "field3"
    ...
    Field50 path 'field50 '.
    ) x 1


    It's really slow

    SELECT
    x1.field1,
    x 1. Field2,
    x1.field3,
    ....
    x 1. Field50,
    x 1 .photo_1,
    x 1 .photo_2,
    x 1 .photo_3,
    x 1 .photo_4,
    x 1 .photo_5,
    x 1 .photo_6,
    x 1 .photo_7,
    x 1 .photo_8,
    x 1 .photo_9,
    x 1 .photo_10,
    x 1 .photo_11,
    x 1 .photo_12,
    x 1 .photo_13
    OF tmp_xml.
    XMLTable)
    ' / / row '
    by the way OBJECT_VALUE
    columns
    path of Field1 "Field1."
    path of Field2 'Field2 ',.
    field3 path "field3"
    ...
    Field50 path "field50."
    picture_1 path "liste_photos/photo [1]."
    photo_2 path "liste_photos/photo [2]."
    picture_3 path "liste_photos/photo [3]."
    photo_4 path "liste_photos/photo [4]."
    photo_5 path "liste_photos/photo [5]."
    photo_6 path "liste_photos/photo [6]."
    photo_7 path "liste_photos/photo [7]."
    photo_8 path "liste_photos/photo [8]."
    photo_9 path "liste_photos/photo [9]."
    photo_10 path "liste_photos/photo [10]."
    photo_11 path "liste_photos/photo [11]."
    photo_12 path "liste_photos/photo [13]."
    photo_13 path "liste_photos/photo [13].
    ) x 1


    It's slow as well

    SELECT
    x1.field1,
    x 1. Field2,
    x1.field3,
    ....
    x 1. Field50,
    x 1 .liste_photos,
    OF tmp_xml.
    XMLTable)
    ' / / row '
    by the way OBJECT_VALUE
    columns
    path of Field1 "Field1."
    path of Field2 'Field2 ',.
    field3 path "field3"
    ...
    Field50 path "field50."
    path liste_photos xmltype "liste_photos."
    ) x 1


    I tried to cash some xmltype index
    but without success

    the selection of the Field1... field50 is fast

    But if I select the photo list the performance is down

    Thank you

    Martin

    Finally, it works

    It has been a long road to success

    in the end, it was an oracle bug

    I opened a SR with Oracle in September

    After some time without any progress in the SR (no reply) I let it worsen the SR.

    not much happened until 24 x 7 climbing

    Since I guess it was in December (3 months later) they are really working on my SR and they had the same problems that I have

    in the end, that they discovered that it was because of the UTF8 character set

    the bug is now fixed in paragraph 12.2 and I got a patch stop

    If someone is interested in the patch

    January 16, 2014

    January 19, 2014

Maybe you are looking for

  • iPhone 5 c storage does not?

    I just got an iPhone 5 c with 8 GB of storage. I downloaded two applications so far, but does not match my storage. When I go into settings > storage and use iCloud > manage storage, it shows me how much storage, I used, but the amount each app conta

  • no photos on twitter

    Since add-on has been installed, I have no pictures in Twitter. No icons, no graphics, no pictures. My connection even in Google Chrome works perfectly. This issue affects Firefox 25, Aurora 27.0a2, 28.0a1 every night (2013-11-04). I have some graphi

  • HP Z800: HP Z800 with two Quadro 6000

    Can I install two Quadro 6000 on HP Z800 graphics cards? I have a HP Z800, single Xeon X 5690, 32 GB of RAM, single Quadro 6000. I think to add an another Quadro 6000. Is this possible? What should I do? Thank you

  • My HP Photosmart is not able to scan, the Pc is windows 8

    I have my Hp Photosmart D110 series is not able to scan, it is wireless and recently upgraded to day / compatible to windows 8. Gives me a message "try to scan from the ee SRO documentation, press ok". I am new to windows 8 and I do not know where to

  • Sansa Fuze 8 GB - battery not charging

    When I connect the Sansa to the PC, the battery shows it is charging for about 15-20 seconds, then stops. Of course, the battery is exhausted. I can't turn on the Sansa because "the battery is low." Any ideas how to fix this? Thank you.