DataSource Controls :: Sql Query - Group By - Display Total No Of Contacts And Companies With Respect To Countries
May 4, 2010
i have 2 tables company(companyId,companyName,City,state,country) and people(peopleId,peopleName,City,state,country) i want to display the total no of contacts and Total no of companies with respect to countries
i tried with group by: select country,count(*)companyId from company group by country is displaying the total number of companies with respect to country select country,count(*)peopleId from people group by country is displaying the total number of peoplewith respect to country
but i want to combine these two quries i want the output as :
Country Companies Contacts
India 10 5
USA 0 10 (usa is having only contacts ,i doesn' have the companies)
UK 8 0 (ukis having only companies ,i doesn' have the contacts)
View 2 Replies
Similar Messages:
Feb 17, 2010
I'm implementing a BLL layer and have a few questions. First, in my DAL, there is a contacts table, the select method is a sql query against a sql server 2000 database. The preview data returns everyting as expected. The query is
[Code]....
The BLL method is built like so
[Code]....
When using the BLL method to a gridview, the results of the subquery are not displayed. There are also other methods, each having a different where clause for ContactRole_ID and each is having the same issue of not displaying the subquery reult in the gridview. No error, but no data is displayed for the subquery either. Here is the templatefield of the gridview
[Code]....
Another item that is causing an error is in trying to update a record. Here is the DAL update method
[Code]....
And the BLL update method
[Code]....
The error says i have extra parameters, but have no clue where the extra parameters are being picked up. The error isObjectDataSource 'odsContacts' could not find a non-generic method 'UpdateContact' that has parameters: _ContactID, _Active, _ContactName, _Office, _VirtualOffice, _Pager, _Fax, _Home, _Cellular, _Email, _ContactRole_ID, Active, ContactRole_ID, ContactName, Office, Email, VirtualOffice, Pager, FAX, Home, Cellular.And the objectdatasource
[Code]....
View 4 Replies
Jan 8, 2010
i have the following objects:
Event:
- EventID (PK)
- GroupID (FK)
- StartDate
Group:
- GroupID (PK)
- GroupName
What i need to do is select the last 5 events for each group using LINQ to Objects. I tried starting with:
[Code]....
But i'm not sure how i only take the last 5 per group.
The simple way of doing this is to get the groups and then have a property on that which returns the last 5 events but if i databind this i will have to use a nested Repeater/ListView. Ideally i would like to have a row foreach event.
View 3 Replies
Feb 25, 2010
I have the matrix in the image below. I need to add a total at the bottom of the report to total each column group (total AR,TAK,EU etc).
If i had a subtotal it totals each row separately. I need the grand total. Is this possible?
[code]....
View 2 Replies
May 6, 2010
I have a table that contains image data type and has more than 20,000 records.I want to change its file group to the new file group. I tried to change it using table designer, but everytime I wanted to save it, it occured an error with this message:
[Code]....
Does anyone know how to change file group using Alter Table query? I'm using SQL Server 2005.
View 2 Replies
Jun 30, 2010
How do i generate another computed column that will contail the result of GrandTotal/Total,
where GrandTotal is another value comes from computed column and the Total would be the sum of the Total within SchedularID.
And thats what i have done so far: [Code]....
View 3 Replies
Dec 19, 2010
I've written this code to display a group of events when the value is 12/19/2010. This means each day I need to change the "default value" to the current date to display the events of the day. I would like to make this such that the change occurs automatically, that is, on 12/20/2010, I'd like to see just the events for 12/20/2010.
<asp:SqlDataSource ID="testeventdate" runat="server" ConnectionString="<%$ ConnectionStrings:testdateConnectionString %>" SelectCommand="SELECT [eventDate], [eventDesc] FROM [programEvents] WHERE ([eventDate] = @eventDate)">
<SelectParameters>
<asp:querystringparameter DefaultValue="12/19/2010" Name="eventDate" QueryStringField="eventDate" Type="DateTime" />
</SelectParameters>
</asp:SqlDataSource>
View 4 Replies
Apr 7, 2010
i have one grid which have 5 columns 1 for subject,2,3,4 for marks which have textbox to insert obtained marks,and last column have one lable to display total of (2+3+4),now i want total value on textbox event,when user enter any value to any column of textbox i need to display total of all three columns in total column.
View 2 Replies
May 7, 2015
Results 1 - 50 of 7036
IN Gridview Need to show how many row are in the gridview and how much are currently show in the GridView Page.Â
Just like in this portel With the Pager Style also ........
View 1 Replies
Jan 13, 2010
I have an employee salary table with fields empId, month, year, salary. I need query for the following - Total salary drown each employee last year - Id of the employee who got highest salary last year. i am getting wrong o/p for these queries.
View 3 Replies
Jan 13, 2011
I am using a nested listview to display a seperate grid for each group of data returned from my db query. To get this working, I have adapted a piece of code to group the data prior to it being bound:
[Code]....
I am then using the following html markup:
[Code]....
[Code]....
This works as I want it to however some of the fields within the nested table need to be formatted as currency so I am trying to use Eval and {0:c} to do this however the moment I use Eval, the data items cannot be found
DataBinding: 'System.Data.DataRow' does not contain a property with the name '0'.
View 4 Replies
Mar 26, 2010
I'm using a linq group by query (with two grouping parameters) and would like to use the resulting data in a nested repeater.
var dateGroups = from row in data.AsEnumerable()
group row by new { StartDate = row["StartDate"], EndDate = row["EndDate"] };
"data" is a DataTable from an SqlDataAdapter-filled DataSet. "dateGroups" is used in the parent repeater, and I can access the group keys using Eval("key.StartDate") and Eval("key.EndDate").
Since dateGroups actually contains all the data rows grouped neatly by Start/End date, I'd like to access those rows to display the data in a child repeater. To what would I set the child repeater's DataSource? I have tried every expression in markup I could think of; I think the problem is that I'm trying to access an anonymous member (and I don't know how.) In case it doesn't turn out to be obvious, what would be the expression to access the elements in each iteration of the child repeater? Is there an expression that would let me set the DataSource in the markup, or will it have to be in the codebehind on some event in the parent repeater?
View 3 Replies
Apr 20, 2010
I have a country table that has a list of countries. However, instead of just displaying the list alphabetical, I need to list the United States first, and then all the other countries in Alphabetical order. My select statement is pretty simple, jsut don't know how to get the US listed first...
Select Country from tCountry order by Country
View 4 Replies
May 6, 2010
how to display the All countries date and time in C# I have one dropdown list and one label and one submit button in DropDown list i have add all countries list like GMT + 05:30 Chennai, Kolkata, Mumbai, New Delhiwhen i select the particular list and press submit button to display.
View 3 Replies
Jan 18, 2011
i would like to hide group total row in the excel; which is created using export to Excel functionality of drill down report of SSRS 2005.
If 'group by' data by country and state and create a drill down report and save the result into excel then total row appears in the excel.
View 1 Replies
Jun 2, 2010
how to count total no of record in different group section in seagate crystal report
View 2 Replies
Jan 11, 2011
1.Can I import google and facebook contacts of the users of my website,when they provide their login credentials to gmail/facebook?
2.Can I get the login status of these contacts in gmail/facebook? , ie, I need to show in my website that a particular user is online/offline in gmail/facebook. Is it possible?
View 4 Replies
Jul 7, 2010
I'm working on a portal, and I need to check users conection on the ldap.
And if users are members of a special group then it works.
I've exactly used this link to make it works : http://msdn.microsoft.com/en-us/library/ff649227.aspx (almost work)
My point is : my ldap path seems good, no error anymore, when I log with my username and password.But when I querry it, it returns null, but I'm sure my user is in the group :
// Bind to the native AdsObject to force authentication. Object obj = entry.NativeObject; DirectorySearcher search = new DirectorySearcher(entry); search.Filter = "(SAMAccountName=" + username + ")"; search.PropertiesToLoad.Add("cn"); SearchResult result = search.FindOne(); if(null == result) { return false; }
I'm a normal user, i test with my account. I'm a member of the group that I'm looking for.
View 8 Replies
May 7, 2015
this is my grid
<asp:GridView ID="grdJobs" runat="server" AutoGenerateColumns="True" CellPadding="2"
Width="100%" OnRowDataBound="grdJobs_RowDataBound">
<RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
[Code]....
View 1 Replies
Dec 27, 2012
Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs)
Label3.Text = GridView1.Rows.Count.ToString()
End Sub
Is there any settings in gridview properties....
View 1 Replies
May 7, 2015
I have repeater control and price fileds inside it i want to have a sum of all prices row on footer of repeater.
View 1 Replies
Jan 12, 2010
Customers of hours buy packs of hours, these are credited and debited on their account. We have a prepayhours table and that has various columns in it, one credit and one debit. I have written a query using the Query building and SQLDS to total these columns, which is fine. What i really want to do is get that query, or if there is an easier way to add up all the debits and subtract them from the total of credits so you would end up with a + or - totalThen with that i can put it into a label or if there was a way to add a row at the end of my gridview which just said total in one column and the total of the hours in the next.
I have some SQL code which seems to work in SQL 2008 but not in the SQL designer for VWD.
CREATE VIEW dbo.prepayhrstotals
AS
SELECT COUNT(Debit) AS cntDebit, COUNT(Credit) AS cntCredit
FROM prepayhrs
GO
SELECT (cntdebit - cntcredit) AS totalhours
FROM prepayhrstotals
View 8 Replies
Mar 29, 2010
I have a gridview bounded to an objectdatasource.
I want to get total count of record when there is paging = true or false in gridview.
View 4 Replies
May 19, 2010
I would like to display the selected total in the grid view footer. Like if i select 2 check boxes i would like to display the checked total amount in the label provided in the grid view. How can i do this.
View 4 Replies
Dec 15, 2013
I want to calculate Quntity*Rate into Total column in Gridview.
calulate the Gross Total of Total Column in Gridview Footer.
Text format of amount in Gross Total into Label Text. with AddNewRow,Remove Options.
How i can calulate the Gross Total and text in Gross Total in gridview?
View 1 Replies