Moving SharePoint back up files to different server

hi friends
i have back up file (.bak) of SharePoint 2013 web application. i want to restore this .bak file to another SharePoint 2013 server.
is it possible ?

Hi
you can
check this details
http://technet.microsoft.com/en-us/library/ee428314%28v=office.15%29.aspx
Romeo Donca, Orange Romania (MCSE, MCITP, CCNA) Please Mark As Answer if my post solves your problem or Vote As Helpful if the post has been helpful for you.

Similar Messages

  • Read XML file from different server on JSP

    Dear All,
    I am a newbie to JSP with XML, now i want to read the "test.xml" from JSP.
    I read successfully this "test.xml" file from my system and I got output, but I need to read the xml file from
    different server like "http://www.domain.com/test.xml". I couldn't read such a type of file from different server.
    Is it possible to read a xml file from different server?
    If anybody have idea please let me know.
    Thanks in Advance,
    Prasath.
    <%@ page import="java.sql.*,java.io.*,java.util.*,javax.xml.parsers.*,org.w3c.dom.*,org.xml.sax.*" %>
    <%
    try {
        DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
        DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
        Document doc = docBuilder.parse (new File("http://www.domain.com/test.xml"));
        // normalize text representation
        doc.getDocumentElement ().normalize ();
        out.println ("Root element of the doc is " +
             doc.getDocumentElement().getNodeName()+"<br>");
        NodeList listOfPersons = doc.getElementsByTagName("person");
        int totalPersons = listOfPersons.getLength();
        out.println("Total no of people : " + totalPersons+"<br>");
        for(int s=0; s<listOfPersons.getLength() ; s++){
            Node firstPersonNode = listOfPersons.item(s);
            if(firstPersonNode.getNodeType() == Node.ELEMENT_NODE){
                Element firstPersonElement = (Element)firstPersonNode;
                NodeList firstNameList = firstPersonElement.getElementsByTagName("first");
                Element firstNameElement = (Element)firstNameList.item(0);
                NodeList textFNList = firstNameElement.getChildNodes();
                out.println("First Name : " +
                       ((Node)textFNList.item(0)).getNodeValue().trim()+"<br>");
                NodeList lastNameList = firstPersonElement.getElementsByTagName("last");
                Element lastNameElement = (Element)lastNameList.item(0);
                NodeList textLNList = lastNameElement.getChildNodes();
                out.println("Last Name : " +
                       ((Node)textLNList.item(0)).getNodeValue().trim()+"<br>");
                NodeList ageList = firstPersonElement.getElementsByTagName("age");
                Element ageElement = (Element)ageList.item(0);
                NodeList textAgeList = ageElement.getChildNodes();
                out.println("Age : " +
                       ((Node)textAgeList.item(0)).getNodeValue().trim()+"<br>");
            }//end of if clause
        }//end of for loop with s var
    }catch (SAXParseException err) {
    out.println ("** Parsing error" + ", line "
         + err.getLineNumber () + ", uri " + err.getSystemId ());
    out.println(" " + err.getMessage ());
    }catch (SAXException e) {
    Exception x = e.getException ();
    ((x == null) ? e : x).printStackTrace ();
    }catch (Throwable t) {
    t.printStackTrace ();
    %>

    You might try:
    Document doc = docBuilder.parse ("http://www.domain.com/test.xml");Alternatively use the java.net package to obtain an Input Stream to the xml document
    InputStream in = methodThatYouWriteYourselfCalledgetInputStreamForURI("http://www.domain.com/test.xml");
    Document doc = docBuilder.parse (in);cheers,
    evnafets

  • I have moved old Back Up files from my external hard drive to the trash and as the Trash previews the files, i.e. counts them (over 850,000 files) it then begins to delete but then stops. Is it possible to move the files out of the Trash file and then onl

    I have moved old Back Up files from my external hard drive to the trash and as the Trash previews the files, i.e. counts them (over 850,000 files) it then begins to delete but then stops. Is it possible to move the files out of the Trash file and then only delete a small amount at one time?

    See
    Deleting backups via the Finder on Lion 10.7.x or later:
    http://pondini.org/TM/12.html
    Hold option (alt) while emptying the Trash.
    See also
    http://pondini.org/TM/E6.html
    Message was edited by: WZZZ

  • Writing the files in different server

    Hello
    I am using oracle8i. I am converting the data into XML files. My company wants to
    keep the converted XML files in different server. I am planning to use UTL file to
    create the files. So UTL FILE would not write in another server. What is the
    best way to solve this issue ?.
    My option is
    1. Create the XML files in Oracle server(using UTL FILE).
    2. Write the batch script to move the files to another server.(can you give me a sample script for writing the batch file ?)
    Is there any other alternate way to solve this problem ?.
    I would appreicate if you could give me any other simplest way.
    Thanks
    Govind

    Can i specify the remote file path in UTL_FILE_DIR(parameter files)... Please clarify .
    Govind

  • Import XML files from different server

    Hi All,
    We have successfully used JavaScript to import local XML files and generated the PDF files on InDesign Server CS4.
    Now, we need to import the XML files which are dynamically generated on the other Server. (Data Managemnt Server).
    Wondering what's the best way to do this?
    Can we pass the whole XML file content as a JavaScript Parameter? What about images?
    or Can Javascript Import an external XML file via HTTP, other protocol?
    The worst case I guess is to have a script to upload XML files onto InDesign Server........
    Also, is it possible to return the generated PDF back to Data Management Server (XML file Server)?
    Thanks,
    xin

    Hi ,
    Check the FM : /SAPDMC/LSM_F4_SERVER_FILE.
    Inside this FM , subroutine below exists.The main program for routine is /SAPDMC/LLSMW_AUX_020F02.
    Call this routine from your program. You will get the length in bytes from the field len of table pt_file.
    data:
      begin of gs_file,
        directory(75) type c,              " name of directory.
                                           " (possibly truncated.)
        name(75)    type c,                " name of entry.
                                           " (possibly truncated.)
        type(10)    type c,                " type of entry: directory, file
        *len(8)      type p,                " length in bytes*
        owner(8)    type c,                " owner of the entry
        mtime(6)    type p,                " last modification date,
                                           " seconds since 1970
        mode(9)     type c,                " like "rwx-r-x--x":
                                           " protection mode
        errno(3)    type c,
        errmsg(40)  type c,
        mod_date    type d,
        mod_time(8) type c,                " hh:mm:ss
        subrc like sy-subrc,
    end of gs_file.
    DATA : pt_file LIKE TABLE OF gs_file.
    DATa : p_ok.
      PERFORM /sapdmc/llsmw_aux_020f02(directory_contents_get)
      TABLES   pt_file
                                USING    '/TMP' ""!!! Here is your filepath
                                CHANGING p_ok

  • How to get result from SharePoint site which is on different server.

    We have two SharePoint site on two different server. We want to create search which will search and display content of one one site on other site.
    If this is possible then pls let me know how can I do this. If you have any links/blogs pls share with me.
    Rushikesh_Khadtare

    Hi  ,
    According to your description, my understanding is that you need to create search which will search and display content of one site on other site.
    For your issue, you can deploy a "search center" site in each web app. 
    Any time you perform a search from a search center site, it by default searches all content (using All Content scope) in your index, regardless of web app.
    Take the following steps:
    * Go to  Search Service Application
    * Click Content Sources
    * Select Edit from the Local Office SharePoint Server sites
    * In Start Addresses add the urls of all web applications that you want this content source to crawl
    After a crawl you should now be able to search/find data from all web applications.
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Transfer file to different server after it get created in DB server

    Hi All,
    I have a unix shell script that runs in a Linux server and connects to database (using sqlplus of course) and creates a file using UTl_FILE package and which gets created in DB server. We are not actually supposed to create file in DB server as per company rules and regulations. But as a workaround until we find a solution, we are being allowed to create file in DB server then my DBA scp the file to the Linux server. This manual process of transferring the file has to be automated or if possible, it would be best if we can create the file in the target Linux server itself instead of DB server.
    Is there any way of doing so or if this issue has been addressed in past, please provide me with the link. I tried to search in forum but couldn't fine one appropriate solution.
    Thanks,
    Samip

    I am trying to find a work around. Instead of file creation, I am going for a PL/SQL process that will directly load into the target table.
    I will try to explain my problem as much as possible.
    Lets say I have a table A. It's a hierarchy table. X is the parent column while Y is the child one. '1' is the TOPmost in the hierarchy so, value in X corresponding to '1' is NULL.
    Table A
    X--------Y
    ----1
    1-----     2
    1-----     3
    2-----     4
    2-----     5
    2-----     6
    3-----     7
    3-----     8
    4-----     9
    4-----     10
    5-----     11
    5-----     12
    7------     13
    7-----     14
    11----     15
    11----     16
    I need to transform table A to table B like below:
    Table B
    L1----     L2----     L3----     L4----     L5
    1----     1----     1----     1----     1
    1----     2----     2----     2----     2
    1----     3----     3----     3----     3
    1----     2----     4----     4----     4
    1----     2----     5----     5----     5
    1----     2----     6----     6----     6
    1----     3----     7----     7----     7
    1----     3----     8----     8----     8
    1----     2----     4----     9----     9
    1----     2----     4----     10----     10
    1----     2----     5----     11----     11
    1----     2----     5----     12----     12
    1----     3----     7----     13----     13
    1----     3----     7----     14----     14
    1----     2----     5----     11----     15
    1----     2----     5----     11----     16
    Here, each row (value in Y) in table A is processed and are put in correct Level. For example 1 has Level 1 So, it is under L1 and then rest of the columns are filled with 1. 2 has level 2, so it is put under L2 and the it parent is 1 so, 1 in L1 - obvious, then rest of the column filled with 2. Likewise 14 has level 4 so put under L4, then the hierarchy values upward are found and put under respective columns; L5 is entered 14. Basically the hierarchy up is calculated for each value in Y is calculated and put under respective level column in table B and then the rest of the columns are just filled with the column Y value that was processed.
    Thanks in advance. Please help me on this write a procedure or any process that will accomplish this task.
    Thanks,
    Samip
    Edited by: 908006 on Apr 15, 2013 1:11 PM
    Edited by: 908006 on Apr 15, 2013 1:11 PM
    Edited by: 908006 on Apr 15, 2013 1:12 PM
    Edited by: 908006 on Apr 15, 2013 1:12 PM
    Edited by: 908006 on Apr 15, 2013 1:12 PM
    Edited by: 908006 on Apr 15, 2013 1:15 PM
    Edited by: 908006 on Apr 15, 2013 1:15 PM
    Edited by: 908006 on Apr 15, 2013 1:16 PM

  • Restoring backed-up files to different TX-2000

    I purchased a new Vista TX-2000 in 2008, which is now having motherboard problems.  It is backed-up with the "Backup and Restore Center" that came with Vista.  I depend daily on the unit for my business and have been told by HP Help that I may loose the hard drive files when the MB is replaced.  To cover the possibility, I have purchased a used TX-2000 from E-Bay.  It is in good shape and appears to be vintage 2007, with a smaller size hard drive (120MB vs. 250MB).  The failing unit has two partitions, created originally by HP.  The E-Bay machine was third-party re-formatted with a single partition, with no Recovery files, nor included the original Restore CDs.  Both machines have Vista, SP2.
    Other details:  HP Help says there are no Recovery CDs available for the E-Bay machine.  There is adequate room on the E-bay machine for restoration of the files.
    Questions:
    1)  Can I restore my backup from the failing machine to  the E-Bay machine?
    2)  Do I need the drives on both machines to be identical,both size and partitioning?
    3)  Can I just physically transfer the drive from the failing machine to the E-bay machine or is there an embedded number that has to match the drive boot record (or whatever it's called nowadays)?  Can I harm the drive by trying or will Vista mark the drive in some way to make it unusable with the original machine?
    Just for completeness, I have spoken to HP Help about this a half-dozen times and got a different answer each time.  They appear now to be no more than a message center and their "experts" just read off their monitors whatever a database search says.  Definitely HP Help is no longer technically knowledgeable.

    I believe that Apple's "Backup" application uses a special storage scheme that normaly requires Apple Backup to restore the backup items. There may be a problem, though, because your screenshot shows the backup items as ordinary folders. I don't use Backup any more, but I have some old storage items made with Backup 3, and my full and incremental backup items look like single files in Finder. They actually are packages, "special" folders with the same internal structure as the one you posted, but which look like single files in Finder. Maybe you used an earlier version of Backup that creates folders instead of package files.
    I don't know if Backup 3 will be able to open and use the "normal-looking" folders that you do have, but it's worth a try. If you don't have Backup 3 on your current Leopard installation, you can download it at
    http://support.apple.com/kb/DL184
    You need a MobileMe subscription to make new backups, but I think you can restore old backups even without a subscription. There is a Help menu in Backup 3 which includes instructions on how to restore things when you no longer have the backup plan used to make the backups. You would normally use Backup 3 to open the most recent IncrementalBackup file if there is one, otherwise the FullBackup file. In your situation I would try to open the folder with those names, not the folder contents.
    If this doesn't work try double-clicking the "backup.sparseimage" files in the Folder>Contents>Contents subfolders. If the disk image mounts, look inside the mounted disk for your stuff and drag the contents back to your internal HD. Don't try to restore "settings", just datafiles.

  • Moving already backed-up data to different drive

    Hi all -
    I have about 700gb of videos that I want to move off my iMac's internal hard drive onto an external drive. The videos have already been backed up with Time Machine.
    After I move the videos to the external drive, I want to continue backups on that data, but don't want to create a duplicate backup of the data that's already there. What's the best way to do this? I'd prefer not deleting the backups so I can keep the history, but not sure I can avoid that.
    The only thing I can think of is to move the videos to the external drive, then create a link from the original location to the new location on the external drive so the original directory structure is intact. Will Time Machine see that as being in a new location and still do a full backup when it first sees it?
    Thanks!

    Thanks, klaus1! I looked briefly at the SyncTwoFolders link you posted, and it definitely sounds like something I could use.
    A couple follow-ups just to make sure I'm following correctly:
    - would SyncTwoFolders be needed only for the initial duplication, or would I need to keep using it? If the former, what's the difference between doing this and doing a straight copy?
    - would I set my internal drive "videos" folder as the source, and the external drive "videos" folder as the target? And would that then trigger SyncTwoFolders to start copying the files to the external drive?
    - after the above, I should now have two identical "videos" folders, right? I don't think I need to do the aliasing as these videos are my raw AVCHD videos that aren't referenced anywhere, and I can't play or do anything with them except to be imported into iMovie. So when I delete the originals, the target copy (on the external drive) becomes my only copy.
    - when I then start Time Machine backups on the external drive, does it know not to back those videos up? And when I add new videos, those will backed up by Time Machine as usual?
    Thanks very much for your help!

  • Downloading File on Application server

    Hi All,
    I have wriitten a code for Downloading a data on application server.
    I wanted to add Summary details for the same extract .
    I have collected all the summary details in the internal table of type string .
    I am using TRASPORTING for moving Summary deatils to File on application server and then again transporting Extarct .
    But in the summary details ,I am getting last line of that not complete summary.
    I used this table (string type) for Presentation server and its working fine there.
    Please help me out.
    ans will b rewarded.
    Thanks
    Hemant

    Hi,
    Make sure you have the TRANSFER statement with in the internal table loop..
    LOOP AT ITAB.
      TRANSFER ITAB TO '/tmp/test.txt'.
    ENDLOOP.
    Thanks,
    Naren

  • Moving InDesign files on a server that has stable INCX links

    What concerns are there with moving InDesign files into different folders on a file server that has INCX files linked as Unassigned InCopy Content? The INCX file location would stay constant. Were are not planning on using assignments. Our editorial/art staff currently moves InDesign documents from folder to folder to indicate the status of a document in the editorial workflow. Im curious if we can still do this once we transition to an InCopy/InDeisign Live Edit workflow. Ive done some initial testing with positive results. The InDesign link to the INCX files seem to stay intact.
    Any thoughts or concerns would be appreciated! -Mike

    Cool, thanks for the info. Wonder how you found that little tid-bit of information, must have been some sort of experiment.
    I once had a user work on a locally existing InDesign file for a few hours who wasn't in the habit of saving (since Indesign has such a great recovery feature.) Unfortunately, after a few hours of work, he went to finally save the document, but InDesign refused... couldn't even do a Save As. He called me down to his office in a panic since the document was still open. After a few minutes of checking InDesign logs on his Mac, I noticed a conflict in folder paths. I asked him if he moved the location of the InDesign document while the document was still open. He admitted that he probably did. After moving the InDesign document back to the original folder (same folder as the locked temp file), he was able to save the document. Go figure!
    -Mike

  • What is the different between Sharepoint fast search service and Sql server fulltext search?

    HI ,
    I want to kow what is the different between Sharepoint fast search service and Sql server fulltext search?
    Or Can I abstract the Sharepoint fast search from the Sharepoint platform as a isolate component?
    Thank you.
    James

    They are very, very different beasts.
    Firstly FAST Search for SharePoint is the old name for the product and is only relevant for SharePoint 2010 not 2013. It got merged into the standard SharePoint search for the 2013 release.
    SharePoint search is aimed at providing a Bing or Google like experience for your intranet content, as well as providing some nifty features that are purely SharePoint releated along the way. That means it can crawl SharePoint content, file shares,
    outlook mailboxes, internal and external websites and probably fifty other different things if you really tried. Whilst i'm not an expert on SQL full text search I believe it's intended to provide a search feature for content held within SQL databases
    and tables.
    Can you run SharePoint purely for Search? Yes, definitely.

  • SRM file attachments to be maintained in a different server (content server

    Hi Sap Gurus
    we are using Extended classic senario of SRM, and Shopping cart, PRs, POs are created in SRM and remains in SRM only, (no transfer to ECC / backend)
    and here in Shopping cart, PRs, and POs we attach external files (word, Pdf, gif files) relevantly,
    we have a requirement to transfer the SRM external files / documents attached in to a different content server,
    the requirement is simple, as to not to Load the SRM server with external documents or attachments, we would like to have this documents in a different Server (here inside content server) so that the documents are accessed and retrived from Content server every time by SRM.
    Going to Transaction OAC0, we could see there are different content repositories available, having Document area, and storage Type mainly SAP System database.
    here let me know among the list of different content repositories available which one specifically deals with external file attachment storage, so that i can change the storage Type to a Content server
    is this the correct way to transfer our SRM external files to a different Content server, or any other best methord please eloborate
    Points sure for any correct answers,
    Thanks and Regards
    Priya
    Edited by: Priya S on Jun 2, 2009 7:14 PM

    Hi all
    We are currently holding shopping cart attachments on the local server but the customer now wishes to hold this on OpenText repository.  I have successfully implemented the OpenText repository by changing the value against BBPFILESYST to our bespoke value; however when I do this I can no longer see the attachments that were previously stored locally!
    Can someone please advise how this may be achieved or, conversely, how these 'old' attachments can be moved to OpenText?
    Many thanks in advance
    Andy

  • Is there a way to open Excell file from the server and display in the UI and save it back on to the

    Hello there,
    Is there a way to open Excell file from the server and display in the UI and save it back on to the server? (like showing xell file as a datagrid - add rows, columns etc.)

    Hi Mike,
    Welcome you to the forum.
    You may try:
    SELECT * FROM MyDBNameHere.dbo.OUSR T0
    Thanks,
    Gordon

  • ITunes has renamed and moved some of my files. How can I move them back to their proper locations?

    Recently, for no reason that I can explain, several of my iTunes files have been moved or their information has been changed. For example, my iTunes now lists two copies of Smoke On The Water by Deep Purple, but when I play one of them it is actually The Song Remains The Same by Led Zeppelin. This has happened to dozens of my songs. Also, several of my movie files have been listed as songs, and moved to the music folder on my computer. I tried moving them back to the movies folder, but when I opened iTunes they went back to the music folder. iTunes won't allow me to change their media kind to "movie." How do I get all of my files back where they are supposed to be, under their correct names?

    I didn't mess with the iTunes Media folder previously, so I don't think that was the cause. Anyway, I manually fixed most of the songs, but I still can't figure out how to fix the movies that became listed as songs.
    Here is a screenshot of what it looks like when I click on "Get Info" for one of the movies (which has ended up in the music section on iTunes):
    There is no option to change the media kind to "movie" or "video" even though it is a movie and it still plays as a movie if I press play.

Maybe you are looking for