Here is my situation: I use an sql table called userlist. I bring the table into MS Access and create a make_table everyday and it is done manually. Does anyone know a way to automatically invoke either sql enterprise manager or ms access thorugh a macro to automatically produce a simple userlist daily at say 4:00PM. This may get more into batch computer operations processing at night but thought I would ask. The table would have the following fields:
user_name(varchar), user_login(datetime) expressed as 99:99:00:00 or hour:time:minutes:seconds So if I did this in sql the coding would begin something like this:
select user_name,user_login
from userlist
where user_login >='2006-01-30' at a time of 4:30PM. SO would I need to change the date everyday??
I desire this because there maybe times I am away and cannot get to the application. If this happended I could miss a whole day of reporting.
user_name(varchar), user_login(datetime) expressed as 99:99:00:00 or hour:time:minutes:seconds So if I did this in sql the coding would begin something like this:
select user_name,user_login
from userlist
where user_login >='2006-01-30' at a time of 4:30PM. SO would I need to change the date everyday??
I desire this because there maybe times I am away and cannot get to the application. If this happended I could miss a whole day of reporting.