Viewing 5 posts - 1 through 5 (of 5 total)
seems like to a be a practiced way.
Thank you very much 🙂
April 20, 2011 at 9:06 am
Dear Ali
thanks for participating to this discussion but the challenge is about to first identify the troubles that may arise and second to log any bad things happens to it....
April 20, 2011 at 12:55 am
Indexes are never triggered.
You might provide more information to get results.
June 12, 2010 at 8:37 am
This might work better
This is an easy table to show how to solve the issue :
Create TableCustomer
(
IdintNot NullIdentity,
TitlenVarChar(80)Not Null,
ConstraintIX_Customer_TitleUniqueNonClustered(Title),
ConstraintPK_CustomerPrimary Key(Id)
)
And here is the my solution :
SelectCustomer2.[Name],
Customer2.Family,
Result.Kount
From(
SelectCustomer.[Name]As [Name],
Customer.FamilyAs Family,
Count(*)As Kount
FromCustomer...
June 9, 2010 at 9:17 pm
Viewing 5 posts - 1 through 5 (of 5 total)