If we want to delete all records in the Table, we can do this with the Truncate Table command. You can use the truncate …
Read More »MSSQL
SQL Server 2016: Dynamic Data Masking
I tested the Dynamic Data Masking feature in my SQL Server 2016 test environment, and I want to share the result with you. I …
Read More »Rebuilding Indexes Using SQL Server Maintenance Plan
We perform maintenance operations on SQL Server using Maintenance Plan. In this article I will describe the process of rebuilding indexes. I will share links …
Read More »How To Drop a Table in SQL Server
To create a table in SQL Server, you can read the article “How to Create a Table in SQL Server“. In this article, we …
Read More »How To Drop a Database in SQL Server
In this article, we will talk about two methods to drop a database. First Method (With SSMS): When you connect to SQL Server Instance …
Read More »How To Create a Table in SQL Server
We will create a table in SQL Server by using two methods in this article. First Method (With SSMS): Right-click on the corresponding database …
Read More »Delete Statement in SQL Server(TSQL)
With the Delete Statement, we can delete records in a table in the database. The most important thing to note when running this command …
Read More »A transport-level error has occurred when receiving results from the server
ERROR: A transport-level error has occurred when receiving results from the server. (provider: TCP Provider, error: 0 – The semaphore timeout period has expired.) …
Read More »Update Statement in SQL Server(TSQL)
With the Update Statement, we can update records in a table in the database. The most important thing to note when running this command is …
Read More »Reorganizing Indexes Using SQL Server Maintenance Plan
We perform maintenance operations on SQL Server using Maintenance Plan. In this article I will describe the process of reorganizing the indexes. I will …
Read More »