Viewing 5 posts - 1 through 5 (of 5 total)
I have experience this recently and it was as a result of installing Access2007 and Access2003 and something going wrong in the process resulting in corrupt registry entries.
After much investigation,...
April 27, 2009 at 2:51 am
you can also try
SELECT datepart(wk,Date) as 'WeekNo', Date
FROM TableA
where Date between @startDate and @endDate
ORDER BY WeekNo, Date
April 20, 2009 at 8:36 am
I'm not totally clear what you want but you can try this and let me know if it's what's needed
select col1, sum(col3)
from TempTable
where GroupCd is not null
group by col1
March 18, 2009 at 9:59 am
Looking at the insert statement the empId comes from t_EmpID on your holding table and not the identity column empID.
Can you confirm there are no NULLs in this column ....
March 18, 2009 at 9:26 am
Try this...
SELECT TOP 10 DFS_Request_Received as trans
,ROUND(((DFS_Request_Received*100.0)
...
February 17, 2009 at 2:37 am
Viewing 5 posts - 1 through 5 (of 5 total)