DataSource Controls :: SQL Server Table-valued Function Vs View?

Jul 9, 2010

I would like to know which one is better, table-valued function or View, in terms of perfomance.Earlier I have created view which is performing cross join (which takes time) and 2/3 Left outer join and it's taking time. To reduce execution time I have created table-valued function with parameter to reduce cross join execution time and it returns the same result as view.Just give me an idea about table-valued function and View, in terms of perfomance. Which one is better?

View 1 Replies


Similar Messages:

SQL Server :: Using Dynamic SQL Within A Table-valued Function?

Jan 27, 2011

I am trying to develop a function that returns a table. I have written: -

[code]...

I am using SQL Server 2008 V2 Express, but my production database is SQL 2005 so solutions will need to be compatible with that.

View 6 Replies

DataSource Controls :: Using Table-valued Parameters?

May 19, 2010

This is my first attempt in using table valued parameters in my stored procedures. Please find the scripts down below. The idea is very simple. I'm trying to insert a new product into Products table and if the product has attributes, I'll insert them into ProductAttributes table which is where I use table-values parameters.

I was able to test the stored procedure manually. It's working fine. So the error must be in the C# code but there's not much to it.

Here's the DAL code in C# that calls the stored procedure:

[Code]....

Just in case you need it, here's what my Product object looks like:

[Code]....
And the ProductAttribute object is even simpler:

[Code]....

Here's the SQL scripts to create the tables, stored procedure and user defined table type:

[Code]....

View 4 Replies

DataSource Controls :: Use An ObjectDataSource Update Method With A Table - Valued Parameter?

Oct 13, 2010

I'm trying to figure out if it's possible to use an ObjectDataSource Update method with a table-valued parameter. Here's my ODS:

<asp:ObjectDataSource ID="ObjectDataSource1" runat="server"
DataObjectTypeName="TestProject.MyTestDataTable"
SelectMethod="GetTestData" TypeName="TestProject.BLL.TestBLL"
OldValuesParameterFormatString="original_{0}"
UpdateMethod="UpdateTestData">
<SelectParameters>
<asp:Parameter DefaultValue="65" Name="testId" Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>

I bind this to a GridView but I'm not looking to edit row by row. Instead my GridView has a bunch of TemplateFields with textboxes. I also have a Button that when pressed, invokes the Update method of the ODS. So then the "UpdateTestData" function in my TestBLL is called. This looks like this:

public void UpdateTestData(MyTestDataTable dt)
{
QueriesTableAdapter qta = new QueriesTableAdapter();
qta.UpdateTestData(dt);
}

At run-time in debug, it seems like the object for the signature above is not populated with the data from my GridView.

View 1 Replies

SQL Server :: To Pass A Table Type Variable To A Table-Valued UDF In SQL Server 2005?

Nov 25, 2010

I need to pass a table type parameter to a user-defined table valued function in SQL Server 2005.How would I do this?

My function name is udf_t_GetSales ( @financialYearMonthsData as table)

The table @financialYearMonthsData has 3 columns ( MonthId int, DisplayText nvarchar(500), CalendarYear int)

View 7 Replies

SQL Server :: How To Use Case Statement In Scalar Valued Function In Sql

Feb 21, 2011

i want to get one value from function using case statement,i tried it but not work

CREATE FUNCTION [FATMS].[fnReturnByPeriod]
(

@Period INT

) [code]....

View 2 Replies

DataSource Controls :: Derived Table And MIN Function?

Feb 27, 2010

I have the following query which returns all appointments for a given date, grouped by client and appointment date. For those clients that have multiple appointments on that date, I get multiple rows, one for each appointment time. I only want the earliest appointment for each client, which would result in only one row per client. If I add the MIN function to SchedTime, I'm forced to put all columns in a GROUP BY clause, which isn't what I want.Can I use a derived table and/or MIN(Schedule.SchedTime) to achieve this? Or is my thinking wrong to begin with?

"SELECT Schedule.ClientId, " +
"ClientData.FirstName, " +
"ClientData.LastName, " +

[code]...

View 2 Replies

DataSource Controls :: Creating Cluster Index From View With Aggregate Function?

Mar 5, 2010

Here is my code in SQL

[Code]....

Error i am facing is :Msg 8668, Level 16, State 0, Line 2Cannot create the clustered index 'RateViewIndex' on view 'NoteToPass.dbo.RateView' because the select list of the view contains an expression on result of aggregate function or grouping column. Consider removing expression on result of aggregate function or grouping column from select list.

View 4 Replies

Can ObjectDataSource Use Table-valued Parameters

Oct 15, 2010

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
(
[n] [int] NOT NULL,
PRIMARY KEY CLUSTERED
)

Stored procedure:

CREATE PROCEDURE [dbo].[GeneralReport]
@intList integer_list_tbltype READONLY
AS
BEGIN
SELECT * FROM ...
END

ASP.NET

<asp:ObjectDataSource ID="GeneralDataSource" runat="server"
SelectMethod="GetDataByRange"
TypeName="MyProject.GeneralDataSetTableAdapters.GeneralViewTableAdapter"
>
<SelectParameters>
<asp:Parameter Name="intList" />
</SelectParameters>
</asp:ObjectDataSource>

