Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
3answers
5k views

Performance of bcp/BULK INSERT vs. Table-Valued Parameters

I'm about to have to rewrite some rather old code using SQL Server's BULK INSERT command because the schema has changed, and it occurred to me that maybe I should think about switching to a stored ...
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 ...
3
votes
1answer
96 views

Handle multiple db updates from c# in SQL Server 2008

I like to find a way to handle multiple updates to a sql db (with one singe db roundtrip). I read about table-valued parameters in SQL Server 2008 ...
1
vote
1answer
124 views

not able to declare variable as TVP type in Stored Proc

I have created a TVP and I am trying to use it in a stored proc for my input into stored proc. the issue is I am not able to create my SP with it. Its says Msg 137, Level 16, State 1, Procedure ...
1
vote
1answer
145 views

create an INDEX for a TVP in SQL 2008

Can we create an Index for TVP's(Table valued Parameters) in SQL Server 2008. please can any one give the syntax. Thanks In advance.. Vinay K
1
vote
0answers
268 views

ADO.NET XML type column in Table Value Parameter

This isn't actually a question, it's a problem which I couldn't find any help on, so I thought I'd post the solution I eventually found in case someone else encounters it. The problem was with an ...
1
vote
1answer
202 views

Reduce dynamic SQL using CASE to use “IN” or not

I am converting a stored procedure which I had previously written as a string then, using BIT parameters I decided whether to append certain WHERE/ON clauses This sp is passed a number of ...
1
vote
2answers
828 views

sql server 2008 table valued parameters linq2sql

Has anybody experimented with these. Is this supported?
0
votes
1answer
58 views

Using Table-Valued Parameter's column in stored proc -

I'm passing a TVP with 2 fields (a datetime and a varchar(3)) into a stored proc, and I'm trying to return all the table rows where the table's datetime column is either equal to one of the TVP ...
0
votes
1answer
39 views

Recommendations for storing real-time data that allows for high speed storage/retrieval with .NET API

I am trying to find the best solution to essentially replace a SQL database in a solution that is currently under development, but is working. The data store needs to to include table partitioning and ...
0
votes
2answers
106 views

Iterating through a TVP before inserting records?

I'd like some help writing the following sproc: I have SQL Server 2008 sproc that accepts two integer values (@ID1 and @ID2) and a data table/TVP. The TVP table contains several fields, ie. Title ...
0
votes
1answer
116 views

SQL Server Table Valued Params and Memory?

I have a sproc that generates an 80,000-row temp table which is passed as a table-valued parameter to 32 different other sprocs (each sproc the TVP as an input parameter). Should I be concerned ...
0
votes
1answer
105 views

What is the fastest way to create VB.NET Datatables from SQL TVP

I am in the process of revising code to use TVP to send data from our VB.NET app to the SQL 2008 DB and try to keep all the writes atomic. Using this page as a general guide: ...
0
votes
2answers
494 views

How to ALTER the Table Value Parameter

i am not getting option like 'ALTER To' when am right clicking on TVP