I have a two step job running periodically in SQL Server 2012.
ALTER FULLTEXT CATALOG [CatalogName] REBUILD
ALTER FULLTEXT INDEX ON [tblname] START FULL POPULATION
I didn't get the purpose of second step because google says that on first step itself sql server recreates catalog and generates indexes.
I would appreciate if someone could help me in understanding what happens internally during the execution of above two steps.