Uninstall-FASTSearchAdminDatabase

 

Applies to: SharePoint Server 2010

Uninstalls the database used by the Microsoft FAST Search Server 2010 for SharePoint administration services. This cmdlet is primarily called during uninstallation by the FAST Search Server 2010 for SharePoint installer.

Syntax

Uninstall-FASTSearchAdminDatabase [-DbConnection <String>] [-DbName <String>] [-DbServer <String>]

Detailed Description

This cmdlet uninstalls the database used by the FAST Search Server 2010 for SharePoint administration services. All data is deleted. This cmdlet is primarily called during uninstallation, by the FAST Search Server 2010 for SharePoint installer.

The administration database default name is “FASTSearchAdminDatabase” and is located in the Microsoft SQL Server instance specified by the DbServer or DbConnection parameters.

Parameters

Parameter Required Type Description

DbConnection

Optional

System.String

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.

DbName

Optional

System.String

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.

DbServer

Optional

System.String

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"

Input Types

Return Types

Example

---------------EXAMPLE 1-----------------

Uninstall-FASTSearchAdminDatabase -DbServer=sqlserver.contoso.com

This example uninstalls the FAST Search Server 2010 for SharePoint administration database on the given SQL Server instance. All data will be deleted.

See Also

Reference

Install-FASTSearchAdminDatabase