SQL Server :: Get SUM Of The Result?

Dec 27, 2010

I have the following request:

[Code]....

its result is:

ProductSUM
1355
310
210
220
150
95
60
235
90
545

How to SUM these values?

View 5 Replies


Similar Messages:

Multiple Single-result Sql Server Stored Procedures Or Single Multple-result Stored Procedure?

Aug 9, 2010

Background: I use stored procedures exclusively for an ASP.NET application. I am using a DataReader to load a dataset object.

View 4 Replies

Forms Data Controls :: Displaying Correct Result Inside DropDownList From LINQ Query Result

Jul 1, 2010

I have this ListView that has a Drop Down List.Everything works fine (I think/hope) except that the drop down list are not showing its result correctly.This is the code.

Front-End
[Code]....

The code behind consist of the page_load and the ItemDataBound
[Code]....

View 3 Replies

Linq To XML - Getting Correct Query Result, But It's Buried Deep In The Result Var?

Mar 1, 2011

I'm having a problem with my Linq to XML query. I'm getting the result data I want, but it's nested so deep that there must be a better way.Here is my XML:

[Code]....

I'm trying to get a list (simple string[]) of all Item IDs where Category Names contains "Other".Here is my Linq:

[Code]....

[Code]....

Here is a snapshot of my result from Visual Studio:The results I want are there ("item100", "item400", "item500"), but buried so deeply in the results var.

How can I get the query to return a simple

string[] = { "item100", "item400", "item500" }

View 4 Replies

SQL Server :: An Example Of CTE Result Being Again Used In A CTE?

Dec 3, 2010

I am looking for an example where I create CTE, and then using the result of first CTE, I create another CTE.With CTE1 as ( Col1, Col2, Col3)

(
--SOME RECURSIVE QUERIES
)

select Col1, Col2, Col3 from CTE1 where Col3 >100I want to now use the above query inside a recursive CTE2. One way is to store the above result in a temp table and use the temp table in a new CTE but I am NOT looking for temp table solution here. May be wrap the above result in another CTE, but I am missing the syntax.

View 5 Replies

C# - SQL Server To Cache A Certain Result Set?

Nov 4, 2010

There is a certain query that is being called from an ASP .NET page. I studied the execution plan of that query in Management Studio and 87% is for a sort. I badly need the sorting or else the data displayed would be meaningless.

Is there anyway that I can request SQL Server to cache a sorted results set so it will return the data faster in consequent runs?

Or is SQL Server smart enough to do the cache handling and am I doing mistake by trying to force it to cache results, if that is possible?

UPDATE:

I just read in an article that creating a View with a clustered index will increase performance because the index will persist the data in a view to disk. Is this true? How do i get about doing this?

View 5 Replies

SQL Server :: How To Bring Distinct Result

Jan 5, 2011

I need to bring the distinct result in third columnBelow one is my sample table

[Code]....

View 19 Replies

SQL Server :: Retrieve Date - Zero Result

Aug 4, 2010

I am using datetime.now in vb.net to retrieve the current time and date. I passed this parameter into this dim strDate as datetime

strDate = datetime.now

I then saved this strDate into database. However, when I want to retrieve the following date with example, say 2/8/2010 3:58:58 PM

SELECT * FROM CUST WHERE DATE = '2/8/2010 3:58:58 PM'

the result is 0. So i went to SELECT * FROM CUST and realized that the date in the Date column is this:

2010-08-04 15:58:20.000

I have retrieve today's date and saved into database, by right the format should be the same.. May I know what has happened?

View 8 Replies

SQL Server :: Inner Join Get Duplicate Result?

Feb 7, 2011

I have table with 'usercard' name , and a related tables :

- Computer

- Laptop

- Fax

- UPS

Now , Every Employee has one or more than one from these devices , When I used INNER JOIN in my select query , I didn't get what I need

the result show a one user in 4 rows,(user have all devices)

View 13 Replies

SQL Server :: Query - How To Make Total Sum Of The Result

Nov 3, 2010

this script work with join and sum

and works good,but i want to make total sum of the result of this query for all rows of sum column

[Code]....

View 4 Replies

C# - Is The Result Of A Md5 Hash Consistent Or Server Dependent

Mar 12, 2010

I am doing a md5 hash, and just want to make sure the result of:

md5.ComputeHash(bytePassword);

Is consistent regardless of the server?

