Repeating sub vi

Hi
To make my VI look cleaner I decided to combine 4 low pass filters in a sub VI, and use this sub VI 3 times.
The problem is is seems to be adding them together instead of giving me 3 individual groups of signals.
Is there a setting that I am missing?
Thank you for your time and help!
Solved!
Go to Solution.

Thank you very much! I knew it had to be a small thing.

Similar Messages

  • Populateing a drop down list in a repeating sub form

    I have been using the scripts from the Purchase Order sample that work with the Country and States/Provinces drop down lists and have modified them to fit my needs. The scripts work great. However I have a drop down list that is in a repeating sub form and the only the drop down list in the first occurance of the sub form works. The others don't.
    I put this line of code in a field called drpOrderedByTeam.
    JobsScript.getJobsOther(xfa, xfa.resolveNode("form1.TimeSheetSF.DetailsSF[*].DetailsTable.DetailsRow.ItemNumber"));
    I thought I just needed to add an "[*]" to the name of the sub form and it would work with all occurances but it doesn't seem so and I'm not sure what else to do.

    Based on your explanations, I've attempted to re-create your form and I think I've got it working the way you'd like it to.
    There are some difficulties with using fields in table headers which are replicated on subsequent pages because while new instances of the header subform and the fields it contains are created, you don't have access to these instances using the header's Instance Manager (I think this is a bug but I'm not sure). This means that you can't iterate through the instances of the header in order to populate the task lists depending on the selection in the team list. One solution for this is to make all header fields Global (select each field and, in the Object palette's Binding tab, set the
    Default Binding property to
    Global). This means that all instances of these fields will share the same value. The effect is that when you change the value of a field on an instance of a header on any page, the change will be replicated on all instances on all pages. The catch, though, is when you use lists in the header. Making list fields global doesn't mean that their item lists are global -- which causes other headaches.
    In the end, because of the problems I've described, I had to resort to cheating a little but if you think about it, it's not really cheating. What the form does is whenever the team list value changes, it removes all instances of the DetailsSF rows. This has the effect of also removing all instances of the DetailTitlesSF headers accross the current page set (and removes all pages but the first one). Then 6 new instances of the DetailsSF row are generated and the DetailTitlesSF header is re-populated using the new selection in the team list. After that, if a new page gets generated because of the number of instances of the DetailsSF rows, the new instances of the task lists in the new instances of the DetailTitlesSF header will have the correct list of items based on the current value of the team list. In the end, even though I'm cheating by removing all instances of the DetailsSF row in order to reset the lists in the DetailTitlesSF header, it's not really cheating because if you change teams, then it should be assumed that all data entered doesn't apply anymore because the tasks change as well... Convinced?
    The best way to understand this is to check-out the sample form.
    Let me know if you have any questions.
    Stefan
    Adobe Systems

  • Nested Tables & Repeating Sub-group Row

    I'm using BIP re-grouping in conjunction with nested tables to avoid repeating some rows within my 'master' table.
    However, I'd like to repeat this sub-group row when the particular detail associated with that group spans multiple pages.
    Any advice on how I might accomplish this?
    Thanks,
    Chris

    Controlling the row of top level table to repeat in all pages, if the second table extends to next page,
    i dont think , there is a link between the two tables,
    you cannot identify on which page the row of the table exists, first or next.
    keeping this in mind, controlling the row of the parent table :)... looks difficult.
    But I see your point and requirement, but, i guess, the one which i sent earlier is a certainly a workaround.
    Looking for best soln, will let you know if i get +Ve ;)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Repeating sub-form with XML data from aspx page

    Hi,<br />I am doing a POC where I have a repeating subform in my Life cycle form.<br /><br />Now I want it to show data based on the XML that I have written, sample is below.<br /><br />My problem is that the sub-form does not repeat. Can you help me with this problem or if you can let me know your experience if this is possible that would be great.<br /><br />Thanks,<br />Manish<br /><br />strXML = "<?xml version='1.0' encoding='UTF-8'?>"; <br />        strXML = strXML + "<?xfa generator='AdobeDesigner_V7.0' APIVersion='2.2.4333.0'?>"; <br />        strXML = strXML + "<xdp:xdp xmlns:xdp='http://ns.adobe.com/xdp/'>"; <br />        strXML = strXML + "<xfa:datasets xmlns:xfa='http://www.xfa.org/schema/xfa-data/1.0/'>"; <br />        strXML = strXML + "<xfa:data>"; <br />        strXML = strXML + "<RepeatForm>"; <br />        strXML = strXML + "<emp>name</emp>"; <br />        strXML = strXML + "</RepeatForm>"; <br />        strXML = strXML + "<RepeatForm>"; <br />        strXML = strXML + "<emp>name1</emp>"; <br />        strXML = strXML + "</RepeatForm>"; <br />        strXML = strXML + "</xfa:data>"; <br />        strXML = strXML + "</xfa:datasets>"; <br />        strXML = strXML + "<pdf href='http://servername/projectname/filename.pdf' xmlns='http://ns.adobe.com/xdp/pdf/' />"; <br /><br />strXML = strXML + "</xdp:xdp>";

    hi this is a sample i created for this check out this link
    http://anilmathewm.blogspot.com/2010/07/how-to-post-data-from-flash-to-php-or.html

  • XML repeating sub-nodes?

    OK, I have XML data such as:
    <glossary>
    <terms>
    <term name="Béchamel">
    <definition>Lorem ipsum</definition>
    <tip>Lorem ipsum</tip>
    <links>
    <link title="Some link title" url="
    http://somelink"/>
    <link title="Some link title" url="
    http://somelink"/>
    <link title="Some link title" url="
    http://somelink"/>
    </links>
    </term>
    </terms>
    </glossary>
    I have the dataset set to use "term" as the repeating node,
    as there are many terms.
    var ds_glossary = new
    Spry.Data.XMLDataSet("xml/glossary.xml", "glossary/terms/term",
    {sortOnLoad: "@name", sortOrderOnLoad: "ascending"});
    I can correctly display the name, title, definition, tip. My
    question is home to display a repeating UL of the link nodes in the
    link?
    This does not work:
    <ul spry:repeatchildren="ds_glossary"
    class="glossaryLinks">
    <li>{ds_glossary::links::link::@title}</li>
    </ul
    What's the syntax for this, please?

    Thanks, that makes sense. However, I want to loop through all
    the link sub-nodes for a given node, and this code only gives me
    the first link title for each:
    <div spry:region="ds_glossary">
    <div spry:repeatchildren="ds_glossary">
    <p class="glossaryTerm">{ds_glossary::@name}</p>
    <p
    class="glosssaryDefinition">{ds_glossary::definition}</p>
    <p spry:if="'{ds_glossary::tip}'.length>0;"
    class="glossaryTip"><strong>TIP:</strong>
    {ds_glossary::tip}</p>
    <ul>
    <li>{ds_glossary::links/link/@title}</li>
    </ul>
    </div>
    When I tried a spry:repeat="ds_glossary" in the UL, it
    repeated ALL the titles for ALL the nodes every time. So I must be
    missing something here...

  • Dynamic population issue with repeated sub form

    I have a subform that populates a dropdown from another subform on a prior page. In the Enter event on the subform I have the following script:
    Drop Down 1
    this.clearItems();
    this.rawValue = null;
    this.fontColor = "0,0,0";
    var nCount = Subform3.Subform2.Subform1.instanceManager.count;
    console.println("nCount: " + nCount);
    for (var i=0; i<=nCount; i++)
    var vFld = xfa.resolveNode("Subform3.Subform2.Subform1[" + i + "]");
    var vItem = vFld.RiskNo.rawValue;
    this.addItem(vItem.toString());
    A second drop down is also populated in the PostOpen event on the subform with the following script:
    Drop Down 2
    this.clearItems();
    this.rawValue = null;
    this.fontColor = "0,0,0";
    var sf1 = Subform3.Subform2.resolveNodes ("Subform1[*]");
    for ( var i = 0; i < sf1.length; i++)
    if (CTPData.RiskRow.Risk.rawValue == sf1.item(i).RiskNo.rawValue)
      var controlsf = sf1.item(i).resolveNodes ("Controls.Control[*]");
      for ( var j = 0; j < controlsf.length; j++)
       var wInput = controlsf.item(j).ContNo.rawValue;
       this.addItem(wInput.toString());
    I then populate a text field with values based on drop down selections with the following Exit Event scripts:
    Exit Event Drop Down 1 to populate text field 1
    var sf1 = Subform3.Subform2.resolveNodes ("Subform1[*]");
    for (var i = 0; i < sf1.length; i++)
    if (CTPData.RiskRow.Risk.rawValue == sf1.item(i).RiskNo.rawValue)
       var wInput = sf1.item(i).RiskInput.rawValue;
       CTPData.RiskRow.RiskTxt.rawValue =(wInput);
       CTPData.ControlsRow.ControlTxt.rawValue = "";
    Exit Event Drop Down 2 to populate text field 2
    var sf1 = Subform3.Subform2.resolveNodes ("Subform1[*]");
    for ( var i = 0; i < sf1.length; i++)
    if (CTPData.RiskRow.Risk.rawValue == sf1.item(i).RiskNo.rawValue)
      var controlsf = sf1.item(i).resolveNodes ("Controls.Control[*]");
      for ( var j = 0; j < controlsf.length; j++)
    if (CTPData.ControlsRow.Control.rawValue == controlsf.item(j).ContNo.rawValue)
       var wInput = controlsf.item(j).ControlInput.rawValue;
       CTPData.ControlsRow.ControlTxt.rawValue =(wInput);
    These scripts work absolutely perfect for the first instance of the subform they are on.  On added instances of the subform however, the drop downs work but the populate text fields from the selected values do not.
    I am sure I am missing something simple but I can’t find it.
    I would greatly appreciate any pointers I could get.
    Thanks,
    Eagle

    I actually tried that with the same results.  It seems to me that the issue is that
    var wInput = controlsf.item(j).ControlInput.rawValue;
    CTPData.ControlsRow.ControlTxt.rawValue =(wInput);
    on the repeated subform has a different CTPData.ControlsRow.ControlTxt.  something like CTPData.ControlsRow.ControlTxt(0). but I don't understand enpough about repeated subform values to figure it out.
    Thanks,
    Eagle

  • Repeated sub-query

    Hi
    I've got a problem where I have a somewhat complex subquery that returns a list of ids but is required in a couple of places. Is there a simple way to retrieve this data once and use it from a variable, collection, array?
    eg:
    SELECT * FROM tbl_a
    WHERE id IN (
    SELECT id FROM tbl_c,tbl_d,tbl_e,tbl_f WHERE ....
    UNION
    SELECT * FROM tbl_b
    WHERE id IN (
    SELECT id FROM tbl_c,tbl_d,tbl_e,tbl_f WHERE ....
    Thanks

    Hello
    If you are on 9i or above, you could use subquery factoring (or refactoring can't remember). Here's a very basic example:
    WITH subquery AS (SELECT dummy as some_column FROM dual)
    SELECT
         some_column
    FROM
         dual,
         subquery
    WHERE
         dual.dummy = subquery.some_column
    UNION ALL
    SELECT
         some_column
    FROM
         dual,
         subquery
    WHERE
         dual.dummy = subquery.some_columnThe idea being that the WITH xxx AS() is the subquery that you will be using multiple times. Oracle then should then be able to use the subquery like a table, but it only has to materialise it once at the start. it does mean that you will need to put the columns that you would be joining on into the select list so you may end up with a much larger result set in the factored table. It's maybe worth a try anyway.
    HTH
    David

  • Repeate Subforms In Master Pages

    Hi All,
    Am unable to see repeated sun forms when master pages are repeating based on body pages.
    Let me explain my scenario
    I have one master page and one body page, master page i have one repeated sub form contains list of doctors
    In body page am displaying ordered services which also using repeated sub forms when the data exceeds to first page it is automatically overflows to second page in this scenario repeated sub forms of master page doctors list is not displaying in exceeded second page, but it is displaying in first page.
    Can any one give solution for this scenario.

    Hi Mallesh Reddy,
    In Adobe forms, what ever you keep in the Master Page will be repeated for the next consecutive pages.
    In other words Master Page is like a letter head which contains elements in common for all the consecutive pages to print. The positions and the layout will remain same for the Master page unless altered dynamically.
    Body Page is nothing but the content. Which will be printed in the Context Area of the Main Page.
    Contents in the Body page will be printed only once.
    Solution:
    Please place the elements which has to be repeated for all the pages in the Master page.
    If further help needed, Please post the lay out for us.
    Reward if useful.
    Cheers,
    Sivanand Ala

  • Sub Sub Reports

    In order to emulate a vertical break, I am trying to use sub sub-reports so that I can format detail sections with multiple columns but not across the entire page.  Is this possible and worth trying?

    The layout required specifies for graphs next to the tables.  Although I could format with multiple columns and place the primary sub report into the details line in the main report (and get three elements per line), this precludes the use of the required graphs unless I can do one of two things:
    A:  Create a vertical break, so that I have 2/3 of the page taken up with repeated sub-report elements, and use the rest as blank space in which too insert the graphs.
    B:  Specify that subreports 3, 6, and 9 (when laid out across-then-down) are from a different source (I would create a separate graph and use as a sub report in this case.)
    The effect appearing as follows:
    Report Header
    Group Title
    XXXX XXXX OOO
    XXXX XXXX OOO
    XXXX XXXX OOO
    Footer
    OOO OOO OOO            
    Where XXXX XXXX are distinct data tables, and OOO is a corresponding bar graph comparing trends between the two. Due to source data sharing each XXXX has to be it's own mini report, and because the grouping elements change frequently it is not convenient to write a query to generate a flat table each time we generate these.
    Thanks for your help so far...
    Edited by: Forrest Pugh on Oct 24, 2008 10:44 PM

  • Dynamic creation of UI components

    Hi All,
    I have to generate <h:inputText > dynamically when i click on a link, in the bean i am creating few UI components under a panel grid and returning , but the grid is not rendering on the page ,here is my code
    <h:panelGrid columns="2" binding="#{dynamic.formElements}">
    <h:outputText value="dynamicGrid"></h:outputText>
    </h:panelGrid>
    public HtmlPanelGrid getFormElements() {
              HtmlPanelGrid grid = new HtmlPanelGrid();
              List<UIComponent> children = grid.getChildren();
              HtmlOutputText t1 = new HtmlOutputText();
              t1.setValue("Gender:");
              children.add(t1);
              HtmlPanelGroup group = new HtmlPanelGroup();
              List<UIComponent> c = group.getChildren();
              HtmlSelectOneMenu menu = new HtmlSelectOneMenu();
              menu.setId("i01");
              menu.setRequired(true);
              c.add(menu);
              // populate the drop down list
              HtmlOutputText t2 = new HtmlOutputText();
              t2.setValue(" ");
              c.add(t2);
              children.add(group);
              grid.setRendered(true);
              return grid;
    Thanks in advance, pls reply soon its urgent

    Hi,
    subForm1:-
    Flow content
    Allow page breaks
    Place: following previous-----> This means when you are repeating the subform the previous one should be followed.
    Say you have a table and have 3 columns in it.
    After 1st column is completed, the next column should come with 1st comun
    After: Continue filling parent--->Continously fill the data with the parent element
    Repeat sub form min count is 1 : Minimum of 1 line item will be printed
    Height: Expand to fit is true.: If the field height is increased it automatically expands.
    For help in Adobe Press F1 or Goto Help--> Adobe Designer Help in Adobe Designer
    After installing Adobe Designer, goto the specific folder
    C:\Program Files\Adobe\Designer 8.0\EN you can get sample documents.
    For help press F1 after opening designer.
    Sub Form1: Content--> Flowed, Flow direction --> Top to bottom
                       Binding --> Check the checkbox Repeat Subform for each data item
    Subform 2: Content --> Positioned, No pagination No binding settings changes needed.
    Hey i forgot to mention the Header Subform where you create all these subforms should be flowed.
    Try it once like this and lte us know
    Edited by: Sankar Narayana on Oct 3, 2008 5:06 PM

  • Dynamic Creation of UI in adobe forms??

    Hi Experts,
    I need to create a dynamic interactive form and dynamic UI elements in the interactive form.
    As per my requirement I need to display a pdf and I will be getting values from the RFC's. I need to show the form segments and the UI elements only when there's a data from the RFC else not. I am unable to understand whether this requirement needs generation of the UI elements dynamically or I can do it statically as well.
    The form thus generated will be having data from the RFC which based on the data quantity may exceed to n number of pages.
    In case it needs dynamic creation can you suggest me please how to achive it in interactive forms?
    Helpful answers will be appreciated.
    Warm Regards,
    Gaurav

    Hi,
    subForm1:-
    Flow content
    Allow page breaks
    Place: following previous-----> This means when you are repeating the subform the previous one should be followed.
    Say you have a table and have 3 columns in it.
    After 1st column is completed, the next column should come with 1st comun
    After: Continue filling parent--->Continously fill the data with the parent element
    Repeat sub form min count is 1 : Minimum of 1 line item will be printed
    Height: Expand to fit is true.: If the field height is increased it automatically expands.
    For help in Adobe Press F1 or Goto Help--> Adobe Designer Help in Adobe Designer
    After installing Adobe Designer, goto the specific folder
    C:\Program Files\Adobe\Designer 8.0\EN you can get sample documents.
    For help press F1 after opening designer.
    Sub Form1: Content--> Flowed, Flow direction --> Top to bottom
                       Binding --> Check the checkbox Repeat Subform for each data item
    Subform 2: Content --> Positioned, No pagination No binding settings changes needed.
    Hey i forgot to mention the Header Subform where you create all these subforms should be flowed.
    Try it once like this and lte us know
    Edited by: Sankar Narayana on Oct 3, 2008 5:06 PM

  • Header and Item table - Form Design Question

    Hi All,
    I have a header table and Item table. For every record in the header table I have multiple records in the item table. I want to have a adobe form in the following way
    1. A new page starts for every record in the header table and Items in the item table for this header record can span multiple pages with the same header information.
    2. When all the items are displayed for that particular header record, a new page should start for the next header record.
    I created one internal table in the following way
    Header_field1 Header_field2 Item_table(with all the items for this header record)
    Header_field1 Header_field2 Item_table(with all the items for this header record)
    I am not sure how to use a table for this scenario (Should It be a nested table?).
    Please provide me some ideas.
    Thanks,
    Ganesh.

    Hi Balasubramani,
    I made some changes and have the following now. Can you please let me know how I can achieve page break for every BP_NUMBER.
    I have a nested table like the one below.
    Main table u2013 Has header and Items information. Every header record has some header information like BP number, name and all line items for that BP in a nested table .
    IT_HEADER:
    BP_NUMBER     BP_NAME           IT_ITEMS(Items table)
    BP_NUMBER     BP_NAME           IT_ITEMS
    BP_NUMBER     BP_NAME           IT_ITEMS
    To display this information I created the following
    Subform1 u2013 overflow u2013bound to $record.IT_HEADER.DATA[*] u2013 (Repeat sub form for
    |                                             each data item)
    |->Header sub form u2013 Positioned
    |     |
    |     |-> Text Field u2013 bound to BP_NUMBER
    |
    |
    |->Item sub form -
         |     
         |->Item Table u2013 bound to IT_ITEMS
              |
              |->Data u2013 bound to IT_ITEMS.DATA[*] u2013(Repeat row for each data item)
    In the output BP number in the first record of IT_HEADER gets displayed and then all the Item records in IT_ITEMS for that BP get displayed. This is repeated all the records in IT_HEADER which is perfectly fine.
    Please provide me some suggestions to solve the following issues I am having
    1.     I need a page break between records of IT_HEADER. I want the new subform1 for the next header record to start in a new page. I tried conditional break option, on the only field BP number in header sub form. I have two master pages and two body pages. All the above information is in master page 2 and body page 2.  I am also not sure what to select in the TO section of the conditional break screen.
    2.     When there is an overflow in IT_ITEMS I need the Header sub form to be shown in the next page too.
    Thanks,
    Ganesh.

  • Dreamweaver templates dialogue box

    I work with several sites and take advantage of Dreamweaver's template management.
    Mostly it's great, but there's one extremely frustrating problem that I hoped would be addressed for the last three DW versions or so:
    When I'm dealing with sites that have a lot of templates and their nested templates, the template dialogue box is not sufficient. I waste minutes trying to find any given template because:
    a) you can't resize the dialogue box, so you can only view about 6 or 7 templates at a time, which doesn't cut it on large websites.
    b) they are in no comprehensible order - not alphabetical, not in the order in which they were created - it almost seems random
    Here's the box I'm talking about. I get it by going to Modify->Templates->Apply Template to Page:
    I've been working with DW for years but I don't know it all, so maybe I'm missing an easier way to do this.
    Is there perhaps a way that I can apply templates and/or view the template hierarchy without having to use the extremely small and archaic dialogue box, or can I edit a file or registry entry to address this?
    Thanks!

    Hi Murray,
    Thanks for the feedback!  I'll elaborate to give you an idea of where I'm coming from.
    I'm forced to use nested templates in order to help make department or section-specific changes to an Intranet website of thousands of pages without having to scan and/or re-write all of the files. This also helps out a lot with our content management system if I want 30+ content developers to be able to change their pages without compromising the integrity of their particular department or section's designs, which falls ultimately under the root template of the site, but with certain repeated sub-elements and/or aspects that are department or section-specific. Each section might have tens of pages where a change to the section might be repetitive if not controlled via a nested template.
    Much of this is accomplished via scripting, but my content developers don't know html/scripting so there are some elements that I need to be 'flat' so that they are able to do their jobs without the interaction of my team.
    That being said, I'm sure there's definitely some room for your suggestion of re-working the approach - by now there are some outdated templates as the site has evolved, but getting the site down to only a few templates is, at this time, not an option for my situation given the number of people who need to work on the site and the granularity of access control that I've been charged with maintaining / delegating.
    You mentioned that later versions of DW have significantly altered this whole approach - can you briefly elaborate on this (you've peaked my interest)? I'm using DW CS4 10.0 build 4117 for Windows.
    Thanks for any further insight you can provide!

  • How to iterate in java embedding?

    I have a variable holding a repeatable structure. How do I iterate through this and manipulate the elements in a java step?
    Rgds, Henrik

    hek123 wrote:
    Hi Ronald, I've tried using a transformation with the same source and target - but jdev dont like that - somehow.Do you get an error or an XML structure you don't expect? As Eric says can you paste the source XML, XSLT and the target XML (if there's no error and output is generated).
    If you want to handle repeatable XML structures and want to "do something" with every instance of the element, you could also use debatching functionality in the ESB.
    How would you suggest i come across the case of "nulling" a repeatable sub-element?What do you mean by nulling?
    I cant use assign since it can't handle repeatable structures.
    Rgds, HenrikRegards, Ronald

  • Chunking XML content

    Hi
    I have xml file having a few repeated sub elements which intern contain child elements, i want to each sub element to be chunked into separet file.
    <college_details>
    <student>
    <name>aaa</name>
    <address>NJ</address>
    <sno>100</sno>
    </student>
    <student>
    <name>bbb</name>
    <address>NY</address>
    <sno>102</sno>
    </student>
    <lecturer>
    <name>ccc</name>
    <subject>xxx</sujbect>
    <lecturer_id>200</lecturer_id>
    </lecturer>
    <lecturer>
    <name>ddd</name>
    <subject>yyy</sujbect>
    <lecturer_id>201</lecturer_id>
    </lecturer>
    </college_details>
    Output:
    each lecturer and student element information should chunk into separet file.

    vittal.reddy wrote:
    each lecturer and student element information should chunk into separet file.Step 1: Load your source XML file in DOM (org.w3c.dom.Document).
    Step 2: Create two empty instance of org.w3c.dom.Document, one for all student elements and other for all lecturer elements.
    Step 3: Now, check all children of college_details element one by one, Append student element to new Document created to append all student elements by using appendChild and importNode methods of org.w3c.dom.Document. Perform same for lecturer elements.
    Step 4: Write both new created Documents to separate file.
    You can use javax.xml.parsers.DocumentBuilderFactory, javax.xml.parsers.DocumentBuilder to create new instance of org.w3c.dom.Document.
    Hope this will help.
    Thanks,
    Tejas

Maybe you are looking for

  • Computer crashed, trying to register on new computer

    My computer recently crashed which had I think CS5. (Cant remember if it was 5.5 or 5.) I have gotten a new computer now and am trying to install the program on my new Mac. I have logged into my adobe account but it does not show any products registe

  • How to open  a tiff file on a specific page?

    Hi, I would like to open a tif file in internet explorer at a specific page. My tif file gets 3 pages. I succeed in opening it in internet explorer at the first page by just cliking on this link: But i would like to open the tif file directly at its

  • Variable substitution issue

    Hi all, I've a select against a view (V_XXX) which performs drammaticaly different if run in this two ways: SQL> SELECT COUNT(*) FROM METOD.V_XXX 2 WHERE MATRICOLA LIKE '%'||LTRIM('310491A')||'%'; --> 50 msecs. SQL> VARIABLE var VARCHAR2(10); SQL> EX

  • Can't mount external Hard drive and Can't change the ownership and permiss.

    Hello everyone, got a problem and maybe someone here will know. Apple care can't help because this is due to an external piece. I have a hard drive external. I partitioned it into two hard drives. Long ago, I opened the information window for one of

  • How to separate "random" code into their own place. (with source code)

    Hi, i can't seem to figure out how use random to separate the letters and how you would select the individual code from the menu and display it. I know a major part of the code is missing, so any help will be greatly appreciated. Here are my instruct