/build/static/layout/Breadcrumb_cap_w.png

K1000 Last Sync Reporting

Hi All,

Trying to develop a report for all computers that haven't synced back in the last 40 days or greater. Have the report working fine - however it displays ALL computers that haven't reported back, not just the ones that haven't reported in 40 days or more.

Below is the syntax i'm using at the moment, can someone please assist?

select DATE_FORMAT(LAST_SYNC,'%W %m-%d-%Y') as LAST_SYNC, MACHINE.NAME as MACHINE_NAME, SYSTEM_DESCRIPTION, IP, MAC, REPLACE(MACHINE.USER_LOGGED,'\\','\\\\') as USER_LOGGED, CS_DOMAIN, LAST_SYNC as LAST_SYNC_TIME from MACHINE where (CURDATE() - INTERVAL 40 DAY) > 40 order by LAST_SYNC_TIME


0 Comments   [ + ] Show comments

Answers (1)

Answer Summary:
Posted by: dugullett 10 years ago
Red Belt
0

Try using this.

select DATE_FORMAT(LAST_SYNC,'%W %m-%d-%Y') as LAST_SYNC, MACHINE.NAME as MACHINE_NAME, SYSTEM_DESCRIPTION, IP, MAC,

REPLACE(MACHINE.USER_LOGGED,'\\','\\\\') as USER_LOGGED, CS_DOMAIN, LAST_SYNC as LAST_SYNC_TIME

from MACHINE

where LAST_SYNC > DATE_SUB(NOW(), INTERVAL 40 DAY)

order by LAST_SYNC_TIME

Comments:
  • Hi Dugullett - thanks for your help, however it didn't work... still listing all computers syncing, not just 40 days or older. I've attached a screenshot if it helps. Thanks http://postimg.org/image/r4yhyo8pd/ - mrjas89 10 years ago
    • It's working for me. I changed the INTERVAL to 1 MINUTE just to test. It only returned 25 rows out of 18,000 machines. I also cannot see your screenshot. It's blocked here at work.

      where LAST_SYNC > DATE_SUB(NOW(), INTERVAL 1 MINUTE) - dugullett 10 years ago
      • Hi Dugullett, still having no luck here on my end. Returning all computers syncing - not just 40 days or older. - mrjas89 10 years ago
      • Can you paste exactly what you are using? What version are you on? - dugullett 10 years ago
  • Hi Dugullett, i'm using K1000 v5.4.76847,
    The code i'm using is below:

    select DATE_FORMAT(LAST_SYNC,'%W %m-%d-%Y') as LAST_SYNC, MACHINE.NAME as MACHINE_NAME, SYSTEM_DESCRIPTION, IP, MAC,

    REPLACE(MACHINE.USER_LOGGED,'\\','\\\\') as USER_LOGGED, CS_DOMAIN, LAST_SYNC as LAST_SYNC_TIME

    from MACHINE

    where LAST_SYNC > DATE_SUB(NOW(), INTERVAL 40 DAY)

    order by LAST_SYNC_TIME

    Appreciate the assistance. - mrjas89 10 years ago
    • Sorry I guess I misread your original question. To get the ones that have not synced in the past 40 days change this line.

      where LAST_SYNC > DATE_SUB(NOW(), INTERVAL 40 DAY)

      to

      where LAST_SYNC < DATE_SUB(NOW(), INTERVAL 40 DAY) - dugullett 10 years ago
      • Many thanks Dugullett! that worked great! - mrjas89 10 years ago

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

Share

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