On this article, I am going to tell you about Check Object Definition in different way. sp_helptext is wide used for checking object definition in SQL Server. sp_helptext
Today I will explain regarding storing and retrieving images, videos and other document files from SQL server using the FILESTREAM feature. If you are new to FILESTREAM then
SQL Server uses a process called parameter sniffing when it executes a stored procedure that has parameters. When the procedure is compiled or recompiled, the value passed in
In this blog, we will look into accessing a newly-added column to a table. We can add a new column to an existing table. using ALTER statement using: ALTER TABLE table_name ADD column_name datatype; Similarly,
In this blog, I have explained the process of securing password using Encryption and Decryption in SQL Stored Procedure. STEP 1 Open SQL Server and create database and table
In some cases we need to select and modify the record based on specific conditions. So instead of using cursor or looping, we can use case CASE expression.