SQL Server

SQL Server

Understanding Service Broker to perform asynchronous operations – (Part-1)

Understanding Service Broker to perform asynchronous operations – (Part-1) Author: Basit A. Farooq Editor’s note: In this multiple part article series, you learn how to configure Service Broker components. You will create a message type to define the format of a message, a contract to define communication between services, a queue to store and deliver messages, and a service to […]

SQL Server

Working With Information Within The Tables / Relations – Part 4

Working With Information Within The Tables / Relations Part – 4 Removing Every Information From The Table / Relation Begin a database designer; an individual may require removing all the information from a particular table or relation. An individual can perform this task by means of the subsequent DELETE command: DELETE My_Table_Name here, · My_Table_Name – It stipulates the name […]

SQL Server

Troubleshooting SQL Server 2014 full-text search

Troubleshooting SQL Server 2014 full-text search If you have problems with SQL Server 2014 full-text search, review this troubleshooting checklist to find potential solutions. 1. Install the latest SQL Server 2014 service pack. Because some SQL Server 2014 full-text search bugs were fixed in SQL Server service packs, you should install the latest SQL Server service pack. At the time […]

SQL Server

Understanding Database Indexes — (Part – 3)

Understanding Database Indexes – (Part – 3) Author: Basit A. Farooq Full-text indexes A full-text search is a word search based on character string data. The Microsoft Full-Text Engine for SQL Server creates and maintains a full-text catalog automatically when you enable a table for full-text search. For more information about full-text indexes, see SQL Server Books Online topic: “Populate […]

SQL Server

Understanding Database Indexes — (Part – 2)

Understanding Database Indexes – (Part – 2) Author: Basit A. Farooq Covering Index with included columns SQL Server 2005 introduces included columns in indexes also known as covering indexes. Included columns are non-key columns. Query performance improves when all columns in a query are included in the index as either key or non-key columns. The SQL Server Database Engine stores […]

SQL Server

Troubleshooting SQL Server 2014 CLR Problems

Troubleshooting SQL Server 2014 CLR Problems If you have problems with SQL Server 2014 Common Language Runtime (CLR) objects, review this troubleshooting checklist to find potential solutions. 1. Install the latest SQL Server 2014 service pack. Because many SQL Server 2014 CLR bugs were fixed in SQL Server service packs, you should install the latest SQL Server service pack. At […]

SQL Server

User-defined functions (UDFs) – Part-2

User-defined functions (UDFs) – Part-2 Author: Basit A. Farooq Editor’s Note: In this second of the two part article series, you’ll about creating and using in-line table functions, and multi-statement table functions. You used CREATE FUNCTION, ALTER FUNCTION, DROP FUNCTION, and SQL Server Management Studio to create and manage functions. You learned about a related object, CLR aggregates. Creating a […]