As part of extending my pervious post (Renaming SharePoint 2010 Search Service Database Name) I’m planning to provide a walkthrough practice for changing the Database names for FAST Search for SharePoint 2010 (FS4SP). I will start this post by listing the FS4SP Databases, then walking through the practice of renaming these databases.
FS4SP mainly deals with 2 Search Service Application (SSA) - FAST Search Content SSA & FAST Search Query SSA – which consist of 3 databases each as following:
Renaming Content SSA Databases
Modifying the Crawl Store Databases for the FAST Content SSA can be edited using the Farm Search Administration page in the Central Administration as following:
Note: The FAST Content SSA Property Store Database is not shown in the Central Administration.
Modifying the Administration and Property Store Databases for the FAST Content SSA can be edited using PowerShell as following:
$ContentSSA = Get-SPEnterpriseSearchServiceApplication –identity "[FAST Content SSA Name]"
$ContentSSA.Pause()
$ContentSSA | Set-SPEnterpriseSearchServiceApplication -DatabaseName "[New FAST Content SSA DB Name]" –DatabaseServer "[DB Server Name]"
$ContentSSA.Resume()
Get-spdatabase
Set-SPEnterpriseSearchPropertyDatabase –Identity "[Property Store Database GUID]" -SearchApplication $ContentSSA -DatabaseName "[New FAST Content Property Store DB Name]" -DatabaseServer "[DB Server Name]"
Renaming Query SSA Databases
Modifying the Crawl and Property Store Databases for the FAST Query SSA can be edited using the Farm Search Administration page in the Central Administration as following:
Modifying the Administration Databases for the FAST Query SSA can be edited using PowerShell as following:
$QuerySSA = Get-SPEnterpriseSearchServiceApplication –identity "[FAST Query SSA Name]"
$QuerySSA .Pause()
$QuerySSA | Set-SPEnterpriseSearchServiceApplication -DatabaseName "[New FAST Query SSA DB Name]" –DatabaseServer "[DB Server Name]"
$QuerySSA .Resume()
Hope you find it useful.