XSLT does not put element into output

HI Gentlemen,
I have the following code segment, reflecting a 4-level hierarchical structure. Only the first two levels are guaranteed to be present; the last two are optional (if pe:scheinuntergruppen_liste is present, then at least one pe:scheinuntergruppe must be present, too.)
          <xsl:for-each select="pe:bedingung/pe:scheinarten_liste">
            <xsl:variable name="span1" select="count(descendant::pe:scheinuntergruppe)"/>
            <xsl:variable name="pos1" select="position()"/>
            <xsl:for-each select="pe:scheinart">
              <xsl:variable name="span2" select="count(descendant::pe:scheinuntergruppe)"/>
              <xsl:variable name="pos2" select="position()"/>
              <xsl:for-each select="pe:scheinuntergruppen_liste">
                <xsl:variable name="span3" select="count(descendant::pe:scheinuntergruppe)"/>
                <xsl:variable name="pos3" select="position()"/>
                <xsl:for-each select="pe:scheinuntergruppe"> 
                  <tr>
                    <xsl:if test="position()=1">
                      <xsl:if test="$pos3=1">
                        <xsl:if test="$pos2=1">
                          <td rowspan="{$span1}"><xsl:value-of select="../../../@V"/></td>
                        </xsl:if>
                        <td rowspan="{$span2}"><xsl:value-of select="../../@V"/></td>
                      </xsl:if>
                      <td rowspan="{$span3}"><xsl:value-of select="../@V"/></td>
                    </xsl:if>
                    <td><xsl:value-of select="@V"/></td>
                  </tr>
                </xsl:for-each>
              </xsl:for-each>
            </xsl:for-each>
          </xsl:for-each>Since a tabular representation is not working for missing elements, I tried to insert them under pe:scheinart., using the following template:
<xsl:template name="fill" match="pe:scheinart">
  <xsl:if test="not(./pe:scheinuntergruppen_liste)">
    <xsl:element name="pe:scheinuntergruppen_liste" use-attribute-sets="V">
      <xsl:attribute name="V">
        <xsl:value-of select="XX"/>
      </xsl:attribute>
      <xsl:element name="pe:scheinuntergruppe" use-attribute-sets="V">
        <xsl:attribute name="V">
          <xsl:value-of select="YY"/>
        </xsl:attribute>
      </xsl:element>
    </xsl:element>
  </xsl:if>
</xsl:template>This should be executed once for each pe:scheinart node inserting a child and a grandchild node. The template is called by
<xsl:apply-templates select="pe:scheinart"/>Unfortunately, it does nothing; the rowspan values are not affected. Could anyone give me a hint, where I am wrong?
Thanks, kind regards,
Miklos HERBOLY
Edited by: mh**** on Aug 11, 2011 10:31 AM

