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 »Running DDL Command on Remote Database With Database Link
The DDL command cannot be executed directly with the database link on the remote database. If it is run, it will cause the error …
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 »Select Into Statement in SQL Server(TSQL)
We use the Select Into Statement to export the data in a table to another table. You can see a few examples below. First, …
Read More »Insert Into Statement in SQL Server(TSQL)
We use the Insert Into Statement to add data to a table. We can use the Insert Into Statement in a number of different ways. …
Read More »Select Statement in SQL Server(TSQL)
We use the Select statement to read data from the database. If we want to read the specific columns in the table, we need to …
Read More »