LIKE vs CONTAINS in SQL Server
Though LIKE and CONTAINS can be used interchangeably in several use cases, there are several differences between them. Now let us compare LIKE vs CONTAINS.
Articles related to SQL Server, SQL Queries, Stored procedures, databases, etc..
Though LIKE and CONTAINS can be used interchangeably in several use cases, there are several differences between them. Now let us compare LIKE vs CONTAINS.
Comparition of INFORMATION_SCHEMA.TABLES Vs SYS.TABLES in SQL Server.
Today we will see a simple tip on how to get the list of all tables in a SQL Server database using TSQL metadata catalogs.
Status bar of SSMS won’t show the execution time in milliseconds. To get the accurate execution time in milliseconds, use the different options explained in this article.
Handling UTC DateTime in SQL Server database is very important for multi time zone applications. Here, you will learn about ways for storing the date time in UTC and converting the UTC DateTime to another time zone.
Here in this article we will see the various types of SHA-2 hashing has algorithms and the algorithms supported by SQL Server with examples.
Row-By-Row Processing Without Cursor: Here is a simple tip on how to loop through table rows without cursor in SQL Server.
Here is a simple Transact SQL script to backup all the databases In an SQL Server
Simple tips for finding triggers in an SQL Server database based on the partial table name or all the tables under a schema.
When trying to filter the results using LIKE clause with string having square bracket, it won’t work. So, how to escape square brackets in LIKE clause?
Is there FOR LOOP in SQL Server? If you are new to SQL Server and trying to create a stored procedure with some simple logic, you might be looking for the syntax of FOR LOOP.
Here is my take to search the whole database for a string In SQL Server. A stored procedure to search all the tables and its columns for a keyword.
Here is a simple solution to avoid the SQL Server error “String or binary data would be truncated …” and Insert string data with truncation.
Now we will see how to execute a Stored Procedure from python. For the most part, executing a stored procedure is similar to a select statement.
Today, let us see how to execute an SQL Server Stored Procedure from a C# program.
Solution for unable to save changes after editing table in design window of SQL Server Management Studio.
GETDATE() Vs CURRENT_TIMESTAMP: What are the differences and similarities between GETDATE() and CURRENT_TIMESTAMPIn SQL Server?
In this article we will see how to connect SQL Server from a Python program on macOS using the Visual Studio Code as the development environment.
IN SQL Server, moving table to another schema is quiet simple. Here I have given sample script to transfer one or all tables in a database to another schema.
Now we will see about the simplest method for killing all the active connections of an SQL Server database.