e.g. windows 2003/2008 and 32/64 bit etc.

View 4 Replies

SQL Server :: How To Store Query Result In Variable

Oct 7, 2010

i am wishing to store the query result in any variable, have look at below code.

[Code]....

I have marked the code with bold, where I am getting error.

how do I store query result in any variable.

View 8 Replies

SQL Server :: How To Merge Pivot Result With Other Columns

Feb 11, 2011

I got the following table:

Lane Bin1 Bin2 Bin3
1 B11 B21 B31
2 B21 B22 B23
3 B31 B32 B33

How can i change the layout to

Bin1(Lane1) Bin1(Lane2) Bin1(Lane3) Bin2(Lane1) Bin2(Lane2) Bin2(Lane3) Bin3(Lane1) Bin3(Lane2) Bin3(Lane3)
B11 B21 B31 B21 B22 B23 B31 B32 B33

I tried using pivot, but cant get it.

View 11 Replies

SQL Server :: Convert Result To Positive If Negative?

Oct 25, 2010

i have a select statement below. The result of r1- @r1 may be positive or negative.

i want it to always result as positive, so it is a negative number then it to show the same number as positive. can i do this?

e.g.

r1 = 7, @r1 = 4
r1 - @r1 = 3

but

if r1 = 5, @r1 = 6

r1 = @r1 = -1, but i want this to be 1, because i am trying to work out the difference between the two numbers.

can this be done within a select statement? my select statement is:

SELECT imageurl, (r1 - @r1) AS difference

View 1 Replies

SQL Server :: Get Data In Result Set Order By Month Name?

Jan 11, 2011

Below the is working fine but I am not getting in month order.

SELECT SUM(TaxableAmt) [NSV], (UPPER(CONVERT(VARCHAR,LEFT(DATENAME(MM,invoicedate),3)))+'/'+ CONVERT(VARCHAR,RIGHT(DATENAME(YYYY,invoicedate),2))) AS MONTHYEAR
FROM SALESDATA where (invoicedate >='4-1-2009' and invoicedate <='4-30-2010')
GROUP BY (UPPER(CONVERT(VARCHAR,LEFT(DATENAME(MM,invoicedate),3)))+'/'+

[Code]....

View 5 Replies

SQL Server :: Export A Query Result To .txt File ?

Feb 7, 2011

i need to export a query result to a .txt file , how can i do it ?

View 4 Replies

SQL Server :: Split Function Result Is Getting Truncated From Given Parameter?

Jul 26, 2010

I have a problem in my spilt function. When I pass the parameter, the data is getting splitted by given second parameter and it will return the result as table format. The resultant data is getting truncated. I have to create the dynamic update statement by using this table. Below I have shown the function and parameter.

View 2 Replies

Custom Server Controls :: Composite Control - Mismatching The Result?

Nov 3, 2010

I am creating a composite control. On the selection of item in the dropdownlist, the result should be shown. But its mismatching the result. Here is the code for the control:

[Code]....

If I have a breakpoint on the selection index changed event of the dropdownlist, then on every selection it should go to the event. Problem is when I select an item which makes the "singlelineText" textbox to appear and after it I select any other item, it doesn't stop at the dropdown event instead it goes to the "CreateChildControls" method of the composite control which results in wrong data.

View 2 Replies

SQL Server :: Want To Set @Serial Column Result Based On MyDate Cloumn How To Do That

Mar 2, 2011

i have the folllowing Query , and i want to do some thing like this, but i dont know if my query is right or wrong .DECLARE @Serial varchar(50)

select MyDate,MyName,@serial
from Names
where @Serial in
( if(MyDate>'10-10-2011') select '393939'))

as u Noticed i want to Set @Serial Column Result Based On MyDate Cloumn how i can do that?

View 8 Replies

SQL Server :: Assign Result Of Count Stored Procedure To C# Variable?

Aug 7, 2010

I have an aggregate stored procedure (named sp2) that returns a count of records meeting a certain criteria ASrecCount. I am using a DAL per the ASP.NET tutorial and have created a Table Adapter (named
sp2TableAdapter) with GetData and Fill methods. I have a button on an ASP.NET page that launches an event handler. In the button's event handler, I have this line: sp2TableAdapter sp2 = new sp2TableAdapter();
What works so far:

This code will bind the value of sp2 to a data control:

