Install-FASTSearchAdminDatabase
Installs the database used by the Microsoft FAST Search Server 2010 for SharePoint administration services.
Syntax
Default (Default)
Install-FASTSearchAdminDatabase
[-DbConnection <String>]
[-DbName <String>]
[-DbServer <String>]
[-Force]
[-Upgrade <Boolean>]
[<CommonParameters>]
Description
This cmdlet installs the database used by the FAST Search Server 2010 for SharePoint administration services. This cmdlet is primarily called during installation, by the FAST Search Server 2010 for SharePoint installer.
The administration database default name is "FASTSearchAdminDatabase" and should be located in the Microsoft SQL Server instance specified by the DbServer or DbConnection parameters.
In addition to performing an initial installation of the database schema, this cmdlet can also:
-- Reinstall (destructively) the database schema if it already exists. -- Upgrade the database schema from an earlier version.
For permissions and the most current information about FAST Search Server 2010 for SharePoint cmdlets, see the online documentation, (https://go.microsoft.com/fwlink/?LinkId=163227).
Examples
EXAMPLE 1 (FAST Server for SharePoint 2010)
Install-FASTSearchAdminDatabase -DbConnection "Data Source=sqlserver.contoso.com;Database=FASTSearchAdminDatabase;integrated Security=True;"
This example installs the database schema in the database server specified by the connection string.
EXAMPLE 2 (FAST Server for SharePoint 2010)
Install-FASTSearchAdminDatabase -Upgrade -DbServer "sqlserver.contoso.com"
This example upgrades the database schema already installed in the FAST Search Server 2010 for SharePoint administration database on the given SQL Server instance.
EXAMPLE 3 (FAST Server for SharePoint 2010)
Install-FASTSearchAdminDatabase -Force -DbServer "sqlserver.contoso.com"
This example deletes and reinstalls the database schema already installed in the FAST Search Server 2010 for SharePoint administration database on the given SQL Server instance.
Parameters
-DbConnection
Applicable: FAST Server for SharePoint 2010
Specifies the database connection string for the FAST Search Server 2010 for SharePoint administration database, in the same format as the ConnectionString property of the System.Data.SqlClient.SqlConnection .NET Framework type.
Parameter properties
Type: | String |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-DbName
Applicable: FAST Server for SharePoint 2010
Specifies the name of the FAST Search Server 2010 for SharePoint administration database.
The name only takes effect when used in conjunction with the DbServer parameter, not the DbConnection parameter.
Parameter properties
Type: | String |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-DbServer
Applicable: FAST Server for SharePoint 2010
Specifies the database server instance that contains the FAST Search Server 2010 for SharePoint administration database.
Only one of the DbServer and DbConnection parameters must be specified. Using DbServer with a value of sqlserver.contoso.com is equivalent to using DbConnection with the value "Data Source=sqlserver.contoso.com;Database=FASTSearchAdminDatabase;integrated Security=True"
Parameter properties
Type: | String |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-Force
Applicable: FAST Server for SharePoint 2010
The Force parameter specifies that the FAST Search Server 2010 for SharePoint administration database already exists, but should be reinstalled.
This will delete all data that already exists in the database.
Parameter properties
Type: | SwitchParameter |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-Upgrade
Applicable: FAST Server for SharePoint 2010
Specifies that the FAST Search Server 2010 for SharePoint administration database already exists and that it should be upgraded, because it uses an older version of the database schema.
The upgrade process will attempt to migrate all data to the new database schema.
It is strongly recommended that you back up the database before performing this operation.
Parameter properties
Type: | Boolean |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.