Newbie mistake, but I can't find it, help appreciated on XML import

I'm sure I'm making a newbie mistake but I can't find it. If someone could tell me what I'm doing wrong I would appreciate it.
Step one works (i'm logged as user xdb on the database):
SQL*Plus: Release 10.1.0.2.0 - Production on Wed Dec 20 13:47:53 2006
Copyright (c) 1982, 2004, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options
SQL> Declare
2 ignore boolean;
3 begin
4 ignore :=dbms_xdb.createFolder('/datamart');
5 ignore :=dbms_xdb.createFolder('/datamart/CustomerCare');
6 ignore :=dbms_xdb.createFolder('/datamart/CustomerCare/xsd');
7 ignore :=dbms_xdb.createFolder('/datamart/CustomerCare/xml');
8 commit ;
9 end;
10 /
PL/SQL procedure successfully completed.
Step two works, where I drag and drop via Windows Explorer my xsd file into http://d01db:8085/datamart/CustomerCare/xsd. It has a size of about 7k or so. Again, when connecting to the respository with Windows Explorer, I'm logging in as xdb.
Step three works, where I register the schema that I just put into the XML repository. Still logged into SQLPlus as xdb.
SQL> begin
2 dbms_xmlschema.registerURI
3 (schemaURL => 'http://xmlns.oracle.com/xdb/Steton.xsd'
4 ,schemaDocURI => '/datamart/CustomerCare/xsd/Steton.xsd'
5 ,genTables => true
6 ) ;
7 end;
8 /
PL/SQL procedure successfully completed.
SQL> describe STETONAUDITRESULTS;
Name Null? Type
TABLE of SYS.XMLTYPE(XMLSchema "http://xmlns.oracle.com/xdb/Steton.xsd" Element "StetonAuditResults"
SQL>
By the way, here is the schema:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb" id="StetonAuditResults" xdb:storeVarrayAsTable="true">
     <xs:element name="StetonAuditResults" xdb:defaultTable="STETONAUDITRESULTS">
          <xs:complexType>
               <xs:sequence>
                    <xs:element name="Control">
                         <xs:complexType>
                              <xs:sequence>
                                   <xs:element name="ResultCount" type="xs:int"/>
                              </xs:sequence>
                         </xs:complexType>
                    </xs:element>
                    <xs:element name="AuditResults">
                         <xs:complexType>
                              <xs:choice maxOccurs="unbounded">
                                   <xs:element name="AuditResult">
                                        <xs:complexType>
                                             <xs:sequence>
                                                  <xs:element name="AuditResultGlobalID" type="xs:string" minOccurs="0"/>
                                                  <xs:element name="AuditGlobalID" type="xs:string" minOccurs="0"/>
                                                  <xs:element name="AuditName" type="xs:string" minOccurs="0"/>
                                                  <xs:element name="AccountID" type="xs:string" minOccurs="0"/>
                                                  <xs:element name="AccountName" type="xs:string" minOccurs="0"/>
                                                  <xs:element name="AuditorID" type="xs:string" minOccurs="0"/>
                                                  <xs:element name="AuditorName" type="xs:string" minOccurs="0"/>
                                                  <xs:element name="AcctRepName" type="xs:string" minOccurs="0"/>
                                                  <xs:element name="AuditTypeID" type="xs:int" minOccurs="0"/>
                                                  <xs:element name="AuditTypeName" type="xs:string" minOccurs="0"/>
                                                  <xs:element name="DivisionID" type="xs:int" minOccurs="0"/>
                                                  <xs:element name="FaxBack" type="xs:string" minOccurs="0"/>
                                                  <xs:element name="EMailBack" type="xs:string" minOccurs="0"/>
                                                  <xs:element name="StartDateLocal" type="xs:dateTime" minOccurs="0"/>
                                                  <xs:element name="StartDateUTC" type="xs:dateTime" minOccurs="0"/>
                                                  <xs:element name="EndDate" type="xs:dateTime" minOccurs="0"/>
                                                  <xs:element name="UploadDate" type="xs:dateTime" minOccurs="0"/>
                                                  <xs:element name="ProcessDate" type="xs:dateTime" minOccurs="0"/>
                                                  <xs:element name="ApplicationVersion" type="xs:string" minOccurs="0"/>
                                                  <xs:element name="AuditResultNotes" type="xs:string" minOccurs="0"/>
                                                  <xs:element name="AuditorSignature" type="xs:base64Binary" minOccurs="0"/>
                                                  <xs:element name="AcctRepSignature" type="xs:base64Binary" minOccurs="0"/>
                                                  <xs:element name="InitialAuditResultGlobalID" type="xs:string" minOccurs="0"/>
                                                  <xs:element name="RecordType" type="xs:string" minOccurs="0"/>
                                                  <xs:element name="ModifiedDate" type="xs:dateTime" minOccurs="0"/>
                                                  <xs:element name="CategoryResults">
                                                       <xs:complexType>
                                                            <xs:choice minOccurs="0" maxOccurs="unbounded">
                                                                 <xs:element name="CategoryResult">
                                                                      <xs:complexType>
                                                                           <xs:sequence>
                                                                                <xs:element name="AuditResultGlobalID" type="xs:string"/>
                                                                                <xs:element name="CategoryGlobalID" type="xs:string" minOccurs="0"/>
                                                                                <xs:element name="CategoryName" type="xs:string" minOccurs="0"/>
                                                                                <xs:element name="CategoryReference" type="xs:string" minOccurs="0"/>
                                                                                <xs:element name="CategoryResultNotes" type="xs:string" minOccurs="0"/>
                                                                                <xs:element name="QuestionResults">
                                                                                     <xs:complexType>
                                                                                          <xs:choice minOccurs="0" maxOccurs="unbounded">
                                                                                               <xs:element name="QuestionResult">
                                                                                                    <xs:complexType>
                                                                                                         <xs:sequence>
                                                                                                              <xs:element name="AuditResultGlobalID" type="xs:string"/>
                                                                                                              <xs:element name="CategoryGlobalID" type="xs:string" minOccurs="0"/>
                                                                                                              <xs:element name="QuestionGlobalID" type="xs:string" minOccurs="0"/>
                                                                                                              <xs:element name="QuestionText" type="xs:string" minOccurs="0"/>
                                                                                                              <xs:element name="QuestionReference" type="xs:string" minOccurs="0"/>
                                                                                                              <xs:element name="ChoiceGlobalID" type="xs:string" minOccurs="0"/>
                                                                                                              <xs:element name="ChoiceText" type="xs:string" minOccurs="0"/>
                                                                                                              <xs:element name="ChoicePointsPossible" type="xs:double" minOccurs="0"/>
                                                                                                              <xs:element name="ChoicePointsEarned" type="xs:double" minOccurs="0"/>
                                                                                                              <xs:element name="QuestionResultNotes" type="xs:string" minOccurs="0"/>
                                                                                                              <xs:element name="QuestionCommentResults">
                                                                                                                   <xs:complexType>
                                                                                                                        <xs:choice minOccurs="0" maxOccurs="unbounded">
                                                                                                                             <xs:element name="QuestionCommentResult">
                                                                                                                                  <xs:complexType>
                                                                                                                                       <xs:sequence>
                                                                                                                                            <xs:element name="AuditResultGlobalID" type="xs:string"/>
                                                                                                                                            <xs:element name="CategoryGlobalID" type="xs:string" minOccurs="0"/>
                                                                                                                                            <xs:element name="QuestionGlobalID" type="xs:string" minOccurs="0"/>
                                                                                                                                            <xs:element name="QuestionCommentGlobalID" type="xs:string" minOccurs="0"/>
                                                                                                                                            <xs:element name="QuestionCommentText" type="xs:string" minOccurs="0"/>
                                                                                                                                            <xs:element name="QuestionCommentResultNotes" type="xs:string" minOccurs="0"/>
                                                                                                                                       </xs:sequence>
                                                                                                                                  </xs:complexType>
                                                                                                                             </xs:element>
                                                                                                                        </xs:choice>
                                                                                                                   </xs:complexType>
                                                                                                              </xs:element>
                                                                                                         </xs:sequence>
                                                                                                    </xs:complexType>
                                                                                               </xs:element>
                                                                                          </xs:choice>
                                                                                     </xs:complexType>
                                                                                </xs:element>
                                                                           </xs:sequence>
                                                                      </xs:complexType>
                                                                 </xs:element>
                                                            </xs:choice>
                                                       </xs:complexType>
                                                  </xs:element>
                                             </xs:sequence>
                                        </xs:complexType>
                                   </xs:element>
                              </xs:choice>
                         </xs:complexType>
                    </xs:element>
               </xs:sequence>
          </xs:complexType>
          <xs:key name="StetonAuditResultsKey_AuditResult">
               <xs:selector xpath=".//AuditResult"/>
               <xs:field xpath="AuditResultGlobalID"/>
          </xs:key>
          <xs:key name="StetonAuditResultsKey_CategoryResult">
               <xs:selector xpath=".//CategoryResult"/>
               <xs:field xpath="AuditResultGlobalID"/>
               <xs:field xpath="CategoryGlobalID"/>
          </xs:key>
          <xs:key name="StetonAuditResultsKey_QuestionResult">
               <xs:selector xpath=".//QuestionResult"/>
               <xs:field xpath="AuditResultGlobalID"/>
               <xs:field xpath="CategoryGlobalID"/>
               <xs:field xpath="QuestionGlobalID"/>
          </xs:key>
          <xs:keyref name="AuditResultCategoryResult" refer="StetonAuditResultsKey_AuditResult">
               <xs:selector xpath=".//CategoryResult"/>
               <xs:field xpath="AuditResultGlobalID"/>
          </xs:keyref>
          <xs:keyref name="CategoryResultQuestionResult" refer="StetonAuditResultsKey_CategoryResult">
               <xs:selector xpath=".//QuestionResult"/>
               <xs:field xpath="AuditResultGlobalID"/>
               <xs:field xpath="CategoryGlobalID"/>
          </xs:keyref>
          <xs:key name="StetonAuditResultsKey_QuestionCommentResult">
               <xs:selector xpath=".//QuestionCommentResult"/>
               <xs:field xpath="AuditResultGlobalID"/>
               <xs:field xpath="CategoryGlobalID"/>
               <xs:field xpath="QuestionGlobalID"/>
               <xs:field xpath="QuestionCommentGlobalID"/>
          </xs:key>
          <xs:keyref name="QuestionResultlQuestionCommentResult" refer="StetonAuditResultsKey_QuestionResult">
               <xs:selector xpath=".//QuestionCommentResult"/>
               <xs:field xpath="AuditResultGlobalID"/>
               <xs:field xpath="CategoryGlobalID"/>
               <xs:field xpath="QuestionGlobalID"/>
          </xs:keyref>
     </xs:element>
</xs:schema>
Step four is where I have problems. I'm using Windows Explorer to drag and drop an XML instance document into http://d01db:8085/datamart/CustomerCare/xml while logged into the repository as xdb.
Here's some of the test file that I'm using.
<?xml version="1.0" standalone="no"?>
<StetonAuditResults xmlns:xdb="http://xmlns.oracle.com/xdb" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/xdb/Steton.xsd">
     <Control>
          <ResultCount>112</ResultCount>
     </Control>
</StetonAuditResults>
Note, the test XML file is 427k in size and I can't post it here. There is a lot of data between the </Control> tag and the </StetonAuditResults> tag.
During the Drag and Drop I get the message "An error occured copying some or all of the selected files."
My first suspicision was that the XML document failed validation. So I changed the namespace line to
<StetonAuditResults xmlns:xdb="http://xmlns.oracle.com/xdb" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="H:\StetonCustomerCare\Steton.xsd">
I then started Altova's XMLSpy and the XML document is well formed and it validates.
I then changed the namespace line in the XML document to
<StetonAuditResults xmlns:xdb="http://xmlns.oracle.com/xdb" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
and I could use Windows Explorer to drag and drop the file into the XML DB respository of http://d01db:8085/datamart/CustomerCare/xml, but this version doesn't shred the XML document into the SQL tables that I need.
I then deleted the file from the repository.
I then changed the namespace line in the XML document to <StetonAuditResults xmlns:xdb="http://xmlns.oracle.com/xdb" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="Steton.xsd">
because someone told me to, and because I have seen an FAQ in this forum suggest this approach. I can copy using Windows Explorer into the http://d01db:8085/datamart/CustomerCare/xml. However, the file size via Windows Explorer is 427kb. Also "select count(*) from STETONAUDITRESULTS;" returns zero.
What am I doing wrong?
My background, I'm not an Oracle DBA, but I can code SQL select statements. So if I need to do something involving Oracle DBA privileges, please document it well. I will have to get the DBA's involved.
My goal is import this XML file so that I can use it as a feed for a datamart. The first XML file in text format is 27mb.
Thanks again for reading this far.

I guess you have a namespace issue...(schema registered is not the same as the layout in your XML instance/doc, therefor will not be inserted). You have access to the XDB account...thats all you need (more then enough, i mean, you don't need dba privs).
on the FAQ Mark explains...
Why is the size of my XML document 0 bytes when viewed via HTTP or FTP ?
Posted: Sep 1, 2006 6:07 AM in response to: mdrake in response to: mdrake      
When a schema based XML is loaded into the XML DB repository via HTTP, FTP or dbms_xdb.createResource() the document is converted from a textual serialization of XML into a series of objects. At this point the size of the document becomes (a) meaningless and (b) difficult / expensive to calculate.
The first question is what is meant by the size of the document once it has been stored using object-based persistence ? There are two possibilities
(1) The number of bytes used the text serialization of the XML document.
(2) The number of bytes required to store the internal object representation of the document. In this case the does the size include the bytes used for keys, refs indexes, etc ?
Since (1) would be expensive to maintain as the document is updated (particularly in the case of partial updates) and (2) is expensive to calculate on a document by document basis, XML DB shows the size of all schema based XML documents as 'zero' bytes.
Note that this also applies to the size of the registered version of XML Schema documents, which can be found in the folder tree /sys/schemas.
If a schema based XML document is loaded into the repository and does not appear as 0 bytes long when viewed via HTTP or WebDAV this means that XML DB was unable to identifiy the XML schema the XML document is associated with.
Note that immediatlely after uploading a document in Windows Explorer using the WebDAV protocol the size of the document will be non-zero, since the original size is cached by the Microsoft WebDAV client. However once a refresh of the folder is performed in Windows Explorer the size should be shown as zero if the document was recognized as a schema based document.

Similar Messages

  • In app purchases says unable to complete purchase and directs me to apple support but I can't find any help there

    Any ideas

    If you are getting a message to contact iTunes Support then you can do so via this link and ask them for help (we are fellow users on here, we won't know why you are getting the message) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • When syncing my iPhone with iTunes, I get the error, "some items did not sync, see itunes for help", but can't find any helps for this in iTunes. Where can I find out what is not syncing?

    When syncing my iPhone with my iPhone, I get a message that 2 items did not sync - use iTunes for help.
    But I can't find any help information in iTunes at all, let alone when items are not syncing.
    How do I figure out what is not syncing?

    Since it seems App related, I'm not sure what to offer you.  I guess the only suggestion I have is for you to reboot your iPad and then try again.  To reboot, hold the power and home buttons at the same time for at least 10 seconds (keep holding past the swipe to shut down bar if it appears) until the Apple Logo appears, then let go of both buttons and your iPad will restart.  You won't lose any settings or data, so it's worth a shot.

  • I have bought a film from itunes and the credit has come out of my account, but i can't find the film anywhere, it said it was downloading, then i left the laptop and on return i couldn't find the film. how do i find the film?

    i have bought a film from itunes and the credit has come out of my account, but i can't find the film anywhere, it said it was downloading, then i left the laptop and on return i couldn't find the film. how do i find the film?

    Maybe it is in the Purchased category of iTunes,
    Try going there

  • I created a slide show in imovie for my daughters 21st with voice overs from friends and family which was all working fine but now the voice recordings are not playing at all.  Obviously some setting has changed but I can't find which one.

    I created a slide show in imovie for my daughters 21st with voice overs from friends and family which was all working fine but now the voice recordings are not playing at all.  Obviously some setting has changed but I can't find which one.

    I created a slide show in imovie for my daughters 21st with voice overs from friends and family which was all working fine but now the voice recordings are not playing at all.  Obviously some setting has changed but I can't find which one.

  • Download i bought says it is in the itunes music folder but i can't find it

    I bought two albums last night (not from itunes store) and attempted to download them. During this the computer froze for a minute. The download appeared to finish. When I checked my itunes library tho i could not find the albums. This morning I attempted to download again and got a message saying these files already existed did i wish to replace-which I did. But I can't find them anywhere.
    To dowload I clicked the download button. Selected 'save' and clicked My music- itunes-library-music.

    I suffered the same issue here is a bit of information on the issue.
    XP Pro over wireless (always worked before) and installed the latest ITunes (released 7/15) upgrade.
    Will not reliably complete a download. Hangs on conformation from the system that the file is there. The file isn't so it never completes.
    If you quit ITunes and the restart it, ITunes will not continue downloading those songs because it thinks it completed the download. So those songs are now lost.
    When shutting down the computer you will find orphaned Itunes processes that are consuming resources and require a kill signal.
    This is a rather large bug for windows users and needs to be addressed as quickly as possible. Personally I am out $25 at this moment and am spending time trying to get the issue resolved
    This is a rather

  • I backup my iphone on my pc and copy backup file into drive D then i setup new OS on my pc. after that i copy the backup file into itunes backup folder but itunes can't find the backup file to restore my iphone. how can i restore my iphone?

    i backup my iphone on my pc and copy backup file into drive D then i setup new OS on my pc. after that i copy the backup file into itunes backup folder but itunes can't find the backup file to restore my iphone. how can i restore my iphone?

    Don't you just love changes in interfaces?
    I found the answer to my question.
    When you attach a device (iPhone, iPad) to your Mac, in iTunes 12 in appears as a tiny icon in the second "row" of the iTunes display. Click the icon and the familiar iTunes display for the device appears. From there, on the Summary screen, you can see the dates of the backups of the device (iCloud and backup to the computer). You can also use the button to backup to the computer.

  • I have some loops from acid 5 which I have dragged in a folder to the loop browser.  Some of them retain the folder name in the View: and some don't.  I have had some that seem to go in but I can't find them.  Where should I look?

    I have some loops from acid 5 which I have dragged in a folder to the loop browser.  Some of them retain the folder name in the View: and some don't.  I have also had some that seem to go in but I can't find them.  If I try to add them again, I get a msg that they are already there.  Where should I look?

    It may be best to recreate the folder and the smart playlists from scratch.
    tt2

  • When I attempt to open firefox an error message appears telling me that firefox is already running, but I can't find it running. How do I do so or in any case close the already running Firefox process?

    When I attempt to open Firefox instead of Firefox opening, an error message appears saying "Firefox is already running but isn't responding. To open another window please close the existing Firefox process or restart the system.", but I can't find that process of Firefox in order to kill it, and after restarting the system there is still the problem. I have found an emergency fix to at least get online, and that is to use"Firefox_Profile_Manager" in the start menu's "run" start menu, but the
    Firefox that then opens is that one doesn't carry over what I had in my bookmarks but starts bookmarks anew.

    Sounds like it is hanging when you exit and later try to restart Firefox.
    * How to stop the running Firefox process
    ** In Task Manager, does firefox.exe show in the '''<u>Processes</u>''' tab?
    ** See: http://kb.mozillazine.org/Kill_application
    **Windows 7 users: http://www.techrepublic.com/blog/window-on-windows/reap-the-benefits-of-windows-7s-task-manager/2576
    * What may cause Firefox to hang at exit
    **Windows 7 Task Manager: http://www.techrepublic.com/blog/window-on-windows/reap-the-benefits-of-windows-7s-task-manager/2576
    ** http://support.mozilla.com/en-US/kb/Firefox+hangs
    ** http://kb.mozillazine.org/Firefox_hangs
    ** https://support.mozilla.com/en-US/kb/Firefox+is+already+running+but+is+not+responding
    * You may need to try Firefox Safe Mode
    ** You may need to use '''Safe Mode''' to locate the problem: ***See: http://kb.mozillazine.org/Safe_Mode
    ***Firefox 4 users, hold the Shift key while clicking the Firefox 4 desktop icon to enter Safe Mode.
    ***Firefox Safe Mode is a diagnostic mode that disables Extensions and some other features of Firefox.
    ****In Firefox 4, Safe Mode also disables Plugins and Hardware Acceleration.
    ****If you are using a theme, switch to the DEFAULT theme: Tools > Add-ons > Themes '''<u>before</u>''' starting Safe Mode (In Firefox 4, Tools > Add-ons > Appearance). See: http://support.mozilla.com/en-US/kb/Using%20themes%20with%20Firefox#w_managing-themes-and-personas
    ****When entering Safe Mode, do not check any items on the entry window, just click "Continue in Safe Mode".
    ****Test to see if the problem you are experiencing is corrected.
    *** If the problem does not occur in Safe-mode then disable all of your Extensions and Plug-ins and then try to find which is causing it
    ***#by enabling '''<u>one at a time</u>''' until the problem reappears.
    ***#You can also enable a few at a time (3-5), keeping track of what you just re-enabled to see if the problem re-occurs; this will help narrow down the possibilities if you have a large number of add-ons.
    ***#'''<u>You MUST close and restart Firefox after EACH change</u>''' via File > Restart Firefox (on Mac: Firefox > Quit).
    ***#You can use "Disable all add-ons" on the Safe Mode start window.
    **See the following for more information
    *** http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes
    *** http://support.mozilla.com/en-US/kb/Troubleshooting+plugins
    *** http://support.mozilla.com/en-US/kb/Basic+Troubleshooting
    <br />
    <br />
    '''You need to update the following:'''
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.2"
    *Shockwave Flash 10.2 r153
    *Next Generation Java Plug-in 1.6.0_17 for Mozilla browsers
    #'''''Check your plugin versions''''' on either of the following links':
    #*http://www.mozilla.com/en-US/plugincheck/
    #*https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #*There are plugin specific testing links available from this page:
    #**http://kb.mozillazine.org/Testing_plugins
    #'''Update Shockwave for Director'''
    #*NOTE: this is not the same as Shockwave Flash; this installs the Shockwave Player.
    #*Use Firefox to download and SAVE the installer to your hard drive from the link in the article below (Desktop is a good place so you can find it).
    #*When the download is complete, exit Firefox (File > Exit)
    #*locate and double-click in the installer you just downloaded, let the install complete.
    #*Restart Firefox and check your plugins again.
    #*'''<u>Download link and more information</u>''': http://support.mozilla.com/en-US/kb/Using+the+Shockwave+plugin+with+Firefox
    #'''Update Adobe Reader (PDF plugin):'''
    #*From within your existing Adobe Reader ('''<u>if you have it already installed</u>'''):
    #**Open the Adobe Reader program from your Programs list
    #**Click Help > Check for Updates
    #**Follow the prompts for updating
    #**If this method works for you, skip the "Download complete installer" section below and proceed to "After the installation" below
    #*Download complete installer ('''if you do <u>NOT</u> have Adobe Reader installed'''):
    #**SAVE the installer to your hard drive (save to your Desktop so that you can find it after the download). Exit/Close Firefox. Run the installer you just downloaded.
    #**Use either of the links below:
    #***https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox ''(click on "Installing and updating Adobe Reader")''
    #***''<u>Also see Download link</u>''': http://get.adobe.com/reader/otherversions/
    #*After the installation, start Firefox and check your version again.
    #'''Update the [[Managing the Flash plugin|Flash]] plugin''' to the latest version.
    #*Download and SAVE to your Desktop so you can find the installer later
    #*If you do not have the current version, click on the "Player Download Center" link on the "'''Download and information'''" or "'''Download Manual installers'''" below
    #*After download is complete, exit Firefox
    #*Click on the installer you just downloaded and install
    #**Windows 7 and Vista: may need to right-click the installer and choose "Run as Administrator"
    #*Start Firefox and check your version again or test the installation by going back to the download link below
    #*'''Download and information''': http://www.adobe.com/software/flash/about/
    #**Use Firefox to go to the above site to update the Firefox plugin (will also install plugin for most other browsers; except IE)
    #**Use IE to go to the above site to update the IE ActiveX
    #*'''Download Manual installers'''.
    #**http://kb2.adobe.com/cps/191/tn_19166.html#main_ManualInstaller
    #**Note separate links for:
    #***Plugin for Firefox and most other browsers
    #***ActiveX for IE
    #'''Update the [[Java]] plugin''' to the latest version.
    #*Download site: http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)
    #**'''''Be sure to <u>un-check the Yahoo Toolbar</u> option during the install if you do not want it installed.
    #*Also see "Manual Update" in this article to update from the Java Control Panel in Windows Control Panel: http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates
    #* Removing old versions (if needed): http://www.java.com/en/download/faq/remove_olderversions.xml
    #* Remove multiple Java Console extensions (if needed): http://kb.mozillazine.org/Firefox_:_FAQs_:_Install_Java#Multiple_Java_Console_extensions
    #*Java Test: http://www.java.com/en/download/help/testvm.xml

  • I am trying to transfer files from my PowerBook G4 (OSX 10.4.11) to my new iMac (Mountain Lion).  Migration assistant tells me I need to upgrade migration assistant on the G4, but I can't find a download that will work for anything older than OSX 10.5.

    Yes, my PowerBook G4 is still trucking along.  It is running OSX 10.4.11, but I just bought a new iMac that is running Mountain Lion.  I just tried to use Migration Assistant.  It told me to update Migration Assistant on the G4, but I can't find an update for anything earlier than 10.5.  Is there a way to get my files transfered, or am I going to need to update the OS on my computer I was getting ready to retire?
    Thanks!

    You never know, someone might remember. What happens in detail when you try to use it, and HOW are you trying to use it?

  • I know many have this issue but i can't find a solution to the problem. i get message saying insuffisiant disk space in the volume iPhoto library and i have plenty of space available. i have the new macbook pro with retina display.

    I know many have this issue but i can't find a solution to the problem. i get message saying insuffisiant disk space in the volume iPhoto library and i have plenty of space available. i have the new macbook pro with retina display. i have never seen this message before and i have 2 other macbooks and have had many other also. i am assuming this is a problem with the new macbook retina. does anyone know the exact fix to this issue? i have seen many sugestions to try to fix this issue but none have solved the issue for anyone that i can find in the Apple Support Community. thank for looking into this in advance.
    ******A true apple fan********

    Actually your suggestions are the ones that i have tried. i have seen that you have tried to help others with this issue and the only one that i could find that said they found the problem said that it was an ilife update issue and it fixed it and i have no available updates. i know it has to do with something in photo stream because it happens when i create a new library and it is loading the photos but i get the message before i reach the maximum 1000 photos. so i've tried updating, new library(first backing up photos and then deleting them from iPhoto), reinstalling OSX many times, running disc utilities. I called Apple the first day i had this issue and i was the first person to call them for support with the retina display and i actually had it escalated to a senior advisor and we thought we fixed the problem but we did not. i am pretty fluent in dealing with troubleshooting these type of issues and this is the first time i'm reaching out to the community. i figured now that the retina has been out some time now that there would be an obvious answer to this issue. thanks for the quick reply.
    Bebers5

  • Am getting message from MacPro that my start up disc is full - but I can't find it and can't figure out what to do to help situation. I've been making a number of imovies, which generates junk files. help?

    I am getting message from MacPro that my start up disc is full - but I can't find this "start up disc" and can't figure out what to do to help situation. I've been making a number of imovies, which generates junk files and material that I should toss in the trash, but it is not clear to me  what items I can toss and which items I can't toss. Can you help? Using the imovie "help" support the system showed me under the menu item "go" where the "start up disc" should be - but that wasn't actually available on my menu!  Thanks for your help!

    Disk Utility 
    Get Info on the icon on Desktop
    Try to move this to the MacBook Pro forum
    Your boot drive should be 30% free to really perform properly. 10% minimum
    Backup, clone, use TimeMachine, use another drive for your projects and movies, replace and upgrade the internal drive even.

  • I've tried downloading iOS5 several times and after an hour each time I get a message that says my network connection has timed out.  But I can't find any information about "timing out" or how to correct the situation.  Any help?

    I've tried downloading iOS5 several times and after an hour each time I get a message that says my network connection has timed out.  But I can't find any information about "timing out" or how to correct the situation.  Any help?

    Disable your antivirus and firewall, and try again.

  • The older version allowed me to save all open tabs by giving it a name, i.e. April 29, but I can't find it in the new version. Is there anything like it available? If so, I really want it back

    Tonight, for example, I have many tabs open which I'd like to close but re-open tomorrow.
    I'd like to save them all as "April 30" in my Bookmarks... the 0ld version allowed me to do this, but I can't find this in the new version.
    The only way I don't seem to lose those open tabs I'm working with is by doing "Contol + Delete", but I know this shouldn't be done all the time...
    There must be a better way, but if there isn't, would I be able to get back and work with the old version?

    Please click the '''Helpful''' button next to the answer that solved your Firefox support issue, '''when you are logged in''', so this thread gets marked as '''Solved''' to help other users who may have this same problem.

  • Had to uninstall iWork trial since I bought the pages app and it wouldn't let me print or save.  Now the app store says I have pages installed but I can't find it anywhere to open and use it.  I'm not very computer savvy and am getting frustrated!

    Ooops, guess I didn't need to post everything in the title - sorry!  I bought the pages app - but couldn't save or print so with some online searching found that I had to uninstall the iWork trial which had expired.  I did that - but now I can't figure out how to re-install the pages app!!  The app store says it's installed, but I can't find it anywhere to open and use it.  I'm not very computer savvy - and am a first time Mac user and am getting extremely frustrated!  I e-mailed some help center and they can't seem to help me either.  I would appreciate any help/advice that can fix my problem - thanks in advance!!

    OK Apple has stuffed up the demo version upgrade process so the first thing you need to do is get rid of the demo.
    That includes getting rid of the files in the system.
    The instructions how to do that are here:
    Note That where you see / that is the sequence of folders, each nested inside each other.
    User/Library/Preferences the com.apple.iwork.Keynote.plist
    Means the User (you, the little home icon, whatever you are called on your computer) then the Library folder inside that and then the Preferences folder inside that.
    Lion initially hides the System folders from you so you have to go to the Finder > Menu > hold down the option key and click on GO > Library to see it.
    Peter

Maybe you are looking for

  • Safari window not resizing

    I am running Safari 5.1.9 on OS X 10.6.8.  For the last few days, Safari windows always open at exactly the same size, and there is nothing I can do to resize them. The resize button in the bottom right corner doesn't respond.  The green maximise but

  • How Do I Make a Toggle Button

    How would I do this? I want to create a toggle button, so when the button is in it's default position it says "Sound On" and when clicked again it says "Sound Off" etc.

  • I changed mail servers and my saved messages disappeared. How do I get them back?

    I recently had to changed mail servers (but retained the same address). When I changed the server all my previously saved messages were deleted. I'd like to get these back... is there anyway to do this?

  • New Swatch Selection

    How do I import a fabric swatch to add to my swatch selection.  I want to change the fabric on an ottoman.

  • Unable to view SSHR Payslip in Vision Demo

    Gurus hope you all are at ur good health! I have created an employee and attach all employee details and assignment details in the VISION DEMO Instance. I have also created a user for the same employee. My issue is i when i go to view my online paysl