sp2TableAdapter sp2 = new sp2TableAdapter();
DropDownList1.DataSource = sp2.GetData();
DropDownList1.DataValueField = "recCount ";
DropDownList.DataTextField = "recCount";
DropDownList1.DataBind();

When running this page and clicking the button, the numeric value of recCount returned from sp2 is bound to the DropDownList control and 1 row is poplated with the recCount value (in my case 1451).

Problem:
In the event handler, I do not want to bind the value of recCount to a control, but want to to use it in some logic as an integer. What is the C# code that will do this? (In place of the DropDownList control lines above)

View 2 Replies

SQL Server :: Query - Get A Result With The Latest 10 Offers For All Products With One Offer Per Product

Aug 8, 2010

I have a sql table (ProductsOffers) in which I store all the offers posted for each Product it consists of columns

offerId int
ProductId int
ProductSpec nvarchar 50
OfferDate DateTime
OfferId + ProductId = My primary Key

everyday there will be many offers for each model and some of them may have no offer in this day. Now Suuppose that I have 10 Products with 15 offers. I want a sql sentence or function that let me select the latest offer for each product. When I select by date it returns the last inserted offer and they may have repeated products and also there will be some products not appear in the result. how can I get a result with the latest 10 Offers for all my products with one offer per product

View 8 Replies

How To Return A Rendered Panel Control Content From Server-side As A Result Of JQuery.ajax()

Jun 22, 2010

At first, I should confess that I am not sure if it is a good practice or not. I have came out with the idea due to my practice of jQuery.ajax().

What I want to achieve is depended on this design:

//Server Side; an .asmx file contains a method like this:
[WebMethod]
public string NewContent(string parameter)
{
string renderedHTML = string.Empty();
switch(parameter)
{
case ("person"):
// create an asp.net panel with
// some controls in it that has form elements to enter person data
// render control and assign its html to renderedHTML
break;
case ("department"):
// create an asp.net panel with
// some controls in it that has form elements to enter department data
// render control and assign its html to renderedHTML
break;
}
}

And from the client I want to do this:

// Some html in the page
<script type="text/JavaScript">
jQuery.post('ajax/myWebServices.asmx/NewContent'
function(returnedPanelContent) {
$('.result').html(returnedPanelContent);
});
</script>

Question is:

How can I make it work? Briefly to have a webservice method that returns different asp.net Panel control content created programmatically so that I can get this control rendered as HTML in my client-side and insert it to my web page?

View 1 Replies

SQL Server :: Query Slow In Loading / Trying To Display Query Result?

Feb 1, 2011

I am trying to display this query result in an aspx page.

It is very slow in loading. Here is the query. The inner query inside the outer quesry is the problem.(Please see the underlined part in the query) - (If I remove that part it is very fast.)

select

top 500

--This column is the issue
,Governing_Class=( case when exists (select top 1 tqc.class_code from
t_quote_class tqc
inner join t_quote_class_premium tqcm on tqc.class_code =tqcm.
class_code
where tqc.appid=pi.appid and tqc.class_code not in('8742' ,'8810','7380')
order by tqcm.premium_amt desc
)
then ( select top 1 tqc.class_code from
t_quote_class tqc
inner join t_quote_class_premium tqcm on tqc.class_code =tqcm.
class_code
where tqc.appid=pi.
appid
order by tqcm.premium_amt desc
)
......... From tables

View 7 Replies

SQL Server :: How To Copy Result Query To Another Query

Nov 4, 2010

i have tow query in one stored procedure

first query and the second one every of them return only value

i want to copy the result of tow values in a new row in new table

as i want to check on this tow values in ado.net

i want to get only this tow values as a row not first and secon query

only a row has result of first and second query results

[Code]....

View 3 Replies

How To Get The Result Value From SQL Query

Feb 9, 2011

I use the follwoing code to get a value from the SQL query. But now i would like to use some sql function like Sum() count() ... and i would like to get the result of that.
vb Code:
Dim constg As New SqlConnection
constg.ConnectionString = "Data Source=m......."
constg.Open()
Dim payrollquery As String '= ("SELECT * FROM xxxxx.nnnnn WHERE ID IN(" & ID & " ) AND sent = 'U' ")
Dim cmd3 As New SqlCommand(sqlstr, constg)
Dim reader As SqlDataReader = cmd3.ExecuteReader

View 3 Replies







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