Tips for using views in SQL Server 2019 Use views instead of heavy-duty queries to reduce network traffic. Using views instead of heavy-duty queries can reduce network traffic, because your clients will send to server only a simple query, such as SELECT * FROM VIEW_NAME (perhaps with some parameters), instead of large heavy-duty queries text. Consider using stored procedures instead...
Undocumented SQL Server 2017 Full-Text Search and XML procedures
Undocumented SQL Server 2017 Full-Text Search and XML procedures SQL Server 2017 supports the following useful undocumented SQL Server Full-Text Search and XML procedures: sp_fulltext_recycle_crawl_log sp_MShelpfulltextindex sp_MShelpfulltextscript sp_syscollector_validate_xml sp_xml_schema_rowset sp_xml_schema_rowset2 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 = ]...