Viewing 9 posts - 31 through 39 (of 39 total)
It just seems like your view can't logically return a single record per person when you are joining a table with one record per person with several tables that could...
August 16, 2005 at 4:38 am
An alternative in newer versions of Access is to pass either the entire SQL statement or the parameters as opening arguments (OpenArgs) to the report. Then in the report open...
July 14, 2005 at 5:11 am
It might be a good idea to post the SP you are trying to recreate, so someone could suggest a workaround. But there is no such thing as a true...
July 12, 2005 at 5:59 am
well, you should have gotten some samples with Access - make sure you do a full install to get them loaded. Also Microsoft has some you can download. But if...
June 28, 2005 at 6:23 am
one workaround for you might be to add the username to the temporary table. then create a view or stored procedure using the SUSER_SNAME() function, which essentially gives each user their...
June 28, 2005 at 6:17 am
I usually use a batch file similar to this (in the user's startup or login script) which checks to see if they have the latest version and if not copies...
May 27, 2005 at 3:03 pm
Why not just have an empty database out there which you can first copy and then put whatever you want in it?
Dick
May 25, 2005 at 9:40 am
I usually use something like SUM(IIF(Attendance.Attended)=' Absent',1,0)) for this type of query, so you might try:
SELECT Attendance.Date, SUM(IIF(Attendance.Attended)=' Absent',1,0)) AS CountOfAbsent, SUM(IIF(Attendance.Attended)='Present',1,0)) AS CountOfAttended, SUM(IIF(Attendance.Attended)=' Excused',1,0)) AS CountOfExcused, Student.StudentName, Count(Attendance.ClassID) AS...
May 17, 2005 at 1:02 am
Actually I was just reading an article on a similar approach to creating Excel reports from SQL Server online the other day (although I forget exactly where), but it described...
May 5, 2005 at 5:54 am
Viewing 9 posts - 31 through 39 (of 39 total)