Uninstall-FASTSearchAdminDatabase

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>]
         [<CommonParameters>]

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.

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)

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.

Parameters

-DbConnection

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.

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:FAST Server for SharePoint 2010

-DbName

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.

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:FAST Server for SharePoint 2010

-DbServer

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""

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False
Applies to:FAST Server for SharePoint 2010