Home SQL Server Passing Table Valued Parameters in SQL Stored Procedure

Passing Table Valued Parameters in SQL Stored Procedure

6
0

Now here in this tutorial, I’ll explain how you can pass a table valued parameters variable into a stored procedure parameter and perform required DML operations in sql server with example demo code.

In my previous tutorials, I’d explained how to pass TVP or DataTable as Stored Procedure Parameter in asp.net, exporting gridview data to word excel text and pdf, how to show alert message from code-behind and other more cracking tutorials on SQL Server, Asp.net here.

 

To achieve this, we need to create SQL Table, Table Type and Store Procedure to perform DML (such as Insert, Update etc) tasks. So, follow the easy steps as below.

Creating SQL Table

Following is the script for creating sql table that we will use in this example to insert student results, so create table by executing following script:

CREATE TABLE [dbo].[Result]
(
[SubjectID] [int] NOT NULL,
[SubjectName] [nvarchar](50) NULL,
[Marks] [int] NULL,
[Grade] [nvarchar](50) NULL
)

Creating SQL User-Defined Table Type

In order to use table value parameters you have to create a table type. The table type is used to describe the structure of the table value parameter. This is similar to making a strong type. Following is the script for creating sql type table, so create type table by executing following script:

CREATE TYPE [dbo].[TVP_Result] AS TABLE
(
[SubjectID] [int] NOT NULL,
[SubjectName] [nvarchar](50) NULL,
[Marks] [int] NULL,
[Grade] [nvarchar](50) NULL
)
Quick Tip: To check the created Type Table, go to Your Database > Programmability > Types > Select User-Defined Table Types

Using TVP in T-SQL

Now that you have a table type you have to declare an instance to use it. The following is a quick example that declares an instance of the table type and populates it with some values. Later we will use C# to create a data table that will populate an instance of a table type.

— Declaring instance of Table Type ‘TVP_Result’
DECLARE @TVP TVP_Result— Now add some sample values into our instance of Table Type
INSERT INTO @TVP (SubjectID, SubjectName, Marks, Grade)
VALUES
(1, ‘Asp.net’, 97, ‘A+’),
(2, ‘C#’, 89, ‘A’),
(3, ‘Vb.net’, 86, ‘B+’)— Now you can see values that inserted in table type instance i.e ‘@TVP’
SELECT * FROM@TVP

Using TVP in Stored Procedure

In order to use table value parameters in a stored procedure you have to declare an instance of the table type and specify it as READONLY. It is mandatory for the table value parameter to be READONLY so you cannot modify the data inside of the table type variable inside the stored procedure. Below we will insert the data in the table value parameter into the dbo.Result table.

CREATE PROCEDURE [dbo].[sp_TVPInsertResult]
(
@TVP TVP_Result READONLY
)
AS
BEGIN
INSERT INTO dbo.[Result] (SubjectID, SubjectName, Marks, Grade)
SELECT SubjectID, SubjectName, Marks, Grade
FROM @TVP
END
GO

Now if you want to test above stored procedure, you need to follow same process as we used for TVP in T-SQL in our first example except last statement, Check following example:

— Declaring instance of Table Type ‘TVP_Result’
DECLARE @TVP TVP_Result— Now add some sample values into our instance of Table Type
INSERT INTO @TVP (SubjectID, SubjectName, Marks, Grade)
VALUES
(1, ‘Asp.net’, 97, ‘A+’),
(2, ‘C#’, 89, ‘A’),
(3, ‘Vb.net’, 86, ‘B+’)— Now you can execute the SP and insert data in ‘Result’ table
EXECsp_TVPInsertResult @TVP

Last statement executes the created sp_TVPInsertResult stored procedure and insert data values from @TVP Type Table, that is temporarily stored in memory after completing process it will automatically cleared memory as well as records too. Now you can check dbo.[Result] table to check all the 3 sample records that are inserted at a same time as a bulk insert.

Limitations with Passing Table Valued Parameters

You must use the READONLY clause when passing in the table valued variable into the stored procedure. Data in the table variable cannot be modified OR In other words, you can use the data in the table for any other operation. Also, you cannot use table variables as OUTPUT parameters OR In other words, you can only use table variables as INPUT parameters.

Passing DataTable as Table Valued Parameters – [.Net]

Note that, The DataTable is not the only type that can be used for Table Valued Parameters in .NET but you can also use the DataSet or List types as TVP.

LEAVE A REPLY

Please enter your comment!
Please enter your name here
Captcha verification failed!
CAPTCHA user score failed. Please contact us!