|
Comments
|
Ivan Tsatsarov on
12/17/2008
very useful movie
|
|
|
Very good demo. Very useful too!
|
|
Steve Harris on
12/17/2008
very thurough. why is there an equal sign in the exec clause?
|
|
Marc Kuyper on
12/17/2008
like the quiz at the end
|
|
Peter M. Riggs on
12/17/2008
I'd like to see a syntax example for taking advantage of this in .NET and classic ASP.
|
|
Plamen Ratchev on
12/18/2008
Peter, I have a more detailed example on my blog that shows how to use table valued parameters from .NET. Note that only .NET 3.5 or later supports table valued parameters. Here is the link: http://pratchev.blogspot.com/2008/04/table-valued-parameters.html
|
|
Plamen Ratchev on
12/18/2008
Steve, this is a standard way to executed stored procedure explicitly assigning input parameters to the correct parameter name. You can simply invoke the stored procedure without using the assignment: EXEC InsertLoans @NewLoans;. But it is a good practice to specify parameter names especially when you have multiple parameters.
|
|
|
Perfect...
|
|
|
I'm anxious to see it used in ASP.NET or a windows program.
|
|
|
it would be better if it contained more examples of the actual benefit of this feature. I'm still not sure when it would be used.
|
|
|
Dean, this can be used in many places. The biggest benefit is for client side application where you can directly send table as parameter, rather than some concatenated list or XML. I provided one example here: http://pratchev.blogspot.com/2008/04/table-valued-parameters.html. Also, it can be used to pass data between stored procedures, etc.
|
|
|
Great to know.
|
|
|
Please increase the volume of all jumpstart/sqlshare videos.
|
|
|
It's a great topic, but not great presentation. I would have to watch it 2 of 3 times to understand what this is about.
|
|
|
Concise and complete treatment of the subject.
|
|
|
good job
|
|
|
a vb.net example would be nice
|
|
|
I think in this video the host should have explained the benefits more clearly with examples.
|
|
|
perhaps slow down talking to make the instruction more comprehensible
|
|
|
It would be great to create a video showing how to send a table valued parameter from c#
|
|
|
Really good. learned something I can use today.
|
|
|
Can an existing table be used as a 'type' or does a table type have to be declared?
|
|
|
There should be a way to download the code so we can test it.
|
|
|
Peter, you cannot use an existing table, a table type has to be declared.
|
|
|
Harish, under References there is a script link that allows you to download the code.
|
|
|
same with ORACLE ... sql server is not so enhanced
|
|
|
very useful tip
|
|
|
Informative.
|
|
Maurice Ivory on
11/4/2011
This is good stuff, interesting how to pass a variable through a table.
|
|
chandrasekhar on
1/20/2012
useful video on Table Valued Parameters
|