XMLELEMENT forcing a tag empty "short"?

I want to create an XML carrying data in attributes.
To this end, I am creatinmg a lot of epmty tags:
select XMLElement ("test", xmlattributes(1 as "test") ) from dual;
XMLELEMENT("TEST",XMLATTRIBUTES(1AS"TEST"))
--------------------------------------------------------------------------------
<test test="1"></test>
But I want the form 'short' of empty tags: tt > & lt; test test = "1" / > < /tt >
How to set this up?

Good bye
DPT

How can I remove "print pretty" at the same time?

You can not. Opting out print by nature, but you can set the size of the tabs to zero, if that helps:

AS CLOB
INDENT SIZE = 0

Line breaks will be still there however.

Tags: Database

Similar Questions

  • How to generate the xml tag empty when meets elements void inside

    Hi gurus,

    IAM facing a problem to generate the empty tag, here is my file that I'm generating now
    <HEADER>
        <MINISTRY_CODE>RPO</MINISTRY_CODE>
        <DEPARTMENT_CODE>000</DEPARTMENT_CODE>
        <ORDER_CODE>RPO000EPO11001002</ORDER_CODE>
        <EXTERNAL_SYSTEM_CODE>E</EXTERNAL_SYSTEM_CODE>
        <AMENDMENT_NUMBER>0</AMENDMENT_NUMBER>
        <VARIATION_NUMBER>0</VARIATION_NUMBER>
        <EXCEPTIONS>
          <EXCEPTION>
            <EXCEPTION_CODE>PO016</EXCEPTION_CODE>
            <EXCEPTION_LONG_DESC>PO cannot be created/amended successfully</EXCEPTION_LONG_DESC>
          </EXCEPTION>
        </EXCEPTIONS>
      </HEADER>
      <ITEMS>
        <ITEM>
          <LINE_NUMBER>1</LINE_NUMBER>
          <EXCEPTIONS>
            <EXCEPTION>
              <EXCEPTION_CODE xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
              <EXCEPTION_LONG_DESC xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
            </EXCEPTION>
          </EXCEPTIONS>
          <LOCATIONS>
            <LOCATION>
              <LINE_NUMBER>1</LINE_NUMBER>
              <EXCEPTIONS>
                <EXCEPTION>
                  <EXCEPTION_CODE xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
                  <EXCEPTION_LONG_DESC xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
                </EXCEPTION>
              </EXCEPTIONS>
              <DISTRIBUTIONS>
                <DISTRIBUTION>
                  <LINE_NUMBER>1</LINE_NUMBER>
                  <EXCEPTIONS>
                    <EXCEPTION>
                      <EXCEPTION_CODE xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
                      <EXCEPTION_LONG_DESC xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
                    </EXCEPTION>
                  </EXCEPTIONS>
                </DISTRIBUTION>
              </DISTRIBUTIONS>
            </LOCATION>
          </LOCATIONS>
        </ITEM>
      </ITEMS>
    </GEBIZ_ORDER_ACK>
    current I'm generating tags EXCEPTION even if it is null as
    < EXCEPTIONS >
    < EXCEPTION >
    < EXCEPTION_CODE xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" xsi: Nil = "true" / >
    < EXCEPTION_LONG_DESC xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" xsi: Nil = "true" / >
    < / EXCEPTION >
    < / EXCEPTIONS >
    but my requirement is them does not when the exception code is null and generate as
    < EXCEPTIONS / >

    This is sql that I use to generate the above said code let me know how can I control who
                       SELECT xmlserialize(document
                                  xmlelement("GEBIZ_ORDER_ACK"
                                  , xmlagg(
                                      xmlconcat(hdr, dtls)
                                    )
                                  )
                                  as clob indent size = 2
                                )
                       --  INTO lv_out
                         FROM (
                               SELECT xmlelement("HEADER"
                                           , xmlelement("MINISTRY_CODE", poh.ministry_code)
                                           , xmlelement("EXCEPTIONS"
                                                 , xmlelement("EXCEPTION"
                                                             , xmlelement("EXCEPTION_CODE"   --,NVL(poh.exception_code,'NULL')
                                                             , xmlattributes(
                                                               NVL2(poh.exception_code,null,'http://www.w3.org/2001/XMLSchema-instance') as "xmlns:xsi"
                                                             , NVL2(poh.exception_code,null,'true') as "xsi:nil"
                                                               )
                                                             ,poh.exception_code)
                                                             , xmlelement("EXCEPTION_LONG_DESC"
                                                             , xmlattributes(
                                                               NVL2(poh.exception_long_desc,null,'http://www.w3.org/2001/XMLSchema-instance') as "xmlns:xsi"
                                                             , NVL2(poh.exception_long_desc,null,'true') as "xsi:nil"
                                                               )
                                                             ,poh.exception_long_desc)
                                                             )
                                                       )
                                           ) hdr
                                     , xmlelement("ITEMS"
                                     , xmlagg(
                                              xmlelement("ITEM"
                                               ,xmlelement("LINE_NUMBER", v1.line_no)
                                               ,xmlelement("EXCEPTIONS"
                                                        , xmlelement("EXCEPTION"
                                                                    , xmlelement("EXCEPTION_CODE"    --,NVL(v1.exception_code,'NULL')
                                                                    , xmlattributes(
                                                                      NVL2(v1.exception_code,null,'http://www.w3.org/2001/XMLSchema-instance') as "xmlns:xsi"
                                                                    , NVL2(v1.exception_code,null,'true') as "xsi:nil"
                                                                      )
                                                                    , v1.exception_code)
                                                                    , xmlelement("EXCEPTION_LONG_DESC"
                                                                    , xmlattributes(
                                                                      NVL2(v1.exception_long_desc,null,'http://www.w3.org/2001/XMLSchema-instance') as "xmlns:xsi"
                                                                    , NVL2(v1.exception_long_desc,null,'true') as "xsi:nil"
                                                                      )
                                                                    ,v1.exception_long_desc)
                                                                    )
                                                          )
                                               ,xmlelement("LOCATIONS"
                                               ,( SELECT xmlagg(
                                                          xmlelement("LOCATION"
                                                        , xmlelement("LINE_NUMBER",v2.location_line_no)
                                                        , xmlelement("EXCEPTIONS"
                                                        , xmlelement("EXCEPTION"
                                                        , xmlelement("EXCEPTION_CODE"   --,NVL(v2.exception_code,'NULL')
                                                        , xmlattributes(
                                                          NVL2(v2.exception_code,null,'http://www.w3.org/2001/XMLSchema-instance') as "xmlns:xsi"
                                                        , NVL2(v2.exception_code,null,'true') as "xsi:nil"
                                                          )
                                                        , v2.exception_code)
                                                        , xmlelement("EXCEPTION_LONG_DESC"
                                                        , xmlattributes(
                                                          NVL2(v2.exception_long_desc,null,'http://www.w3.org/2001/XMLSchema-instance') as "xmlns:xsi"
                                                        , NVL2(v2.exception_long_desc,null,'true') as "xsi:nil"
                                                          )
                                                        ,v2.exception_long_desc)
                                                                    )
                                                          )
                                               ,xmlelement("DISTRIBUTIONS"
                                               ,(SELECT xmlagg
                                                 (       xmlelement("DISTRIBUTION"
                                                         ,xmlelement("LINE_NUMBER", v3.distribution_line_no)
                                                         ,xmlelement("EXCEPTIONS"
                                                         , xmlelement("EXCEPTION"
                                                         , xmlelement("EXCEPTION_CODE"--,NVL(v3.exception_code,'NULL')
                                                         , xmlattributes(
                                                           NVL2(v3.exception_code,null,'http://www.w3.org/2001/XMLSchema-instance') as "xmlns:xsi"
                                                         , NVL2(v3.exception_code,null,'true') as "xsi:nil"
                                                          )
                                                         ,v3.exception_code)
                                                         , xmlelement("EXCEPTION_LONG_DESC"
                                                         , xmlattributes(
                                                           NVL2(v3.exception_long_desc,null,'http://www.w3.org/2001/XMLSchema-instance') as "xmlns:xsi"
                                                         , NVL2(v3.exception_long_desc,null,'true') as "xsi:nil"
                                                          )
                                                        ,v3.exception_long_desc)
                                                                    )
                                                            )
                                                          ) ORDER BY v3.distribution_line_no
                                                       ) FROM xgbz_fin_stage_ack_pot_v@dev_1157.RP.EDU.SG v3
                                                        WHERE v2.po_cont_code = v3.po_cont_code
                                                          AND v2.line_no = v3.line_no
                                                          AND v2.location_line_no = v3.location_line_no
                                                          AND v2.fs_timestamp = v3.fs_timestamp
                                                          AND v3.tx_timestamp IS  NULL
                                                     )
                                                   )
                                                 ) ORDER BY v2.location_line_no
                                              ) FROM xgbz_fin_stage_ack_pol_v@dev_1157.RP.EDU.SG v2
                                               WHERE v2.line_no = v1.line_no
                                                 AND v2.po_cont_code = v1.po_cont_code
                                                 AND v2.fs_timestamp = v1.fs_timestamp
                                                 AND v2.TX_TIMESTAMP IS NULL
                                 )
                               )
                             ) ORDER BY v1.line_no
                           )
                         ) dtls
                    FROM xgbz_fin_stage_ack_poh_v@dev_1157.rp.edu.sg poh,
                         xgbz_fin_stage_ack_pod_v@dev_1157.rp.edu.sg v1
                   WHERE v1.po_cont_code = poh.po_cont_code
                     AND v1.fs_timestamp = poh.fs_timestamp
                     AND v1.tx_timestamp IS NULL
                     AND poh.tx_timestamp IS NULL
                     AND poh.po_cont_code = rec_po_ack.po_cont_code
                   GROUP BY poh.po_cont_code,poh.ext_system_code,poh.amendment_no,poh.variation_no,poh.exception_code,poh.exception_long_desc,
                            poh.ministry_code, poh.dept_code)
    It's urgent please help in this regard.

    Thanks in advance.

    Concerning
    Mr. Nagendra

    Hello

    Here are two possible solutions:

    xmlelement("EXCEPTIONS",
      xmlforest(
        xmlforest(
          v1.exception_code as "EXCEPTION_CODE"
        , v1.exception_long_desc as "EXCEPTION_LONG_DESC"
        ) as "EXCEPTION"
      )
    )
    

    Mun

    xmlelement("EXCEPTIONS",
      case when v1.exception_code is not null
             or v1.exception_long_desc is not null
        then xmlelement("EXCEPTION",
               xmlforest(
                 v1.exception_code as "EXCEPTION_CODE"
               , v1.exception_long_desc as "EXCEPTION_LONG_DESC"
               )
             )
      end
    )
    
  • adding element tags empty in xsl

    Hello

    I have two schema A.xsd and B.xsd. A.xsd has 2 values < name >, < number > < name > may come or may not seem responsible for entry.

    My B.xsd has 3 fields < empName > < empNumber > < status > and I need transform from A to B in xsl in following way.
    A. < name > Configuration-> B < empName > and a. < number >. < empNumber >.

    It is even if < name > is not coming, my variable target type B must have value as < empName > < / empName > inside.

    Guidance about doing the same thing in the xslt file is a great help.

    I tested the slot the XSL for two conditions.
    1 : name set to null
    2. remove the tag name entry

    In both cases, the empname comes as . I don't think you have to manage it more precisely.






    See you soon,.
    -AR

  • Export in svg gives svg tags empty with no path or of a group tags

    After the installation of Illustrator CC (2015) updated earlier today, I have questions, saving a file .ai with several worktops in .svg.

    Another user on another machine which has not installed the update is seen any of the same problems and is able to export the desired .svg files.

    The procedure is the following:

    1. file > save as

    2 format: SVG, see use of work plans, select all

    Screenshot 2015-06-16 15.05.25.png

    3. Select a default set of options (other combinations have been tried with the same result)

    Screenshot 2015-06-16 15.05.32.png

    4. the resulting files out to a tiny size.

    Screenshot 2015-06-16 15.05.54.png

    5. open one of the files .svg resulting in a text editor gives the following result.

    Screenshot 2015-06-16 15.06.22.png

    6. While the same file of my colleague from the results in the following file, based on the same file .ai (transferred via Skype while we tried just to be sure, that there is no synchronization issues in Pixelapse)

    Screenshot 2015-06-16 15.10.50.png

    Has anyone encountered a similar problem?

    Or this look like something that could be linked to enforcement on my end?

    rorkjopa,

    There seems to be some unresolved problems with CC 2015, not least with SVG, reported several times already. You can roll back to CC, 2014, if you uninstalled can reinstall CC 2014 tab previous versions in the CC management application.

    You can uninstall 2015 for now if you wish.

  • "Empty trash" greyed out

    Original title: try to empty the trash.

    Hi all, first time here - I said to empty the trash, but the tag 'empty trash' is not highlighted and therefore does not work - where I'm going wrong? Thanks in advance.

    When he went to depends on which browser you used to download it and how this browser has been configured.

    Or the other

    Download he new, but this time with the right button, select "Save target as" or "save the link under" and note you economy when the dialog box "save under" appears

    or

    B. look for

    • B. Click Start > search
    • Click "all files and folders".
    • In "All or part of the file name," type
      restorerecyclebin.reg
    • Under "search in", select "hard disk Local (c).
    • Click on the double arrow next to 'advanced options '.
    • Check the box "search system folders".
    • Check the box "find the hidden files and folders".
    • Check "Search subfolders".
    • Click on search

  • NFC - interception unsupported Tags Event - UID reading only

    Hi, I worked on a few ideas of NFC where I find that I am running in unsupported tags.  Like the classic Mifare 1 K

    (NTAG06)

    Ideally I need only UID of these and I can move forward.  My understanding is that it is ultimately in the negotiation of the initial Protocol of LLCP?

    I read a lot of great posts on NFC with waterfalls, which led me to see that I need to the native library of the nfc to reach probably catch the event.

    My main question is how / where I hang for the event "tag empty or not supported"?

    My goal is to save my application for the event of invocation, but the record seems to imply that the MIME type will be together...

    Can anyone provide a reference for the serial number of an unsupported tag before trying to treat a NDEF or knowledge Mime?

    THX

    Neil

    OK I figured it (this always happens after I post...)

    OK the place to get the UID to any Mifare Classic 1 K can be demonstrated in the application of the NFC tool when you sign up for a reading for 14443 (example of the GVB transport card)

    There is a check it for variants...

    In the "else" of the audit of the variant, you can just run displayTagInformation (target, false);

    This will then display it...

    The direct method is the snage it the nfc_event for the 14443 scan using (nfc_get_tag_id) and pass the appropriate parameters to fill a table/buffer ID.

    The NDEF is Mifare classic mistake - but if you write a cloud apps like me then a UID is all that is necessary.

    Neil

  • Restructuring of the diff between Force and Dense to restructure

    Hello

    Can someone tell me what is the difference between the force and the dense restructuring restructuring?

    I heard heavy restructuring not remove empty blocks and the restructuring of the force deletes. Is this true?

    Hello

    Please visit the following link: -.

    http://docs.Oracle.com/CD/E12825_01/EPM.111/esb_dbag/frameset.htm?dstrestr.htm

    And regarding your second question, the answer is Yes. Explicit (force) restructuring removes empty block while restructuring than dense is not.

    Kind regards
    -SM

  • Image tag with the XML tag

    Hi all

    I want to mark all my images embedded in a CS6 document with an XML tag. I use CS6 on Windows with JavaScript. Any advice would be appreciated. Thank you.

    Rick

    OK, it seems I have to add the element to the structure, and then use "tagging" to apply the item to my image.

    // Get the selected image.
    var image = app.selection[0].getElements()[0];
    // Get the Story element.
    var root = doc.xmlElements.item(0);
    var storyElem = root.xmlElements.item(0);
    // Add the "Image" element to the Story element.
    var imageElem = storyElem.xmlElements.add ("Image");
    // Tag the selected image with the Image tag.
    image.markup (imageElem);
    
  • Bug? Tags accessibility conversion from Word 2007

    This seems to be a minor problem, but it is one that could create a lot of frustration for a disabled person using a screen reader to read tabular data in a PDF document.

    As you know, Acrobat plays well with applications Office allowing users to create (structured) tags, accessible PDFs from MS Office files. I just created a simple docx file with a (attached) table, and when I converted it to PDF, I noticed a difference in the tags that it creates from the conversion of Word XP. As see you in the Word file, the table is very basic, but one of its column headings is divided into two cells. It's actually a very common technique for the presentation of the data in the table. To automatically mark as cells of table header < TH > header lines in the PDF file, I put the first two lines of "Repeat header lines."

    Conversion from Word 2007 with the "Save as Adobe PDF", or any other method that uses the Acrobat plugin, creates a tree of tag that is missing a < TH > tag. I found the problem when I was testing a file with the JAWS screenreading software. Using the JAWS "active cell" command (Ctrl-Alt-Numpad 5) to announce the column headings. It reads the wrong header for the active cell because of the < TH > missing. So, in my example file, he announced $2 and $5 as amount 2010 rather than 2009. This could be quite confusing for a user, to say the least screen reader.

    Then, I compared the result to the new feature "Save as PDF or XPS" from Word 2007. This feature of the tag of the file properly and header to the height columns.

    Compare the joint "save-as-adobe - pdf.gif" to "Save-as-pdf - xps.gif. Note the < TH > tag empty (but necessary) in the image of the latter.

    As a validation test, I had a colleague with Word XP the file convert. These tags were right too. So this must be a problem between Acrobat and Word 2007.

    Someone at - it further comments on this? I'll conduct accessibility training and at the present time, it seems that the use of the Word 2007 conversion feature is the way to go.

    I'm using Acrobat 9 Pro.

    Thank you

    Joe

    Hey Joe,

    I feel your frustration. For any organization that needs or wants to commit to providing accessible information online
    a serious logistics problem raises its head. PDF, HTML, what is the right way to do (and it's possible)
    requires more resources (training, knowledge, hardware, software, changes to work flow, perhaps some staff members more).
    Is not "work smarter with less & pump more" in this place.

    Yes, it is useful (and necessary) for 'being one' with the 'paragraphs' - WCAG 1.0 - WCAG 20 S508.
    However, as soon as someone starts to provide PDF files which must be 'accessible' the first, most important reference is ISO 32000.
    The references of PDF from Adobe, which preceded the PDF becomes an ISO standard are useful; but ISO 32000 is the norm.
    In this documentation, there is a full discussion of what he * needs to be done to provide an accessible PDF.
    Without a good understanding of this content, other information tend to bring about a de-escalation of focus opacity, which can
    contribute to conceptual errors important view accessible PDF.

    Entry blog of Leonard Rosenthol AUC provides a link to the ISO standard permitted version Adobe (free) of the ISO 32000-1.
    http://www.acrobatusers.com/blogs/leonardr/Adobe-posts-free-ISO-32000

    You will find additional information useful in these two documents:
    (1) - PDF Accessibility QAnywhere (from the Acrobat SDK add-on)
    https://Acrobat.com/#d=J7bWW4LvNoznh8fHCsfZDg

    (2) - reading the PDF through MSAA
    https://Acrobat.com/#d=uIOvkVTP74kag3bXFJLIeg

    On the JAWS - Yes, very used. However, not the exclusively used on demand.
    If I use Windows Eyes, NVDA, a braille reader or something else then what?
    JAWS * not * defined 'is available '...

    Re: (1) (1)
    "Match and if...". »
    Consider "Stop front right on red".
    '' Respect '' is stop on Red - turn right
    'Intent' (aka usability) is stop on Red - Look Good to come from traffic that has the right of way - performance - when clear, turn right.

    But, at least, we don't talk of the "left on red" 8 ^)

    Re: (2). (2)
    Just an observation. A defective product that claims to be 'everything' may enter a sticky wicket entities (individuals/businesses).
    Put a high volume of defective products on its same does increase the probability that a "shadow".
    Quantity replaces quality just isn't a precursor to success.
    Target species - and national judicial action class action that has been taken against him with regard to the "accessibility" of services information online.
    Resolved now - see the web site of the NFB.

    Re (3) (3)
    Ah, but what would say Judy justice or judge Marily?
    Efficiency does not provide a product of the "whole".
    I doubt it will ever be a "one-click" seamless between the dominant products of one of the software houses.
    They are competitors intense. That it is not others providing provide a product of 'whole', right?
    For example, if the organization wants to 'make accessible PDFS' label then it pays transport costs - Adobe Pro, training, workflow appropriate, etc.
    which allow the delivery of PDF files meet the standards to which formed a well containing the tag output is PDF (accessible is a subset of this).
    There is no other way for PDF.
    If this cannot be done so there are always HTML as an acceptable method (for some it's the way privileged and only 'true').

    However, HTML is 'right' for accessiblilty is just as demanding in its own way.

    With each version of TA / dot release, JAWS - Windows Eyes - NVDA & others hone in on using PDF ISO 32000 Standard closer.
    This means that if you deploy "accessible" PDF, you will need to provide PDFS who live ISO.
    Do not forget that the paragraphs of S508 began when, in fact, HTML was 'it '. In terms of software that has been there are geological ages.
    For contemporary AT effectively analyze the PDF, the PDF file must be a PDF containing the tag well trained with a format/layout that reflects a logical hierarchy.
    Creation of all that it should start in the environment of creation with the author of the content.
    PDF post-processing output then ensures that the elements (tags) PDF are of the correct type, have the required attributes, etc..
    Without this, AT will not be able to provide the use of effect for the end user of the PDF file.

    So, for AT correctly 'work' the PDF file, elements of * must * have set the Scope attribute, values of row value and scope of column defined, etc..

    Scope, line Span, range column, ID of the Table and headers must be added in the framework of the post-processing in a PDF using Acrobat Professional.
    An alternative is the plugin Netcentric CommonLook for Acrobat Professional. What it does, Acrobat Pro can do; However, the CommonLook
    provides a robust user interface. Disadvantage: some 1 k $ per seat is not 'cheap' and it has a * steep learning curve * (Sitka Pass?).

    Two related table resources run this AUC thread (in post 3 and 4). They can be of some use.

    http://www.acrobatusers.com/forums/aucbb/viewtopic.php?id=23178

    When the "smelly things" feeds into the Lair of the fan, it is prudent to not be directly downstream, huh.
    Consider the target and the situation, in which they began.
    Consider delivery of the PDF accessible agencies fedgov or stategov.
    They won't be in front of the fan if the ease of use of PDF files becomes a problem.
    It will be rather those submitting. After the Agency said "accessible".

    Better to slow down and right or loading ramp of resources in support of "Annex" as to the stake themselves as someones 'feed' tomorrow, no.?

    Ultimately, PDF, HTML, or any 'format', accessibility is the ease of use + compliance.

    Needed improvements in the professional development and training, software/equipment, * time *?
    Yes. But, all of this boils down to 'where the rub the road' - what tires are you on?
    It can be done. I do a little bit at a time all day. Often, this is what it takes.
    Products to be delivered are provided; but, with no bad labeling and advancement is identified, celebrated and everything continues until the
    the 'road' is filled correctly.
    Won't wash outs, bridge collapse or what not tomorrow .
    (But then I'm a fan of "Holmes on Homes", which can go a long way toward understanding my point of view when it comes to accessible PDF).

    Re: function() {Return...
    Good question.
    Write my guess - either to leave the cut & paste that I made at the start of the application I used to assemble and captures screen or something related to the Adobe Forum application.
    It may be that I am "special"; If that were the case we my Lotto occasional quick choice would have been a big winner $ ago.

    FWIW-
    You will find a number of "Accessible PDF" related to resources in discussions at the Forum of the accessibility of the AUC.
    http://www.acrobatusers.com/forums/aucbb/viewforum.php?id=18

    Two PDF Accessible related on demand seminars are also available.
    Search for Duff Johnson and Charlie Pike (at page 2) seminars.
    http://www.acrobatusers.com/learning_center/eseminars_on_demand

    Be well...

  • After the last update of Firefox, Firefox drops after 30 seconds - unusable, how to return to the previous version?

    I am running Windows Vista. After update of Firefox, it will load and after about 30 seconds or less, it falls back to the Mozilla Crash Reporter screen. If I click on anything on the screen, he abandoned that much faster. Cannot even verify the version so that it falls. I need to go back to a previous version that worked at least on my machine. Basically, I have been forced to start using short-term solutions Explorer and am plans to use one of the other available browsers since Firefox no longer works for me. I really like Firefox and would like to get this matter resolved.

    I'm glad to hear that your problem has been resolved.

    If you have not already the case, please mark this thread as solved by the solution of marking.

    This will help other users experience similar problems helps to find faster and more efficiently.

    I hope that you will continue using our products and we thank you for contacting the Mozilla Support.

  • How can I see the amount of cycles of battery on the Satellite U200-181?

    I have Satellite U200-181, and I use it hard, each. I want to be ready replace my battery, when he has 400 cycles.
    How can I see the amount of cycles of battery on my laptop?

    You shouldn't see this. You will see that the battery capacity goes down and will be empty shortly after. No one says that you will be able to use the 400 battery cycles only. You may be lucky and the battery will be more long service life.

    My Tecra M1 is about 4 years old and still works with the original battery.

    Your question is quite unusual and I am really interested about new comments.

  • Outlook Express automatically compacts

    A guest on the program began appearing in recent weeks asking if I want to compact & copy OE. He nagging guard, and if I OK it, it compact & copy my hundreds of e-mails, even those already treated. Thi is supposed to free up disk space, but it puts all copied originals (those same previously copied) in the trash, forcing me to empty the bin every time. I can't find a control or the source program. I did a Word file with two screenshots. Can anyone identify the source or how get rid of?

    Begin to grasp at straws, but there must be an answer somewhere try these in order and test after each step.
     
     
    1: you did a manual compact all folders, correct?
     
    Click Outlook Express at the top of the the folder tree so no folders are open. Then: File | Work offline (or double-click on work online in the status bar). File | Folder | Compact all folders. Don't touch anything until the compacting is completed.
     
     
     
    2: go to start | Run and type msconfig and go to the Startup tab uncheck everything except Microsoft Security Essentials and restart. When starting, check do not show me again once in the prompt you see.
     
    Does make a difference?
     
     
    3: Start | All programs | Startup folder. Anything in there?
     
     
    4: try a new OE identity. File | Identities | Add the new identity. Create a new one and try it. This make the default identity and see if you get the compact guest for this identity. If all goes well, you can import your messages and address book from the old identity and delete it.
     
    Note: Do not use the main word in the name of the new identity.
     
     
     
    See if you can determine the program that is the culprit.

     

     
  • My computer ram

    My computer while sitting idle with no open software, the hd constantly running. I have 1 GB of ram and the eye to the task mgr I use 833 MB of ram, which is running to cause this problem

    Windows requires little memory just to load and run himself.  Some memory may be used to speed up the system performance by caching frequently used files or system files.  RAM is there to be used - best that it be used, rather than trying to force it is empty and so unnecessary.

  • Slimline S5 1554 Joshua-H61 Mthrbrd SSD - HP

    Morning - I have a HP Slimline Pavilion S5-1554, product HP #: H3L78AAR #ABA

    The system supplied with Windows v8.0 and has been updated for Windows ver 8.1

    I think that HP Support App identifies the unit as a "model H3L78AA".

    As with the purchase, the system came with a single hard disk 1 to and 6 GB of RAM.

    In any case, the technical specifications of the HP lists the motherboard of the system as a Joshua-H61-Μatx"

    As it sits right now, it a (1 x) length PCI Express x 16 expansion "(Gen 2.0) slot" and "

    3 x PCI Express (currently empty) short x 1 also by the spec sheet «Gen 2.0» HP

    My question is, is anyone know if the S5 (?) Support chipsets Intel H61 as one of these mSATA Intel 525 series Lincoln Crest SSDMCEAC060B301 60 GB SSD SATA III MLC internal Solid State Drive (SSD) that looks at it would be plug directly into one of the slots PCI Express short?

    If so, could the SSD be used with the Intel Smart Response Technology for SSD caching?

    This would put most, if not all of the Win operating system 8.1 on the SSD for faster access, as well as the "frequently used" files     Thanks in advance for any help.

    Michael

    Mike3220 wrote:

    Thanks for the reply.   I am trying to get information on the different options of SSD.

    Looking at the motherboard of Joshua, there seem to be two additional unused SATA ports.

    Do not have the box open at the moment, but if I remember correctly, the connectors were able Brown

    The two used connections (one for the WD 1 TB hard drive and one for the CD/DVD drive), at least one was "yellow".

    No idea if these are connections 6Gig/ch, or if it makes a difference, what connection a SSD is connected to?

    There is not much space available to put an extra drive in the case.  I suppose you could remove the WD HD disc height and try to made two half-height or a 2.5 "1 TB + SSD in the same space occupied by the disk hard 3.5" original WD.  That need also I try to educate myself about how separate where the operating system should be placed against the location of data storage.

    I see that WD has now a sort of hybrid drive, the WD Black2, but maybe it's a bit expensive etc.

    See you soon

    The SATA ports are only SATA II up to 3Gbps.

    http://www.Intel.co.uk/content/www/UK/en/chipsets/mainstream-chipsets/H61-express-chipset.html

    http://en.Wikipedia.org/wiki/LGA_1155

    It's strange because the socket supports processors Ivy Bridge, but the chipset is Sandy Bridge. I think that there are numbers in each port, so you don't have to bother with the colors. I suggest to get a 2.5 drive "strong (Samsung Pro would be my choice) on the SATA 1 port, then on HDD to SATA 2 etc...

    You can always set the startup disk in the BIOS in any case it really is up to you. Samsung have a use for the migration of the contents of the original hard drive including the operating system. This means that you could have the drive as boot drive solid and keep the original for data hard drive. There is no need of a hybrid if the boot drive is a pure solid state drive.

  • WOW/graphics error "display driver nvlddmkm stopped responding and was retrieved successfully."

    Help, please. On the next computer I have terrible crash problems while playing WoW. Critical error WOW States: "not enough memory to process command - 11 538 bytes requested."

    When running 3D Mark Vantage I can reproduce the "display driver nvlddmkm stopped responding and was recovered successfully.

    Processor Intel Core i7 CPU 920 @ 2.67GHz
    Details of the component
    NVIDIA GeForce GTX 295 graphics
    4 095 MB total graphics memory available graphic set
    Main hard drive 53GB free (140 GB Total)
    64 bit version with service PAC 2 Vista Ultamate

    Forums are full of posters indicating that it is a Vista / Nvidea incompatibility problem that has been around for years and that the problem is not treated. I tried everything I can think of, check the RAM to download new drivers, to the removal of unnecessary records of WOW. I reinstalled everything, run each diagnostic tool in the plane, patches downloaded, checked for the virus and still no help.

    I am currently able to play WOW on the smaller graphics settings and avoid cities. With this level of equipment, it's a shame, really, I should be able to do more.

    Did anyone have any suggestions of what I can do at this point?

    OK, I did a lot of research on this issue.  The problem lies in the Blizzard, most of the time.

    World of Warcraft is a set of 32 bits.  Because it is strictly 32 bit, it only has access to 2 gigabytes of memory.  Windows manages the other 2 giga of addressable space.

    Most of the developers of games flag their games before the compile time to use larger amounts of memory.  Blizzard doesn't do this, because their anti-cheat system and third-party tools rely on the 32-bit addressing and address 64-bit would mean that they must all be rewritten.

    What happens in the game, is that your footprint large capacity memory card is mapped in the game.  In general, it is when your settings are high, because it uses the most memory, which explains why the game is playable when you use minimal settings.  Given that the configuration of your particular graphics card uses close to 2 gig of RAM itself, quickly force you the game short of memory addressable space.

    To resolve this problem, you may be able to play with reduced settings.  Reduce your resolution is usually the best way to limit the use of memory, since it increases exponential use RAM when you increase the resolution.  You might have to play with different parameters.  You can open the upward Task Manager and monitor the use of your memory WoW game to see where the sweet spot is maintaining your memory under control.

    Blizzard will have to make the difficult choice to eventually allow access extended memory.  More people are buying equipment like yours, this problem will be more widespread.

Maybe you are looking for