[0]
Since a tabular representation is not working for missing elements, I tried to insert them under pe:scheinart., using the following template...I have'nt read into the template... but if you meant to setup a template within the same xslt document (not in cascade) as pre-processing of the xml document, then I doubt it would do as a matter of conceptual approach.
[1] In fact, there is no reason the possibility of missing element pe:scheinuntergruppen_liste and/or pe:scheinuntergruppe cannot be handled by the logic. It can and I would like to show you a realization to that effect.
[1.1] One crucial point is to count correctly the needed rows (tr) disregard whether one or both of the elements be absent or not. The number of rows to span for both pe:scheinarten_liste and pe:scheinart individually is to calculate how many ending tree node amongst the four named elements (in the sense of element of the descendant of them contains no more elements of the four named elements.) That calculation is reflected in the demo below at span1, span2 variables following your notations.
[1.2] And then, once the elements being absent, one has to insert something to avoid the html table collaping the cell --- use border="1" for inspection purpose, if you so desired. That's quite necessary as far as the html table is concerned. It is usually a non-breakable space ( ). That I do as well.
[1.3] There are two degenerate cases: pe:scheinuntergruppen_liste absent and pe:scheinuntergruppen_liste present but pe:scheinuntergruppe absent. It results in four branching out (reflecting in the use of xsl:choose).
[2] This is a demo realization containing the 4 levels of for-each which should behaviour properly with enough generality.
<xsl:for-each select="pe:bedingung/pe:scheinarten_liste">
  <xsl:variable name="span1" select="count(descendant-or-self::*[count(descendant::*)=0])" />
  <xsl:variable name="pos1" select="position()"/>
  <xsl:for-each select="pe:scheinart">
    <xsl:variable name="span2" select="count(descendant-or-self::*[count(descendant::*)=0])" />
    <xsl:variable name="pos2" select="position()"/>
    <xsl:choose>
      <xsl:when test="count(pe:scheinuntergruppen_liste)=0">
        <tr>
          <xsl:if test="$pos2=1">
            <td rowspan="{$span1}"><xsl:value-of select="../@V" /></td>
          </xsl:if>
          <td><xsl:value-of select="@V" /></td>
          <td><xsl:value-of select="'&#xa0;'" /></td>
          <td><xsl:value-of select="'&#xa0;'" /></td>
        </tr>
      </xsl:when>
      <xsl:otherwise>
        <xsl:for-each select="pe:scheinuntergruppen_liste">
          <xsl:variable name="span3" select="count(descendant-or-self::*[count(descendant::*)=0])" />
          <xsl:variable name="pos3" select="position()" />
          <xsl:choose>
            <xsl:when test="count(pe:scheinuntergruppe)=0">
              <tr>
                <xsl:if test="$pos3=1">
                  <xsl:if test="$pos2=1">
                    <td rowspan="{$span1}"><xsl:value-of select="../../@V" /></td>
                  </xsl:if>
                  <td rowspan="{$span2}"><xsl:value-of select="../@V" /></td>
               </xsl:if>
               <td><xsl:value-of select="@V" /></td>
               <td><xsl:value-of select="'&#xa0;'" /></td>
             </tr>
           </xsl:when>
           <xsl:otherwise>
             <xsl:for-each select="pe:scheinuntergruppe">
               <xsl:variable name="pos4" select="position()" />
               <tr>
                 <xsl:if test="$pos4=1">
                   <xsl:if test="$pos3=1">
                     <xsl:if test="$pos2=1">
                       <td rowspan="{$span1}"><xsl:value-of select="../../../@V" /></td>
                     </xsl:if>
                     <td rowspan="{$span2}"><xsl:value-of select="../../@V" /></td>
                   </xsl:if>
                   <td rowspan="{$span3}"><xsl:value-of select="../@V" /></td>
                 </xsl:if>
                 <td><xsl:value-of select="./@V" /></td>
               </tr>
             </xsl:for-each>
           </xsl:otherwise>
         </xsl:choose>
       </xsl:for-each>
     </xsl:otherwise>
   </xsl:choose>
  </xsl:for-each>
</xsl:for-each>

Similar Messages

  • Sometimes clicking on an object in the drop-down box of the search does not put that into the search box.

    when putting an inquiry into the search box, the drop-down gives suggestions. Sometimes when selecting a suggestion, it does not appear in the search box. Reboot of computer fixes the problem. reboot of the browser does not.

    Do you have that problem when running in the Firefox SafeMode? <br />
    [http://support.mozilla.com/en-US/kb/Safe+Mode] <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this: <br />
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • Acrobat/Indesign does not export correct into the selected output intention (eci_iso_coated_v2_300)

    I use the CS6 suite with Acrobat XI at windows platform.
    When I want to save a file from InDesign as .pdf with output intention eci_iso_coated_v2_300 the result is a .pdf with more than 300% ink coverage.
    I tried to transform the result in Acrobat XI into this standard output intention, but also the result has more than 300 % ink coverage.
    What is the reason of this bug?
    Before with Acrobat X this worked without problems

    Hi Rob,
    I was told the new way to work would be to draw files via Bridge direct into the InDesign file
    and I thought automatically the color would not be changed.
    my colourmanagement setting in bridge for the whole CS6 was  ECI isocoated_V2_300
    The Illustrator file was saved without color profile.
    In this test file I used 3 kinds of black: background of pirate in cmyk 79,34 / 72,78 / 59,38 / 79,88 = ink coverage 291 %
    DÜSSELPIRATEN in “black” (if you would convert this in the file with the cmyk button it would be the same ink-percentage as before
    “e.V.” was set to 100 % k
    I set the preferences for Acrobat from InDesign CS6 as pdf X4 with profile eci isocoatedV2_300 in three ways:
    no color conversion
    convert to profile
    convert to profile keeping existing values
    in all tree files the pirates background has 322 % ink coverage instead of 291 %
    Why does Acrobat convert “black” in the wrong way?  If I click in Illustrator on the 4c button to convert the “black” into 4c it is 291% ink
    Acrobat should come to the same result with all profiles: iso coated V2 and iso coated V2_300
    The same happens also by saving as .pdf X3 or .X1
    The minimum what I expect is, that Acrobat reduces ink coverage for black to 300 %
    I also made test with the new ECI profiles for laminated prints from 2012.
    And with newspaper profiles
    In this case the ink coverage comes below 300 %, but only when I choose convert to profile.
    And then the 100 % k converts to cmyk, what I don’t want to have with text.
    Is there no way to reduce ink coverage below a special percentage without changing Text 100% k
    And is there a bug in Acrobat XI with the ECI IsoCoated_V2_300 Profile? For there is no color reduction below 300 % in all conversion settings.
    I can’t test this with Acrobat X or IX, for my computers with this software don’t run with CS6 64 bit.
    enclosed you find my files
    Kind regards
    Lutz Hanbueckers
    Hanbueckers Werbung GmbH
    Brandsackerstr. 5
    40764 Langenfeld
    P.O. Box 40 02 01
    40242 Düsseldorf
    Tel. +49 02173 1 09 44 - 0
    Fax +49 02173 1 09 44 - 10
    [email protected] <mailto:[email protected]>
    www.hanbueckers.de
    Visit our site
    Steady attractive offers!!!
    HR Düsseldorf B 26 480
    owner Manager: Lutz Hanbueckers
    Von: Rob Day [email protected]
    Gesendet: Samstag, 2. März 2013 04:26
    An: Hanbueckers Werbung
    Betreff: acrobat/Indesign does not export correct into the selected output intention (eci_iso_coated_v2_300)
    Re: acrobat/Indesign does not export correct into the selected output intention (eci_iso_coated_v2_300)
    created by Rob Day <http://forums.adobe.com/people/rob+day> in InDesign - View the full discussion <http://forums.adobe.com/message/5115613#5115613

  • How come F10 does not put my clip into the timeline ?

    How come F10 does not put my clip into the timeline ?
    When I pressed F10, the sound icon appears instead.
    Am I missing out something ?
    Thanks

    skalicki` wrote:
    Technically, to make the function keys work you don't need to change the second box to dash. I don't know why I gave that advice, but it isn't necessary. I guess I said that simply because that's what I have it set to.
    The reason there are two boxes is so that you can set Exposé to using both the function keys and the mouse. For example, if I have +All Windows+ set to F9 and Secondary Mouse Button, then it will show all open windows if I click F9 or right-click. That is why you actually don't need to have the second boxes for any of these set to dashes. You could set them to your mouse buttons, or if you wanted you could set the first box of any of these to any function key, as long as it isn't set to the same one as the key you want to use for your shortcuts within FCE.
    I hope this made sense, I realize that I might not have explained it very clearly.
    Message was edited by: skalicki`
    Thanks skalicki, I think I got it. You've been of great help !!

  • You are enabling official branding. You may not redistribute this build * to any users on your network or the internet. Doing so puts yourself into * a legal problem with Mozilla Foundation

    You are enabling official branding. You may not redistribute this build
    * to any users on your network or the internet. Doing so puts yourself into
    * a legal problem with Mozilla Foundation

    "Firefox" is a trademark of the Mozilla Foundation. If you are building yourself, you are creating an "unofficial build." Unless you have a trademark license from Mozilla, you are not supposed to brand it as "official" and give it to others, since it implies that your build is endorsed by Mozilla. That is why Debian's build of Firefox is called "Iceweasel."
    For more information, please read [http://www.mozilla.org/foundation/trademarks/policy.html Mozilla's trademark policy].

  • FINAL EXPORT / MIXDOWN FONCTION does not work. The Output Wave Resulting is a total silence?

    AUDITION FINAL EXPORT / MIXDOWN FONCTION does NOT ever work
    The Output Wave Resulting is a TOTAL SILENCE - NO SOUND AT ALL
    Bought & registered Program act as an expired DEMO...
    The result is a wave with a completely flat HORIZONTAL LINE of pure $300.00 rip off of SILENCE
    Even after many clean reinstallations AUDITION never is able to do a Final Mixdown with any Sound in it.
    A AUDITION Support Technician cleaned up during 1 hour about 15 secret hidden Adobe files in the Windows XP System.
    After this clean up the AUDITION program functionned ONCE! Once it was able to output a Final Mixdown with sound in it.
    That never occured again after. I have a very standard very well maintained Windows XP computer.
    My understanding & the experience with the Adobe Support Technician prooves that the problem is the deeply hidden spy files of Adobe who erroneously turn my bought & registered program into an expired DEMO. I have reported the problem numerous times to Adobe, & everytime I talk to support people at Adobe, they tell me they have never heard about this problem, when I already had reported it MANY times at the Adobe Tech Support department !!!
    I can only draw the conclusion Adobe is trying to hide this problem away by pretending they have never heard about it.. ?
    Anybody have had a similar AUDITION  / DEPRESSION nightmare & found a solution ?

    Astraelia wrote:
    Audition is the first & only program easely accessible for musicians who record themselves without having the expertise of a sound technician handling the recording operations. This is certainly by far, the greatest quality of Audition.
    I would term Audition to be the very first & only recording program (on PC) conceived for musicians. All the others Audio Logic, Q Base ect. are conceived for professionnal recording engineers.
    You seem to have a rather strange conception of Audition, I must say. Most musicians want it to do rather more than it does. It wasn't conceived for musicians at all really - it was originally designed to be just an editor, to which the functions of a multitrack tape recorder were added. Its primary use is professional - always has been, mainly by radio stations. Just about every station in the world has at least one copy, and some larger ones like the BBC have rather a lot more... and I'd say that it was the likes of Cubase and Logic that are conceived for musicians, not Audition. It's also used by a lot of Mastering studios, even though they won't admit it. The primary reason for it being in Adobe's Creative Suite is because it's getting more and more integrated with the video programs in it - nothing to do with music at all.
    I'm afraid that whether you like it or not, Audition is marketed towards people who do know what they're doing, by and large. That's why it behaves the way it does, and why you do really need to be at least a bit of a technician to use it effectively. And I'm still trying to think whether I know of any guitarists at all who use amplifiers and who don't understand at least the basics of how a mixer works, but I'm afraid that I can't think of any. I'm not going to say that it's common knowledge, but I don't think it's that rare either.

  • Firefox 5.0 does not open link into new window

    Firefox 5.0 does not open link into new tab. I have a netbook also and tab options work fine, links open into a new window. However on this Dell it does not work. Tab options in Firefox and Google are set right, but don't work that way. Running Windows 7 on Dell, Windows Starter on netbook.

    The Template .dwt file is only used locally by DW itself, there's no reason to upload it to the server unless you intend to share it with someone. You have to upload each individual page that the Template updates, every time you update the template and propagate that change across the child pages.
    It would probably be better to use a server side include. That way, you could update one file then upload it and all of your pages would automatically carry that update...
    SSI for Apache: http://www.javascriptkit.com/howto/ssi.shtml
    PHP's version: http://www.tizag.com/phpT/include.php
    It's especially handy if your site gets to the point where you have more than about 20 pages.

  • SP 2010 upgrade fails Error C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\config\WEBCONFIG.ACCSRV.XML, does not have element "configuration/configSections/sectionGroup[@name='SharePoint']"

    I was upgrading my SP 2010 server to SP1 but at step 8 i get this error. I cleared configuration cache, moved the file out of the folder, got the same file from other farm where upgrade went smooth, but no success yet. I am at loss.
    So i have another farm in SP1. As a fall back option i was thinking to move content database on that server and start hosting site there but now i find out pre sp1 content databse cannot be moved to sp1 farm just through content database migration. 
    Do only choice i have is to build dummy sp 2010 environment, move content database there and do upgrade there and move it to final production environment? 
    Is there anything else i can do for either upgradeing the current sp 2010 or moving it to new 2010 already on SP1? 
    Can pre sp1 2010 content db be moved to sp2013 sp1 directly?
    Adit

    Hi ,
    How many SharePoint servers do you have? If you have more than one SharePoint server, you need to install SP1 on all servers in the farm.
    Make sure you run SharePoint 2010 configuration wizard using “Run As administrator”.
    Please check the log to find more information about this issue.
    In addition, here is a similar post, please take a look at:
    http://sharepointnomad.wordpress.com/2014/02/23/fixing-sharepoint-2010-configuration-wizard-error-webconfig-accsrv-xml-does-not-have-element-configurationconfigsectionssectiongroupnamesharepoint-or-it-is-invalid/
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Before removing iPhoto (latest update crashed the app), I accidently removed it from my purchased Apps from the App Store. I accept iPhoto when I search for it, but does not put it back in my list. How do I get this back so that I can reinstall iPhoto?

    Before removing iPhoto (latest update crashed the app), I accidently removed it from my purchased Apps from the App Store. I accept iPhoto when I search for it, but does not put it back in my list. How do I get this back so that I can reinstall iPhoto?
    Thank you.

    I found the answer just after posted this.  Thanks to a user named CloudWalker.  Solution is to go in AppStore, View Account under "Store" Menu and unhide any purchases.

  • User defined fields does not get added into database

    Hello Experts
                              User defined fields does not get added into database , when i click add button it
    shows data added sucessfully , but when i check data base no entry is made , only entry is made for
    B1 fields , like DocEntry ,DocNum etc.., no entry is made for U_fields..
    I have check every thing databound is also set to true
    Actually first few 6 data was added properly but now its not geeting added for user fields
    I have used 2 document row  child table for 2 matrix and for remaining Document table
    What might be the problem
    reply soon
    plz suggest

    Hello sir
    I have checked Default form , in that entry is made into database
    but running the form in screen painter in preview mode or through coding it does not get added for user field
    this id my binding code
    LoadFromXML("updateopd.srf")
                oForm = SBO_Application.Forms.Item("updopd")
                oForm.DataBrowser.BrowseBy = "txtpatid"
                'Adding combo in Obervation
                oItem = oForm.Items.Item("txtpatid")
                oEdit2 = oItem.Specific()
                oEdit2.DataBind.SetBound(True, "@UPDATE", "U_PID")
                oItem = oForm.Items.Item("txtmnane")
                oEdit3 = oItem.Specific()
                oEdit3.DataBind.SetBound(True, "@UPDATE", "U_FName")
                oItem = oForm.Items.Item("txtlname")
                oEdit3 = oItem.Specific()
                oEdit3.DataBind.SetBound(True, "@UPDATE", "U_LName")
    Plz suggest

  • I am trying to export a Numbers spreadsheet to a csv file, but it does not put the commas in

    I am trying to export a Numbers spreadsheet to a csv file, but it does not put the commas in.  I want to use it with an HTML table generator tool, but the tool is looking for commas.   The Export to CSV exports it as a spreadsheet with all the formatting removed, and no commas.
    Here is the html table tool:
    http://www.textfixer.com/html/csv-convert-table.php

    Numbers '09 create CSV files with comma separated values if and only if your system is using decimal period.
    If the system is using decimal comma, the CSV files are created using semi-colon as separator.
    Yvan KOENIG (VALLAURIS, France)  dimanche 11 décembre 2011 11:11:25
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Build thumbnail image does not take AnalogBalance into account

    When I build a thumbnail, it does not take AnalogBalance into account.
    dng_image_preview thumbnail;
    dng_render render (host, *negative);
    // Build stage 2 image.
    negative->BuildStage2Image (host, ttShort);
    // Build stage 3 image.
    negative->BuildStage3Image (host, ttShort);
    render.SetFinalSpace (negative->IsMonochrome () ? dng_space_GrayGamma22::Get () : dng_space_sRGB ::Get ());
    render.SetFinalPixelType (ttByte);
    render.SetMaximumSize (256);
    thumbnail.fImage.Reset (render.Render ());
    thumbnail.fImage.Get()->Rotate( dng_orientation::Mirror90CCW() );
    thumbnail.fInfo.fColorSpace = thumbnail.fImage->Planes () == 1 ? previewColorSpace_GrayGamma22 : previewColorSpace_sRGB;

    The AnalogBalance is going to affect the mapping between temp/tint values and camera neutral values. If the white balance values are already stored as camera neutral values, I would not expect it to significantly change thumbnail rendering.
    It sounds like you do not understand AnalogBalance correctly.

  • 10.9.4 Mail activity shows incoming mail downloading but does not put in mailbox

    Been testing all day with no results.
    The hosting company says there is no problem at there end. All mail can be found the their webMail.
    iMac Mail connection doctors show all good connections.
    Mail activity shows incoming mail downloading but does not put in mailbox, they simply disappear.
    Still searching for a fix for this serious issue. 
    Any ideas or a proven solution is most welcome.
    -Thanks in Advance -

    Try rebuilding the mailbox. This can take awhile if you have a lot of mail.
    Rebuild mailbox
    and/or
    Try re-indexing the mailboxes. This can take awhile if you have a lot of mail.
    Reindex messages

  • Why DDL during SELECT is possible. Or why SELECT does not put a table lock?

    This is a question to people who really knows Oracle internals or/and RDB theory.
    (The question is relocated from another thread for not hijacking on that's original question.)
    Why DDL during SELECT is possible? Or why SELECT does not put TM 2 Row Shared lock on table(s)?
    This not locking causes a possibility while one session is running a long select, another can truncate and even drop table(s) that are being read by the first session.
    I think, humbly assume, that Oracle does not put TM 2 lock on tables, that are being simply SELECTed, by some significant technical reason. But I do not know this reason. If somebody knows please shed a light.
    Also, if you know that this behavior is totally correct from perspective of RDB theory, please explain me.
    I'll try to explain my point.
    It is a matter of data consistency and integrity that is supported in Oracle everywhere except this place.
    a) If one session is reading data from moment T and other session changes data on its way at moment T1, the first session wont read that changed data, it will read the data that was there on moment T.
    This is declared as Read Consistency principle.
    b) If one session is changing data, and another session tries to truncate or drop table - the second session will fail with error ORA-00054: resource busy and acquire with NOWAIT specified.
    This is declared as Data Integrity principle.
    c) But why not to follow the above principles in case when one session reads data and another session tries to truncate or drop table (or do other DDL operations)?
    It is counter-intuitive. Why not to put TM 2 (SS) lock during SELECT execution that would prevent DDLs on this table?
    What I only can assume is that this is only because some technical difficulty or limitation.
    What is this limitation or other reason in favor of which Oracle sacrificed consistency in this case?

    user11181920 wrote:
    Aman,
    There was no need to clarify how DML lock works, I know that.
    Also I know that in Oracle a Select does not lock neither table rows nor table itself.
    The reason I mentioned it because you brought up the word change which is far better suited for DML's than DDL's as the former has a requirement to have its Undo preserved.
    Again, my question was why Select does not protect itself by locking table(s), partitions and indexes?Protect from what? There is nothing wrong with doing a select. What would happen with a select doing a lock on the table before being executed in its entirety (forget DDL and DML altogether for a moment) ? State one good reason that there should be a lock for the select. If it has to, it would be always isn't it?
    The keyword here is concurrency and that's what is the best when the number of locks obtained are lesser at non-required operations. A select doesn't change anything that's why in Oracle, there is no read-level lock.I am not saying about row locks while reading. They are not needed because Undo resolves concurrency.Only in the case of DML where the change is still active and the buffers are dirty. With a DDL, its an implicit commit.
    I am asking why Select does not enqueue one, only one lock per object that participates in the Select?Again, my question back to you is, what good you would get from it? What purpose it would solve?
    It is not very expensive, I suppose. But it would protect from DDLs that can destroy the Select's result set. You have seen in your system and in my demo(and that's what the the question was on the other thread also) that the result remains intact and its not a behavior from now. Its the same since the time I have started learning Oracle. Can you explain that why you think that the result of select statement would be wrong for a drop table? I believe, its been stated repeatedly that if the select has no requirement to look back the table, it would get completed. Only if the select needs to access the table again, it would fail. So even if we consider your explanation, there is no wrong result shown at all. Once the session encounters that the table is dropped for the statement, the execution stops right away. So where is the destroyed result?
    Yes, it is less dangerous when Select does not lock table comparing with what would happen with DMLs in such case (that is why DMLs protect themselves by TM 3), it affects only the Select and its consumer, but still ... I don't understand this Oracle's decision. What is a reasoning behind it?.As I said, to improve concurrency.
    Aman....

  • HT1296 I cannot sync with my music on itune to iphone. I checked the songs, or the play list, start sync, but it does not put them on the iphone. Some of the songs are from CDs

    I cannot sync with my music on itune to iphone. I checked the songs, or the play lists, start sync, but it does not put them on the iphone. Some of the songs are from CDs

    Hi Mike,
    I have Iphones since they cam out buy IO7 on my iphone 4 is slow and frustrating. I sync itunes with sync window. I tried cable and wireless. I have enough space. If I have a playlist say with 200 songs it will say on itunes sync window syncing 200 songs however I only get 150 songs on my iphone. I have restored iphone twice, I have tried playlists and smart play lists. It seems not to sync the same songs all the time. Prior to IO7 in sinced all my songs. I see on the chats that this is a big problem. Do you have any solutions. the songs that dont sync are the same format as those that do.
    Alx

