Viewing 15 posts - 1 through 15 (of 39 total)
thanx guys, its working now and thanx for your suggestion also.
June 25, 2010 at 6:21 am
Here is my View:
SELECT TOP (100) PERCENT dbo.TvsRecords.TvsRecordID, dbo.TvsRecords.TvsFormNo, dbo.TvsRecords.SystemFormNo AS ScanID,
...
May 9, 2008 at 1:58 am
I don't want to group by on Image field, i just want this in my select list, but as i told in my post, some fields have expression so if...
April 28, 2008 at 12:09 am
Thanx for ur reply, but i cant find the option "drop existing", in this no option exists with this name.
April 12, 2008 at 4:53 am
Thanx Jack your testing query really helping me a lot . Thankyou so much .
March 29, 2008 at 5:35 am
i know this , by design it support 1 null only, but is there any other solution exists?
March 19, 2008 at 12:20 am
Hello here is my query:
SELECT DATEADD(hh,DATEDIFF(hh,0,TransactionDate),0) TransactionDate,
COUNT(TransactionID)as VehiclesCount,
SUM(ChargedAmount) as ChargedAmount
FROM Transactions
where TransactionDate between DATEADD(Hour, -6,getdate())
and getdate()
GROUP BY DATEADD(hh,DATEDIFF(hh,0,TransactionDate),0)
ORDER BYTransactionDate desc
It returns the data of last 6 hours from...
December 12, 2007 at 3:03 am
i need both in 1 query as i make 2 queries 1 for count and 1 for Sum and then make a union that returns 2 tables, but is this...
December 10, 2007 at 12:53 am
The following error encountered when the Network is too slow: " Tha path of file is too deap"
And the other problem as i post in this form earlier the...
November 1, 2007 at 11:25 pm
Thankyou so much for ur reply, Right now we call Access as a Flat File db systems . kindly tell me is there any way to restore access db if...
October 31, 2007 at 11:20 pm
Here are the Requirements:
Following parts of the project are:
1.Customers Records
2.Vendors Records
3.Invoice
4.Inventory
Customers Records:
In Customer Record Form following field should be entered
1.Customer ser name like “Mr” or “MISS”
2.Customer Name...
October 17, 2007 at 3:43 am
Thanx R2ro for ur reply, but when i run ur query it gives me following error: incorrect syntax near ( plz tell me the correct one without error as i...
March 15, 2007 at 12:32 am
hey i got it now u plz check it. is it fine or not?
CREATE PROCEDURE ChartGetRegisteredUsers
AS
SELECT count(DistributorID)
from Distributors
WHERE approvalstatuscode = 2 union all (SELECT count(ResellerID)
from Resellers
WHERE...
March 13, 2007 at 5:53 am
Viewing 15 posts - 1 through 15 (of 39 total)