I've tried hooking into the ObjectDataSource's Selecting event like this:

[code]....

be set for UDT parameters." being thrown

View 2 Replies

ADO.NET :: SQL Table Valued Parameter And Linq In Framework 4.0?

Jan 21, 2011

know if the followin is supported in .net framework 4.0?I have a sql stored procedure with one of its parameter as Hierarchy data type( i suppose its a table valued parameter).. trying to drag this stored procedure onto my linq design studio is not being allowed?

View 1 Replies

Web Forms :: How To Use A Checkbox List And Table Valued Parameters

Sep 29, 2010

I have a checkboxlist that gets all all the items from a look up table. The user is going to go to the list, check certail items and insert the checkboxid, the value (0 or 1), and the userid into a table valued paramater using a stored procedure. I have the user defined table type created but thats about it. Any body out there have any hints.

View 4 Replies

DataSource Controls :: Convert Sql View To Access Table?

Mar 1, 2010

i have project using sql2005 as database. i want to convert the 1 View (or some of my table) to Access that admin can download it.

what is the easiest way to do that?

View 4 Replies

DataSource Controls :: Maximum Stored Procedure, Function, Trigger, Or View Nesting Level Exceeded (limit 32) ?

Feb 24, 2010

I have a table with recursive relation,a function and a sp for readig data from that table:

[Code...]

When I execute sp,I got this error:Maximum stored procedure,function,trigger or view nesting level exceeded (limit 32).

View 9 Replies

DataSource Controls :: Trigger On View Updates Multiple Table?

Jun 23, 2010

I have Tables customer (Customerid),Product(Productid),Order(orderid). i have created view Customerid,Productid,orderid . is it posssible that if i insert value in view it will get inserted in table itself. can i do it in MS SQL SERVER

View 1 Replies

DataSource Controls :: Creat Function In SQL Server?

Feb 19, 2010

I want to know if there is a way to create a fuction in SQL Server for the following purpose. I have a select statement that pulls up a list of names from the database based on an ID which is the input parameter for the function. I want to be able to concactinate the values of names got from the query and return a String value.

View 4 Replies

DataSource Controls :: Import A Table From Sql Server 2000 To Another Server Qsl Server 2005?

Feb 9, 2010

I have to programmatically import a table from a database "A" in Sql Server 2000 to a database "B" in another server 2005.

View 1 Replies

Forms Data Controls :: How To Connect A Lst View To The SQL Server Table

Dec 10, 2010

I have a table which contains 2 lables,1 checkbox and i1 image.how to connect this to a list view.how to write Eval code in the Text property of list view.

View 3 Replies

SQL Server :: Shredding Multiple Valued Element In Relational Database?

Nov 19, 2010

I have the following XML:

<IncidentEntity>

View 2 Replies

DataSource Controls :: New Structure Of SQL Server Table?

Jun 14, 2010

I have a table named Transactions in which there are Four Coulmns

ID, TransactionsID, LablelName , Data

In Current scenario all the Data is containing in the above table for example

ID, TransactionsID, LablelName , Data
1, 1, CustomerID, 1
2, 1, CustomerName, John Smith

and so on ...

Columns are only four and data is increasing in Row Format.

Clear me advantages and disadvantages

is this datastructure entry or logic is correct or what are the drawbacks of using this technique?

View 3 Replies

DataSource Controls :: How To Use Cursor In Recursive Sql Function (scalar-value Function)

Apr 25, 2010

how can i use cursor in this function ?

ALTER FUNCTION [dbo].[GetCatIDChilds]

(

@CatID [code].....

View 1 Replies

DataSource Controls :: How To Create A Table Dynamically In SQL Server

Feb 9, 2010

How can one create a Table dynamically in SQL Server?

View 4 Replies

DataSource Controls :: Create Table In SQL Server Dynamically?

Feb 9, 2010

How can one create a table dynamically in SQL Server?

View 3 Replies

DataSource Controls :: Search On Xml Field In Table Of Sql Server?

Feb 12, 2010

suppose i have few fileds in table and one filed is xml type. how to search this.

the xml which is stored in my xml filed like

<OpenShipments xmlns="x-schema:C:UPSLabelOpenShipments.xdr">
<OpenShipment ShipmentOption="RS" ProcessStatus="">
<ShipTo>
[code]...
we can query sql server data very easily but i dont know how to query the xml data which stored in xml filed.how to query address field in my xml or how to query Options field,how query CompanyOrName.
please help me to construct the sql. guide me in detail with few sample for querying xml datatype.

View 1 Replies

DataSource Controls :: How To Join Table In Stored Procedure Sql Server Db

Jun 9, 2010

my stored procedure is always extract some data into temp table such as"select name,address,content into #TEMP1 from table1,table2,table3"
finally, select another table together with #TEMP1 to extract all desire data from one queryselect T.name,T.address,T.content,C.other from #TEMP1 T, otherTable C
where T.ID=C.IDI would like to ask if i want to join one more table T2 into final query with "otherTable left C outer join on C.ID=T2.ID"

View 1 Replies

DataSource Controls :: How To Fetch Data From Temp Table In Sql Server

May 4, 2010

i want fetch data from temp table in sql server stored procedur like below code

[Code]....

primary key is of uniqueidentifier in dataTable

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved