Some tips for using backup and restore in SQL Server 2016 Consider using the simple recovery model to minimize the backup/restore time and minimize administrative overhead for the transaction log. Under the simple recovery model the transaction log is not backed up. So, the data is recoverable only to the most recent backup of the lost data and the point-in-time […]
Three Undocumented SQL Server 2014 Full-Text Search Stored Procedures
Three Undocumented SQL Server 2014 Full-Text Search Stored Procedures SQL Server 2014 supports the following three undocumented full-text search system stored procedures: sp_fulltext_recycle_crawl_log sp_MShelpfulltextindex sp_MShelpfulltextscript sp_fulltext_recycle_crawl_log The sp_fulltext_recycle_crawl_log system stored procedure is used to recycle crawl log for the given full-text catalog name. Syntax sp_fulltext_recycle_crawl_log [ @ftcat = ] ‘ftcat’ Arguments [ @ftcat = ] ‘ftcat’ Is the full-text catalog […]