Tagged Questions

Table-valued parameters are a new parameter type in SQL Server 2008. Table-valued parameters are declared by using user-defined table types

learn more… | top users | synonyms

8
votes
2answers
780 views

Binding empty list or null value to table valued parameter on a stored procedure (.net)

I have created a stored procedure that takes a table valued parameter that is a table with a single column of type int. The idea is to simply pass a list of ids into the store procedure and allow the ...
5
votes
1answer
177 views

Problems with table-value parameter performance

I don't know whether this is an issue with how I'm using them or Microsoft's implementation, but SQL 2008 table-value parameters are painfully slow. Generally if I need to use a TVP it's because I've ...
5
votes
3answers
683 views

How to set up ASP.NET SQL Datasource to accept TVP

In the codebehind you would add the TVP as a SqlDbType.Structured for a stored procedure But this doesn't exist in an ASP.NET SqlDataSource control. I have stored my Datatables in session variables ...
4
votes
1answer
380 views

Entity Framework Stored Procedure Table Value Parameter

I'm trying to call a stored procedure that accepts a table value parameter. I know that this isn't directly supported in Entity Framework yet but from what I understand you can do it using the ...
4
votes
1answer
170 views

Create a UDT that has SQL @tables as its members

I wonder whether it is possible to create a CLR user-defined type in SQL Server 2008 members of which would be table variables. You know, you can declare a table variable: declare @foo table (row_id ...
4
votes
3answers
2k views

Table-Valued Parameter in Stored Procedure and the Entity Framework 4.0

I have a stored procedure in SQL Server 2008 called 'GetPrices' with a Table-Valued Parameter called 'StoreIDs'. This is the type i created for this TVP: CREATE TYPE integer_list_tbltype AS TABLE (n ...
3
votes
2answers
97 views

@table varible or #temp table : Performance

I have a big user defined table type variable having 129 Columns. I will store around 2000-3000 Records in this variable at a time and passing this to various stored procedures and functions to get ...
3
votes
1answer
88 views

Does SQL Server 2008 have “stock” table parameter types?

Does SQL Server 2008 offer any pre-defined table types for use with table-valued parameters? For instance, if I just want to pass in a list of integers as a table, and derive necessary context from ...
3
votes
2answers
97 views

My query filtering is not working the way I want it to

I have 3 ways I want to filter: by name by list and show all I'm using ASP.NET 3.5 and SQL Server 2008. Using ADO.NET and stored procs. I'm passing my list as a table valued parameter (but I'm ...
3
votes
3answers
2k views

Table-Valued Parameters to CLR Procedures in SQL Server 2008 - possible?

This page from SQL Server 2008 BOL, talks about CLR Stored Procedures and has a section labelled, "Table-Valued Parameters", which talks about how they can be advantageous. That's great - I'd love to ...
2
votes
2answers
109 views

Can Reflection in .Net help construct a Table Valued Parameter/SqlMetaData[] Object Dynamically by looking at the User Defined TypeName?

I have started using Table Valued Parameters in Sql Server 2k8 for batch operations. I liked this feature a lot and feel it came after a long wait. However, inorder to pass a TVP from .Net code there ...
2
votes
1answer
81 views

How to create a table-value parameter for text command

I have a generated block of SQL query that takes a table-value parameter as an input. I have a DataTable data input parameter, then: // add the table-value parameter var tvp = ...
2
votes
2answers
144 views

Querying using table-valued parameter

I need help please with writing a sproc, it takes a table-valued parameter @Locations, whose Type is defined as follows: CREATE TYPE [dbo].[tvpLocation] AS TABLE( [CountryId] [int] NULL, ...
2
votes
1answer
468 views

Using a list of datarows to store data

I have a master-detail relationship between 2 classes. The master class will contain a list of many details. Currently I was using public class Master: cloneable<T> { //other properties ...
2
votes
2answers
1k views

Why does adding a new value to list<> overwrite previous values in the list<>

Following a few tutorials and such I was able to successfully create a collection class which inherits the functionality needed to create a DataTable which can be passed to a Sql Server's stored ...
1
vote
0answers
53 views

What pattern to follow when I manually open connection in DataContext

Linq2Sql does not support table-valued parameters for stored procedures (1, 2). Because of this, I'm adding an ugly support for table-valued parameters in my DataContext (just to keep things ...
1
vote
0answers
34 views

Calling a stored procedure from within a CLR stored procedure with a table valued parameter

The situation: One Clr stored procedure that builds a data table and then it tries to call an SQL Stored procedure with a TVP parameter. The code: public class tvp_test : System.Data.DataTable ...
1
vote
3answers
57 views

How can I use a Table-Valued Parameter to insert multiple rows and then return their IDs?

In my application, I have a large of number (100+) of rows that I need to insert into the database. Once they get inserted into the database, I need to insert their children, which have a foreign key ...
1
vote
1answer
94 views

What are the downsides to Table Valued Parameters in Stored Proc?

I have worked with various versions of MS SQL Server including 2000,2005,2008,R2,(Some)Denali. I have never been so excited about a new feature like the Table Valued parameters in stored proc. I do C# ...
1
vote
0answers
71 views

implementation of table valued parameters in visual basic

Can I use table valued parameters in visual basic 6. If possible can you please share some examples. I went trhogh following link http://msdn.microsoft.com/en-us/library/bb675163.aspx#Y3347 but ...
1
vote
1answer
671 views

Passing multiple tables to stored procedure with multiple table-valued parameters problem

I am trying to pass DataTables to a stored procedure that accepts multiple table-valued parameters. The problem is, it seems that all the parameters are being passed to the first one so I am getting ...
1
vote
4answers
130 views

Is it possible to inspect the contents of a Table Value Parameter via the debugger?

Does anyone know if it is possible to use the Visual Studio / SQL Server Management Studio debugger to inspect the contents of a Table Value Parameter passed to a stored procedure? To give a trivial ...
1
vote
1answer
162 views

Are SQL Server 2008 Table Valued Parameters vulnerable to SQL injection attacks?

I have been investigating Table-Valued Parameters in SQL Server 2008, and I've discovered that when passing such a parameter to a stored procedure, a query such as the following is sent to the ...
1
vote
3answers
526 views

Going from Dictionary<int, StringBuilder> To Table-Valued SqlParameter. How?

I have code that has a Dictionary defined as: Dictionary<int, StringBuilder> invoiceDict = new Dictionary<int, StringBuilder>(); Each Value in each KeyValuePair the Dictionary is ...
1
vote
1answer
496 views

sql table udt, vs 2008, csharp

I am trying to run a SQL stored proc from Visual Studio 2008 which takes a table-valued UDT parameter as an input. I added this parameter in Visual Studio 2008 but when I run this program it gets an ...
0
votes
0answers
13 views

add tvf in entityframework through modify SSDL

I have some tvf in my database, but EFV4.0 seems don't support tvf, is it possible to modify the SSDL file to add my tvf in? I don't want to use stored procedure. Some one can help? Thanks in advance! ...
0
votes
1answer
35 views

Table Value Parameter ReadOnly Work-Around

I have a SProc with a Table-valued Parameter, @section of type dbo.SectionIn. This param is being used throughout the SProc and I would like to remove some records from it but of course it is ...
0
votes
1answer
69 views

How is a Table Valued Parameter passed into Merge statement getting Duplicate Key error on an empty table?

I am sending a Table Valued Parameter into an MS SQL Server 2008 R2 stored procedure from C# code. The error I receive is: "Violation of PRIMARY KEY constraint 'PK_Example.ExampleTable'. Cannot insert ...
0
votes
1answer
45 views

SQL Stored Procedure - using parameters internally

I have a stored proc that I am passing two parameters into. One parameter is a table-valued parameter and the other is a nvarchar. Here is the stored proc: ALTER PROCEDURE [dbo].[_sp_TestProc] ...
0
votes
2answers
69 views

Multiple Inserts in ADO.Net & SP

I need to insert multiple records from ado.net. It should call a SP for updating. I have multiple records as CSV and added them in temporary table in SP. Some Validations needs to be done that. And it ...
0
votes
1answer
213 views

Can I pass table valued parameters to a stored procedure with PetaPoco?

I'm trying to use PetaPoco for a project that has some stored procedures. Most of them work fine, however, we have a couple where the stored procedure is expecting an IntList which is a User-Defined ...
0
votes
1answer
120 views

Preparing a command with Structured Parameters

I have this ADO.NET command object and I can set some parameters and execute it successfully. _mergecommand.Parameters.Add(new SqlParameter("values", SqlDbType.Structured)); ...
0
votes
1answer
178 views

Java parameter passing int[][]

I am trying to write a simple DCT algorithm in java. I want my findDCT method to have as a parameter an integer array like this: public class DCT { private Random generator = new Random(); ...
0
votes
2answers
349 views

Can ObjectDataSource use table-valued parameters

If an ASP.NET web page uses an ObjectDataSource, can you configure it to use a stored procedure that uses table-value parameters? User-defined type: CREATE TYPE [dbo].[integer_list_tbltype] AS TABLE ...
0
votes
1answer
146 views

Table Value Parameter missing data table data

I'm new to TVP in SQL Server and trying to understand the basics. I created a sample TVP in the Northwind database in SQL Express. My code from VB.NET is fairly simple (see below). The TVP parameter ...
0
votes
1answer
583 views

Identity column in a table-valued parameter in procedure, how to define DataTable

Is it possible to pass a parameter of type "table" with a column of type "[int] IDENTITY(1,1)" to a procedure and execute this stored procedure with a DataTable object passed as the input parameter? ...