Repository  to store all Content-Data?

Hallo to all,
which  Repository shall I create to store there all Documents and all Intranet Portal Content-Data ?
Is there some tutorial or guidance for that?
Thanks and regards,
Galyna

Crossposted: http://forums.java.sun.com/thread.jsp?thread=509544&forum=31&message=2419334

Similar Messages

  • Can I use ICloud to store all my data and use it seamlessly with my devices and Mac?

    Can I use ICloud to store all my data and use it seamlessly with my devices and Mac.  I.E. I want to use it as I use my time capsule and get rid of all this stuff I have in my office.

    Yes.
    Apple - iCloud - Learn how to set up iCloud on all your devices

  • How do I backup and store all my data on my laptop?

    I'm having trouble backing up all my data and information from my iPhone to my laptop. Do I use iTunes to do this?

    creating a backup in itunes will backup everything except for apps and music, so make sure that you also regularly choose the option 'transfer purchases' in itunes. Do this by right-clicking the name of your device on the left side of itunes when you have it plugged in

  • How do I contain my OS purely on a small SSD drive, but store all user data on an additional internal HDD?

    Solid state drives are still pretty expensive, but the main benefit of SSD we all want doesn't require a lot of space. How do I keep the OS and Applications on the solid state, and the user data on an additional HDD inside of a Mac Pro?
    I'm afraid that if I just store my media/docs folders on the second drive (which, obviously take up the most space), I'm still operating within a small (ideally 64GB SSD) solid state. Which means any time I save something to my desktop or downloads folder I'm taking up space on the SSD rather then the HDD. On the flip side, I dont want put my whole user folder on the HDD because (correct me if I'm wrong) won't the apps launch from the HDD? Then you would lose the benefit of solid state (other then I/O times...).
    Does this make sense? I feel like there has the be a straight forward way to do this.
    Thanks for your help!

    ds store wrote:
    Naturally, which you have to enable of course or else if your users drives has directory issues you wouldn't have a user to boot into to fix it.
    When I said I always have backups I neglected to mention that one of those backups is always mounted so it is always available to boot from.
    The hatter wrote:
    A small home folder - yours - on the SSD is a way to improve performance because it does take a lot of hits and I/O's and while there is the "protect your SSD from writes" drives are also there to be used and as long as it isn't too tiny and has 40GB+ of free space, a month's worth if writes, use it and let the firmware and controller inside do all the agressive background work, even w/o TRIM.
    As I said I only want my key apps on the SSD and less used stuff off it.  If I wanted to fully maximize the disk performance then of course I would keep everything on the SSD.  But I prefer the convenience of having a common home dir across any volume I can to boot from.
    Putting the /Users on another drive via hard link didn't always work.
    I certainly never suggested that and I agree, its problematic.
    Not having a small user makes it harder.
    As I said above I always have another boot drive available to fall back on I also always have root (and lets not debate the pros and cons about root).  And then there's also my unmounted external backups too.

  • Best way to store all this data!!

    Hi i have run into a problem and cant think at the mo. I need to know the best way to store this data:
    Meet(List of events in meet, Runners in meet, Relay team in meet, Which runner/ relay team is registered for which event, results of each event updated once meet is run, event being run(or has finished) or not started yet so runners can still register for it);
    Runner(RunnerID, Name, D.O.B, national team affiliation, Gender, Events in?, Seedtime for each event?, actual time for event?)
    RelayTeam(RelayID, Team name, Runner names, seedtime for events, events in, Acutal time)
    Event(ID, Name, Meet in, Runners in which lane)
    I just want to know how i can store these to make it as easy as possible to update etc.
    Anyhelp apprec.
    Thanks
    J

    Crossposted: http://forums.java.sun.com/thread.jsp?thread=509544&forum=31&message=2419334

  • External hd that I used for data died... it is backed up on time machine... how do I restore all my data from time machine to a new external hd?

    I installed the Lion OS this weekend. After Spotlight tried to index my external hard drive (that I use to store all my data), the external hard drive died. I expected that to happen at some point. The hard drive was an old FireWire 400 LaCie that I had working with my 2009 iMac (FireWire 800) by using an adaptor cable.
    My Time Machine backs up both my Macintosh (internal) HD and my external data HD. I know I need to buy a new external drive to use to store my data.
    But, then what? How do I get all the content from the backups of the old external (data) HD to the new one?

    Another one that Apple doesn't make obvious. 
    See #E3 in Time Machine - Troubleshooting. 

  • How do you store parsed XML data in an array

    Hi, i am trying to complete a small program which implements the SAX parser to parse an XML file. My problem is that i am writing a custom class to store the parsed data into an array, and then make the array available to the main program via a simple method which returns the array. I know this must be very simple to do, but i seem to have developed a mental block with this part of the program. I can parse the data and print all the elements to the screen, but i just cant figure out how to store all the data elements into the array. I will post the class which is supposed to do this, and ask anyone out there if they know what i'm doing wrong, and also, if there is a more effeicient way of achieving this ( i expect there definitely is!! but i have never used the SAX parser before and am getting confused by the API docs on it!!) Any help very much appreciated.
    Here is my attempt at coding the class to handle the parsed XML data
    class Sink extends org.xml.sax.helpers.DefaultHandler
         implements org.xml.sax.ContentHandler{
    Customer[] customers = new Customer[20];
         int count = 1;
         int x = 0;
         int tagCount = 0;
         String name;
    String custID;
         String username;
         String address;
         String phoneNum;
    public void startElement(String uri, String localName, String rawName, final org.xml.sax.Attributes attributes)throws org.xml.sax.SAXException{
    //count the number of <name> tags in the XML file
         if(rawName.equals("name")){
              tagCount++;
    public void characters(char[] ch, int start, int len){
    //get the current string
         String text = new String(ch, start, len);
         String text1 = text.trim();
    //there are 5 elements for each customer found in the XML file so when the count reaches 6
    // i reset this to 1
         if(count == 6){
         count = count - 5;
         if(text1.length()>0 && count == 1){
              name = text1;
              System.out.println(name);
              }else{
         if(text1.length()>0 && count == 2){
              custID = text1;
              System.out.println(custID);
                   }else{
                   if(text1.length()>0 && count == 3){
                   username = text1;
                   System.out.println(username);
                   }else{
                        if(text1.length()>0 && count == 4){
                        address = text1;
                        System.out.println(address);
                        }else{
                        if(text1.length()>0 && count == 5){
                             phoneNum = text1;
                             System.out.println(phoneNum);
                             //add data to the customer array
                             customers[x] = new Customer(name, custID, username, address, phoneNum);
    // increment the array index counter
                        x = x+1;
                        }//end of if
                        }//end else
                        }//end else
                   }//end else
              }//end else
    }//end of characters method
    public void endDocument(){
         System.out.println("There are " + tagCount +
         " <name> elements.");
    }//end of class Sink
    Before the end of this class i also need to make the array available to the calling program!!
    Any help would be much appreciated
    Thanks
    Iain

    Ok, yer going about this all the wrong way. You shouldn't have to maintain a count of all the elements. Basically you are locking yourself into the XML tags not only all being there but are assuming they are all in the same order. What you should do is in your characters() method, put all of the characters into a string buffer. Then, in endElement() (which you dont use btw, you should) you grab the information that is in the string buffer and store it into your Customer object depending on what the tagName is.
    Also, you should probably use a List to store all the Customer objects and not an single array, it's more dynamic and you arent locked into a set number of Customers.
    I wont do it all for you, but I'll give you a good outline to use.
    public class CustomerHandler extends DefaultHandler {
        private java.util.List customerList;  // List of Customer objects
        private java.util.StringBuffer buf;   // StringBuffer to store the string of characters between the start and end tags
        private Customer customer;  // Customer object that is initialized with each entry.
        public CustomerHandler() {
            customerList = new java.util.ArrayList();   // Initialize the List
            buf = new java.util.StringBuffer();   // Initialize the string buffer
        //  Make your customer list available to other classes
        public java.util.List getCustomerList() {
            return customerList;
        public void startElement(String nsURI, String sName, String tagName, Attributes attributes) throws SAXException {
            // Clear the String Buffer
            //  If the tagName is "Customer" then create a new Customer object
        public void characters(char[] ch, int start, int length) {
            //  append the characters into the string buffer
        public void endElement(String nsURI, String sName, String tagName) throws SAXException {
            // If the tagName is "Customer" add your customer object to the List
            // Place the data from the String Buffer into a String
            //  Depending on the tagName, call the appropriate set method on your customer object
    }

  • HT201274 If i use the "Erase all Content and Data" button can I put an app back on the phone that is no longer in the app store but is store on the itunes in my computer?

    I have an app, no longer in the app store, that i want to keep an iphone i'm getting rid of. I backed up the iphone on itunes and deleted all data, but the app, manually. I want to erase all data, and then put the app back on the phone. Please advise. Thanks

    Then as I said you can do an Erase All Content and Settings which will wipe the phone. Completely. In order to add a game from your iTunes you will have to activate the iPhone with your Apple ID and then sync the game. You don't have to sync anything else. But you will need to sell the phone with your Apple ID on it.

  • Is the a way to restore my iPhone 5 when it is no longer activated since i erased all content and data it keeps giving me this window that says my simcard is not recognizable does anyone know what to do?

    is the a way to restore my iPhone 5 when it is no longer activated since i erased all content and data it keeps giving me this window that says my simcard is not recognizable does anyone know what to do?

    Unfortunately yes, though technology would never move on if it kept to older standards and did not strive to do more.
    The app store always gives you the option to use a previous version of the app IF it is available for your device.
    Sorry but you are stuck without new hardware.
    PJRS

  • Change Apple ID country,then change back, all the data of apps store is gone

    Use iPhone 5s change Apple ID country,then change back, all the data of apps store is gone,the apps I uninstall but buy before if I want to buy before,I need to buy again!Is there any way that I can fix it? Thank you!

    Apple ID is only valid for purchases in the Swiss iTunes Store.
    The issue is that your credit or debit card credentials must be associated with the same country where you reside.
    "Although you can browse the iTunes Store in any country without being signed in, you can only purchase content from the iTunes Store for your own country. This is enforced via the billing address associated with your credit card or other payment method that you use with the iTunes Store, rather than your actual geographic location."
    From here >  The Complete Guide to Using the iTunes Store | iLounge Article

  • Does Robohelp Server store all of its data in the backend database?

    Does RoboHelp Server store all data in the database and only code and templates on the web server?

    We need a separate web server and database server. All the content must be in the database. It looks like RoboHelp Server might not be the right architecture.
    Web Server > XSLT
                                            > Client Web Page XSLT/XML
    Database Server > XML
    ~J

  • Data base table to store the contents of a Variant

    I am using the FM  RS_VARIANT_CONTENTS to extract the contents of a variant of a specific program.  Is there any Data Base table which stores the contents of a variant.
    Moderator message: please do not open multiple threads for the same or similar issue (I have replied to the original one).
    Edited by: Thomas Zloch on Jan 28, 2011 3:46 PM

    The table VARI stores all the variants of a program.
    To get the contents of the variant you can use the FM RS_VARIANT_VALUES_TECH_DATA.
    Hope this helps!
    Regards, Mukta

  • How can i get to itunes to store all data on an external drive

    how can i get to itunes to store all data on an external drive rather than the drive ITUnes run off. I can get photos and music off but my apps and movies seem to go to the drive where itunes is run from?

    See if this helps:
    http://support.apple.com/kb/HT1364

  • When I try to open a Pages document from iCloud, created on my iPad, I get message stating I need a newer version of Pages.  When I go to app store all I get is "installed" when looking at pages app. my Macbook pro is up to date with all updates.

    When I try to open a Pages document from iCloud, created on my iPad, I get message stating I need a newer version of Pages.  When I go to app store all I get is "installed" when looking at pages app. my Macbook pro is up to date with all updates. Any ideas?

    You have 2 versions of Pages on your Mac.
    Pages 5 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5/5.01 can not open Pages 5.1 files and you will get the warning that you need a newer version.
    Pages 5.1 sometimes can not open its own files and you will get the warning that you need a newer version.
    Pages 5 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Anything that is saved to iCloud is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has not only managed to confuse all its users, but also itself.
    Note: Apple has removed over 100 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Archive/trash Pages 5, after exporting all Pages 5 files to Pages '09 or Word .docx, and rate/review it in the App Store, then get back to work.
    Peter

  • How can i connect iphone to itunes.. i want to restore because my finger mistakes that click Reset all content and setting.. so iphone are empty.. all foto and data lost, right.. how can i use my iphone again..

    how can i connect iphone to itunes.. i want to restore because my finger mistakes that click Reset all content and setting.. so iphone are empty.. all foto and data lost, right.. how can i use my iphone again.

    Yes, try to restore your iPhone from iTunes or iCloud backup.
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    Tell us the result if you will try.
    <Link Edited By Host>

Maybe you are looking for