December 2015
Intermediate to advanced
760 pages
14h 31m
English
In this recipe, we will create a full-text index.
Before we proceed with this recipe, ensure that you have already created a full-text catalog in your instance. If you haven't created one, you can run the B04525 - Ch06 - 10 - Adding Full-Text Catalog - Prep.ps1 file that creates the sample database and full-text catalog and follow the Adding a full-text catalog recipe before proceeding with this recipe.
Let's take a look at the steps to create a full-text index:
SQLPS module and create a new SMO Server object as follows:#import SQL Server module Import-Module SQLPS –DisableNameChecking $instanceName = "localhost" $server = New-Object -TypeName Microsoft.SqlServer.Management.Smo.Server ...
Read now
Unlock full access