Table-valued parameters are a new parameter type in SQL Server 2008. Table-valued parameters are declared by using user-defined table types
1
vote
2answers
28 views
How can I call stored procedure returning both a table and a return statement in a controller in mvc entity framework 4?
I have a stored procedure which returns a table as well as a return errorstate which is an int. How can I call this stored procedure from a controller in MVC.
(I'm using Entity Framework 4)
Stored ...
1
vote
1answer
50 views
Table-valued parameter error in SQL Server
I'm working on a reporting module for a company project. Although we use an ORM for our application, I've decided to write stored procedures for the reports in anticipation of migrating to SSRS.
...
1
vote
1answer
34 views
Using table valued parameters with wildcards?
The scenario...
I'm developing a web site in ASP.net and Visual Basic that displays product listings (hereafter referred to as "Posts") generated by the users. In this site, I have a search box that ...
2
votes
1answer
85 views
Table-valued parameters for in clause are slower then simple in clause
I have sql queries with some IN clauses. In order to improve query plan caching I decided to use table-valued parameters.
Here is the sample WHERE ID IN (SELECT ID FROM @P1).
@P1 is variable of the ...
1
vote
1answer
33 views
Preserving non-inserted data for a record
I am experimenting with table valued parameters (TVP) and how to use them from C# code. One specific aspect of TVP is giving me trouble: When passing a list of data to the Stored Procedure and wanting ...
1
vote
1answer
159 views
Use dynamic SQL statement at SQL Server 2008 in tablevalue function [duplicate]
Is there any way to create a custom function that returns a table using a SQL statement that is created dynamically?
So far I tried things like
ALTER function [dbo].[Test2] (@Mandant smallint)
...
2
votes
1answer
179 views
Using Table-Valued Parameters (SqlDbType.Structured) in Mono 2.10
How, if at all, can I pass in a table-valued parameter into a query when using Mono? (I'm currently using version 2.10.12)
It seems that the SqlDbType enumeration in Mono has not been extended to ...
0
votes
2answers
156 views
How to create int IDs during set insert in SQL Server 2008
I am exploring the use of table valued parameters in stored procedures to do multiple inserts in a single call to the database.
The table value parameter contains information that, more or less, ...
0
votes
1answer
119 views
Passing entire rows to SQL CLR function/sproc
I have a process where I need to perform some complex string manipulation on a SQL table containing columns like Forename, Surname, Address1 etc
To perform this data manipulation I have setup various ...
0
votes
2answers
262 views
Table-valued Function
I've got a Table-valued Function that used to be working, but not anymore or at least takes to much time.
The only thing that might have changed is the ammount of data on the tables the query reads.
...
0
votes
4answers
606 views
Delete multiple rows from a table in sql server with a single call from client application
Here is my requirement:
I want to delete multiple rows of a table
I have the list of all ids that needs to be deleted in the client app.
All I want is to make just a single call from my C# client ...
0
votes
0answers
80 views
table-valued function, returning no value?
this is my function:
create function ReservationByClient (@reservation_ID int)
returns table
as
return(
select
c.client_name,
c.client_surname,
c.client_passport,
r.aptID,
...
2
votes
1answer
520 views
How to pass Table Valued Parameter to a stored procedure through Webmatrix.Data.Database.Query
The c# code below is self explanatory. I want to pass a DataTable as a table valued parameter to a stored procedure in SQL Server 2008 through WebMatrix.Data.Database.Query but in the last line of the ...
1
vote
2answers
178 views
SQL Server 2008 table with data as parameter for UDF
My question: Is it possible in SQL Server 2008 to define temporal table in stored procedure and pass it as variable to user defined function?
I need to do the following:
I have procedure ...
1
vote
0answers
133 views
Alternative solutions to table-valued parameters in mysql stored procedure
Is there anyone who may have found an alternative solution to having table-valued parameters in MYSQL. My situation is I want to pass in multiple rows from a visual basic front end application and Id ...
1
vote
2answers
191 views
Short Circuit EXISTS statment in SQL Server query for Table Valued Parameters
I use stored procedures:
In my WHERE clause, I use short circuits (OR's) to speed up execution as the Query Optimiser knows that most of my inputs are defaulted to Null. This allows my query to be ...
2
votes
2answers
978 views
Call MS SQL Server Stored Procedure with multiple parameters inclusive of table-value parameter
After doing some research here and online I am at a loss as to whether this is possible. What I want to do is call a stored procedure that has several parameters one of which is a table-value ...
0
votes
2answers
131 views
How to query text column(s) using a Table Valued Parameter?
I have a Table Valued Parameter (@KEYWORD) which just has one column with 0 to many rows of keywords that will query against one or two database (nvarchar) columns (REMARKS and SUPPLEMENTAL_REMARKS). ...
4
votes
1answer
306 views
Passing parameter of type 'object' in table-valued parameter for sql_variant column
I have a table-valued parameter in SQL Server 2012 defined as:
CREATE TYPE [dbo].[TVP] AS TABLE (
[Id] [int] NOT NULL,
[FieldName] [nvarchar](100) NOT NULL,
[Value] [sql_variant] NOT NULL
...
2
votes
2answers
316 views
How do I improve the database performance when going from VBA to SQL Server 2008 R2?
I am working on a financial application that performs CRUD operations from Excel to SQL Server 2008 R2. The application uses VBA and ADO. I am trying to optimize the performance of an operation that ...
0
votes
0answers
256 views
Create a User-Defined Table type in SQL Server 2008 R2 with Primary key/index
I have created the following user-defined table type in SQL Server 2008 R2.
CREATE TYPE dbo.DocTableType AS TABLE
( Doc_ID INT PRIMARY KEY, Customer_Id INT, Status_Id INT )
My questions are:
...
0
votes
0answers
591 views
sql71501 sql parameter has unresolved reference to build-in type
from VS2012 I created a Database project and created ad custom type
CREATE TYPE dbo.TypeProductCategoryTable AS TABLE
( ProductID int, CategoryID int )
Now when I write stored procedure with ...
2
votes
1answer
806 views
EntityFrameWork and TableValued Parameter
I'm trying to call a stored procedure from EntityFramework which uses Table-value parameter.
But when I try to do function import I'm keep getting a warning message saying -
The function ...
2
votes
1answer
196 views
Does Where Clauses with sub-queries in t-sql queries the data for each row?
I was writing a query in t-sql that uses a function in a sub query and came across two questions.
Imagine an advertisement table as follows :
AdID- Name
An Options table as follows :
OptionID - ...
3
votes
1answer
230 views
How to organize or avoid temporary User Defined Table Type when passing Table-Valued Parameters
As it was discussed here: Passing List<> to SQL Stored Procedure and in many other places, one way to pass table as parameter is to use SqlParameter.
The problem with this is that it requires ...
0
votes
0answers
47 views
Doing an existance check using a subquery with 'LIKE' on a table valued parameter
I am doing an import from excel into the database. I am passing a table valued parameter with a bunch of values, one of them being a foreign key. The catch is that in the database the key value is an ...
2
votes
1answer
411 views
DataTable with a byte[] field as parameter to a stored procedure
I've been reusing this method of using a DataTable as a parameter to a stored procedure and it's been working great. This is the simplified working code:
using (dbEntities dbe = new dbEntities())
{
...
0
votes
1answer
218 views
Need help optimizing TSQL table valued function
Here is the function:
CREATE FUNCTION dbo.agedItemResult(@ILC VARCHAR(30))
RETURNS @AgedTable TABLE (
ItemID INT,
ItemLookupCode VARCHAR(30),
[Month] INT,
[Year] INT,
Aged INT,
Debug01 ...
0
votes
1answer
381 views
SQL Server table valued function parameter
I got following table valued function (in SQL Server 2005). I got an compile error when I run --1, but --3 is ok, --2 is used to generate the parameters to be used in --3, which should be the same as ...
0
votes
0answers
85 views
Full Text search with 'non-static' searchterm (from joined table variable)
hope (and actually think :) ) that some one already had similar problem and solved it ..
the basic issue in short terms .. as the use of a 'wordsearch' feature and the related data will grow rapidly ...
0
votes
0answers
98 views
Oracle UDT table to SQL Server table-value parameter
I am using Oracle ODP.NET via C# to receive a UDT table from a stored procedure.
Can I then pass that as a table-value parameter into a Microsoft SQL Server database stored procedure?
Are there any ...
0
votes
0answers
118 views
“Access Denied” Error when calling a WCF service that runs a stored procedure with table-valued parameters
I have a stored procedure that uses a custom type which is simply a table of id's
So I do something like
USE [myDB]
GO
CREATE TYPE [dbo].[typeMyIdList] AS TABLE([someId] [int] ) ....
I have a ...
0
votes
1answer
246 views
Generating table argument for stored proc accepting table-valued parameter
I'm calling a stored proc that takes table-valued parameter.
I know the following options for passing this parameter: create DataTable, DbDataReader, or IList<SqlDataRecord>.
I'm using ...
0
votes
1answer
4k views
How to pass DataTable as a parameter to Stored Procedure by not commiting the current session transaction?
My code looks like this:
public void InsertSampleData(DataTable tempTable)
{
session.Transaction.Commit();
var connection = session.GetSessionImplementation().Connection;
...
0
votes
1answer
204 views
Efficiently filter data in a table-valued parameter in a stored procedure
I've got a table-valued type as a parameter to a stored procedure, with anything up to thousands of rows in it. I perform several operations on this stored procedure (currently a MERGE and an INSERT), ...
0
votes
2answers
2k views
Passing Table Valued parameter to stored procedure across different databases
I'm using SQL Server 2008.
How can I pass Table Valued parameter to a Stored procedure across different Databases, but same server?
Should I create the same table type in both databases?
Please, ...
1
vote
1answer
320 views
Table Insert Rate Slows AsTable Size Increases
Parsing some data and inserting it into 3 tables from .NET. Using Table Valued Parameters to pass the data as some inserts are 600,000 rows. Passing objects (not DataTables) and they are passed by ...
1
vote
0answers
158 views
How do I create a Table-valued parameter with no predefined table structure
I want to create a new SQL table from a datatable that has been built within my program. I simply want to copy the entire table to MSSQL. From my research I found what appears to be the answer:
...
1
vote
1answer
222 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
1answer
382 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 ...
2
votes
0answers
763 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
...
0
votes
1answer
433 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 ...
13
votes
3answers
8k 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 ...
2
votes
4answers
469 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
799 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# ...
2
votes
2answers
292 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 ...
0
votes
1answer
97 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
260 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 ...
2
votes
0answers
335 views
implementation of table valued parameters in visual basic
I'm using Visual Basic 6 and would like to pass a table-valued parameter to a SQL query.
If possible, please share some code examples. I found the following link:
...
4
votes
2answers
250 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 ...






