What databases to backup to restore Search Enterprise configuration and search pages?

Hello,
If I needed to restore the Enterprise Search configuration and search pages, what SharePoint pages do I need to backup?
SharePoint config and/or SharePoint admin databases?
Thanks.
Paul

Hi Paul,
SharePoint Enterprise Search site is stored in SharePoint Content database associated with the web application which hosts enterprise search site, if you want to resoter the search configuration and search pages(may have customized the search web part
page), you can try to firstly test the restore of particular content database and search administrator database.
https://technet.microsoft.com/en-us/library/jj219738.aspx#AdminDB
Thanks
TechNet Community Support
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
[email protected]

Similar Messages

  • My iPhone4 doesn't appear to have "FacTime" (App), yet when I "ring" it from my iPad's FaceTime, I hear a faint ringing tone but nowhere to answer the call? Anyone out there suggest what's wrong? (going to the App Store and searching "FaceTime" brings iPa

    My iPhone4 doesn't appear to have "FacTime" (App), yet when I "ring" it from my iPad's FaceTime, I hear a faint ringing tone but nowhere to answer the call? Anyone out there suggest what's wrong? (going to the App Store and searching "FaceTime" brings apps that have icons different to that of my iPads!)

    Yeah, I know I can restore it, but I might as well go ahead and try. I just finished a backup for icloud and itunes to make sure, I'll go ahead and restore it and set it up as new and see how that works. Seems like I have no other options at this point, I'd still like to know what they did with the Download tab in itunes store, if they removed it or if I'm just overlooking it.

  • What are the steps to restore all deleted data and settings by remote wipe? Thanks.

    What are the steps to restore all deleted data and settings by Remote wipe?

    Go to me.com, logon and go to the FindMyiPhone. If it does not appear then there is not much you can do.
    Next step would be to appleid.apple.com and change your password to cut off access to your iDisk.

  • Is there any command/query/etc, which would allow to understand what database objects (for example tables) are consuming memory and how much of it?

    TimesTen Release 11.2.1.9.6 (64 bit Linux/x86_64)
    Command> dssize;
    PERM_ALLOCATED_SIZE:      51200000
      PERM_IN_USE_SIZE: 45996153
    PERM_IN_USE_HIGH_WATER:   50033464
    TEMP_ALLOCATED_SIZE:      2457600
    TEMP_IN_USE_SIZE:         19680
    TEMP_IN_USE_HIGH_WATER:   26760
    Is there any command/query/etc, which would allow to understand what database objects (for example tables) are consuming memory and how much of it?
    tried to use ttsize function, but it gives some senseless results – for example, for the biggest table, tokens, it produces following output (that this table is 90GB in size – what physically cannot be true):
    Command> call ttsize('tokens',null,null);
    < 90885669274.0000 >
    1 row found.

    Are you able to use the command line version of ttSize instead? This splits out how much space is being used by indexes (in the Temp section of the TT memory segment), which I think is being combined into one, whole figure in the procedure version of ttSize you're using. For example:
    ttSize -tbl ia my_ttdb
    Rows = 4
    Total in-line row bytes = 17524
    Total = 17524
    Command> create index i1 on ia(a);
    ttSize -tbl ia my_ttdb;
    Rows = 4
    Total in-line row bytes = 17524
    Indexes:
    Range index JSPALMER.I1 adds 5618 bytes
      Total index bytes = 5618
    Total = 23142
    Command> call ttsize ('ia',,);
    < 23142.0000000000 >
    1 row found.
    In 11.2.2 we added the procedure ttComputeTabSizes which populates system tables with detailed table size data, and was designed to be an alternative to ttSize. Unfortunately it still doesn't calculate index usage though, and it isn't in 11.2.1.

  • IDOC Related - Search Term 1 and Search term 2

    Hi,
          In FK03 , we have Search term 1 and search term 2  in the second screen
          I am trying to populate those values  using IDOC type CREMAS  and segment  E1LFA1M
          In that  only search term 1  SORTL is there ,
          Any idea how can we populate Search term 2      
    thanks
    chandra
    Edited by: Chandrasekhar Jagarlamudi on Apr 21, 2008 7:53 PM

    Hi!
    It can be performed:
    - with modifying the standard
    - copying it to a ZCREMAS interface, change the structure, and of course you have to set all IDoc settings to this new one
    Regards
    Tamá

  • Can CDC enabled database DIFF backups be RESTORED while maintaining the CDC integrity?

    We tried restoring FULL + subsequent DIFF backups of a CDC enabled database to a different SQL server and found that the CDC integrity is not being maintained. We did RESTORE the databases with the KEEP_CDC option.
    Can someone please guide us on how to successfully restore the CDC enabled database backups(FULL + DIFF) while maintaining the CDC integrity?
    Note: SQL Server Version: SQL Server 2012 SP1 CU2

    Hi YoungBreeze,
    Based on your description, I make a test on my computer.
    Firstly, I create a database named ‘sqldbpool’ , then enable the
    Change Data Capture (CDC) feature and take full+ differential backups of the database. Below are the scripts I used.
    -- Create database sqldbpool
    CREATE DATABASE [sqldbpool] ON PRIMARY
    ( NAME = N'SQLDBPool', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\SQLDBPool.mdf' , SIZE = 5120KB ,
    MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )
    LOG ON
    ( NAME = N'SQLDBPool_log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\SQLDBPool_log.LDF' , SIZE = 3840KB ,
    MAXSIZE = 2048GB , FILEGROWTH = 10%)
    GO
    use sqldbpool;
    go
    -- creating table
    create table Customer
    custID int constraint PK_Employee primary key Identity(1,1)
    ,custName varchar(20)
    --Enabling CDC on SQLDBPool database
    USE SQLDBPool
    GO
    EXEC sys.sp_cdc_enable_db
    --Enabling CDC on Customer table
    USE SQLDBPool
    GO
    EXEC sys.sp_cdc_enable_table
    @source_schema = N'dbo',
    @source_name = N'Customer',
    @role_name = NULL
    GO
    --Inserting values in customer table
    insert into Customer values('jugal'),('shah')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    --Taking full database backup
    backup database sqldbpool to disk = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\sqldbpool.bak'
    insert into Customer values('111'),('222')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    --Taking differential database backup
    BACKUP DATABASE sqldbpool TO DISK = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\sqldbpooldif.bak' WITH DIFFERENTIAL
    GO
    Secondly, I restore the ‘sqldbpool’ database  in a different SQL Server instance with the following scripts. After the restoration, everything works as expected and the database maintains the CDC integrity.
    Use master
    Go
    --restore full database backup
    restore database sqldbpool from disk = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\sqldbpool.bak' with keep_cdc
    Restore Database sqldbpool From Disk = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\sqldbpool.bak'
    With Move 'SQLDBPool' To 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\SQLDBPool.mdf',
    Move 'SQLDBPool_log' To 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\DATA\SQLDBPool_log.LDF',
    Replace,
    NoRecovery;
    Go
    --restore differential database backup
    restore database sqldbpool from disk = 'C:\Program Files\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQL\Backup\sqldbpooldif.bak' with keep_cdc
    --add the Capture and Cleanup jobs
    Use sqldbpool
    exec sys.sp_cdc_add_job 'capture'
    GO
    exec sys.sp_cdc_add_job 'cleanup'
    GO
    insert into Customer values('TEST'),('TEST1')
    -- Querying CDC table to get the changes
    select * from cdc.dbo_customer_CT
    When we restore a CDC enabled database, we need to note that the CDC feature is available only on the Enterprise, Developer, and Evaluation editions of SQL Server. And we need to add the Capture and Cleanup agent jobs after restoring the database.
    For more details about restoring a CDC enabled database in SQL Server, you can review the following similar articles.
    Restoring a SQL Server database that uses Change Data Capture:
    http://www.mssqltips.com/sqlservertip/2421/restoring-a-sql-server-database-that-uses-change-data-capture/
    CDC Interoperability with Mirroring and Recovery:
    http://www.sqlsoldier.com/wp/sqlserver/cdcinteroperabilitywithmirroringandrecovery
    Thanks,
    Lydia Zhang

  • How to search a word and its page in Acrobat 6.0 using vb6.0

    Hi all,
    I would like to search a word and its corresponding page number in my PDF document. The word may be occur in many of the pages and i have to collect all the page numbers and need to create bookmark for all of them.
    Eg: The word "Chennai" can be found in the pages 5, 6, 7 and10. Then I need to create bookmarks Chennai1 - Page 5, Chennai2 - Page 6 and so on...
    I have tried this with Acrobat 7.0 professional and it was working fine. But in 6.0 Professional i am not able to collect all the pages. Below I have given the code that i have used.
    Dim objFind As Acrobat.CAcroAVDoc
    Set objFind = CreateObject("AcroExch.AVDoc")
    Do While objFind.FindText("MyText", 0, 1, False)
                    Dim objPageView As Acrobat.CAcroAVPageView
                    Set objPageView = objFind.GetAVPageView
                    strPageNo = objPageView.GetPageNum + 1
                    If strPageNo = strPrevPageNo Then
                        intIncremental = intIncremental + 1
                    Else
                        intIncremental = 0
                    End If
                    If intIncremental > 50 Then
                        Exit Do
                    End If
                    If Val(strPageNo) < Val(strPrevPageNo) Then
                        Exit Do
                    End If
                    strPrevPageNo = strPageNo
    Loop
    Thanks in advance,
    Dhanasekaran. G

    Adobe no longer supports Acrobat 7 or earlier.

  • Project Server 2010 Reporting database corrupt after Administrative restore of Enterprise Lookup Tables

    Hi Guys
    Prosperous 2014 to all . I am stuck with a Huge issue that I am unable to resolve. I did a PWA Administrative restore the other day to try to recover some fields that was deleted.
    After the restore I got a queue error and since then my reporting database is screwed up. I tried to re-save the lookup tables, fields and views to no avail.
    None of my reports are working and every time I publish I get a reporting queue error on the projects.
    Your urgent help to sort this issue out will be highly appreciated
    Thanks
    Willem

    Hello,
    What was the queue error? Have you tried the restore of custom fields again?
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • 3.6.13 installed and bookmarks went away, won't open backup to restore, won't import and won't create new bookmarks Thanks.

    Don't know what else I can add, except that I opened it today and my last browser session with open tabs is lost, and FF didn't recognize that fact, as it usually does.

    I can add that I have multiple bookmark files saved to my Time Machine (Mac). The only corrupted file is the one from today when all the bookmarks disappeared. However, when I try to restore any of them, Firefox says the file cannot be restored. I saved an html copy and looked the files, and they are fine.

  • In FF9 beta, open atbs are not restored in next session, and bookmarking page doesn't ask for folder

    Running FF9 beta on Windows XP. Starting a few beta updates ago (two weeks or so, I think), my bookmark and session-restore functions started acting weird. When I click on "Bookmark" in the menu bar, the page just gets thrown onto the bottom of the bookmark list, even though until a few weeks ago a dialog box opened up allowing me to choose what folder o put the bookmark in.
    Also, FF doesn't remember my open tabs from one session to the next, even though that's the way I have it set up.
    My Firefox 9 at the office has none of these problems.

    When updating to version 36, if you are updating from more than two versions before, the session file structure changed in your profile. This is now in sessionstore-backups folder. However this should not affect if updating from 35.
    Are these also greyed out:
    Recently Closed Tabs & Recently Closed Windows
    It is greyed out "either due to:
    * your startup setting ([[Startup, home page and download settings]])
    * Firefox recovering from a crash during shutdown, or
    * a user.js file overriding your normal startup setting (your system info doesn't show the third file, so I think we can rule that out)"
    For future times that this may happen, the add on: session-manager is a nice backup to have.
    Reference this for restoring a session file in a previous version of Firefox: [https://support.mozilla.org/en-US/questions/1026370]

  • When i search through google and the page opens, it freezes showing that it is transfering. Also when i try to access my yahoo mail the same thing happens. I will uninstall Ver4 beta. and re install 3.6 until u guys find solution to this

    I clicked on yahoo mail, it opened the page but then freezes showing that it it still going on.
    Same thing happens when google page open for search.

    Don't have McAfee, Norton, AVG, actually nothing else running. Had Firefox 4 installed on 5 computers at home and 2 at work. Completely separate ISP's at home and work. XP and WIN7 computers. Yahoo mail freezes and I tried the old Yahoo mail, the new Yahoo mail, and the Beta Yahoo mail. The only way I can sometimes get mail to open is to right-click and open in a new tab or window. I uninstalled all of the computers running Firefox 4 and went back to 3.6.16. Just too buggy and the look of it is strange.

  • Search criteria region and search results regions

    I have a page where the user can enter some search values into some input boxes. Then once the search button is pressed I want the search results region displayed and not when the page is loaded. Eg I want the search result region to be hidden on page load until the search button is pressed. I though about a hidden item that is initialized to null and set after the search button is pressed.

    John - The hidden item's Source Type can be Static Assignment, the Source value should have no value and the Source Used attribute should be "Only...". Now the page will run in one of three ways:
    1) when you link to it and you want the search results region to be hidden you pass in the item and a null value (f?p=app:page:session::NO::P1_ITEM: or reset the page in the link: f?p=app:page_session::NO:1 assuming it's page 1)
    2) when the page branches back to itself after the search criteria are submitted, the branch passes P1_ITEM:xxxx or something
    3) when you branch or link to the page from somewhere else (including for pagination requests) and you want the previous search results to be retained/reused, don't pass anything in the link for P1_ITEM and don't reset the page.
    Scott

  • Forum search problem[Solved] and search for Homer[NOT Solved]

    While trying to find a thread where someone was trying to track down the archlinux homer release iso, I found out that any search term with the word install doesn't work. It just goes to a blank screen.
    That said, does anyone know where I can get an iso of homer, or where that forum thread went?
    Last edited by Sjoden (2009-01-04 04:08:37)

    Ah, ok, thank you! I tried a search for "linux", expecting that to have one of the most hits, and it does the same thing.

  • What is causing FF6.02 to have VERY slow and incomplete page loads

    Every since I've upgraded to FF 5 [now running 6.02] on Win7, the browser loads extremely slowly on ALL pages and often [most of the time] just hangs and doesn't display all images. I can start Chrome, copy and paste the URL and have the full page completely loaded while FF is still incomplete.

    Every since I've upgraded to FF 5 [now running 6.02] on Win7, the browser loads extremely slowly on ALL pages and often [most of the time] just hangs and doesn't display all images. I can start Chrome, copy and paste the URL and have the full page completely loaded while FF is still incomplete.

  • Solved!! Windows 2003 Server Enterprise SP1 and home page connection....

    I solved it, thanks everybody anyway!
    I did like this, I set to manual both the services OracleServiceXE and OracleXETNSListener and I put in the start up folder (it could be in the run registry key) the following batch file:
    net start OracleXETNSListener
    net start OracleServiceXE
    @oradim -startup -sid XE -starttype inst > nul 2>&1
    exit
    It's a modified version (just add exit in the end) of the StartDB.bat batch file in the bin folder!
    There gotta be some problem with the services right of way I guess!!!
    Ciao

    Hello;
    In windows there is a utiltity called "Group Policy Editor" or run this "gpedit.msc" at command line which you are able to setup your batch script at the computer logon or individual user login.
    HTH
    Shaun S.

Maybe you are looking for

  • I can't open jpgs created in Jaguar on my new MacBook Pro

    I just got a new MacBook Pro and now I am having proplems opening my clients jpg files (created on a G3 using Photoshop 5.5 in Jaguar). Some open fine, some just flash and disapear when I click on the folders containing them, so I can't even open the

  • Trying to share photos and it ask me to change some parameters in preferences

    when I try to email a photo from iphoto it sends me to preferences to change something and I don´t know wich should I change

  • MySql database scripts

    Are there MySql database scripts for all the tables?

  • OLD COFC errors for maintenance orders

    Hello, We are cleaning up some very old maintenance orders in our system (from as far back as 2004).  Many of these have COFC errors so when we try to close and set the delete flag we get the error "unprocessed future change recs exist". We did the s

  • Upgraded internet, doesn't seem so

    About 2 months ago we upgraded our internet from the 768kbps-1mbps to 1.5mbps to 3.0mbps. We recieved our new modem (6100g) to replace our old modem (6100). I hooked that up to the internet as soon as we got it. Internet runs fine.(Still have 768kbp