Maybe you are looking for

  • ZEN Vision:M 30GB Battey not recharg

    Has any one else?had any issues with the battery not recharging on the ZEN Vision:M 30GB. The battery Icon does even show that is?recharging. Any suggestions?I emailed Creative Lab support and they told me this below!?All ZEN MP3 players (except ZEN

  • Why Some of Elements Wasn't Display Before Opening Layout Of Application

    Hi, is there a webdynpro application that was used without sap portal ( with an url ). an error occured last time; some of elements weren't displayed in explorer. then i opened the layout of that wda application and tested it so all elements were dis

  • Measuremen​t Studio help reference no longer works correctly.

    I've recently loaded a new version of MSDN (Oct. 2001) and Adobe Acrobat Reader 6.0(the latest as of July 2003. Now the hyperlinks in the Measurement Studio Reference give an error that indicates it cannot no longer find the linked information.

  • TS4002 Shopping spam email on iPhone & iPad mini

    I am now getting serious spam email and would like to block it from going to iPhone & iPad, but can't figure out how to do it... HELP it is overtaking my email!

  • Slow editor after update

    Is it my imagination, or has there been a performance hit after update 1? After heavy use, I've had to restart eclipse in order to speed things up, which seems to help for a short time, but eventually the editor slows down again, particularly on larg