I'm in a situation where I only have access the the database and the xml file and need to determine two things:
1. Does an endpoint have the latest IDE as listed in the database?
2. Does an endpoint have the latest IDE as listed in latest_IDE.xml?
Other questions:
1. Are the timestamp and published dates referenced anywhere in the database? I've been unable to locate them if so.
2. From an endpoint perspective, what does the Data file Date correspond to? I would think it would be one of the timestamps listed in the latest_IDE.xml file.
3. What timezone are the timestamps in the latest_IDE.xml file. (using RFC 3339 would be great help).
latest_IDE.xml
<ide>
<name>pdfu-ezk.ide</name>
<md5>f2dec9315316bc2334fe486b787d80f9</md5>
<size>30623</size>
<timestamp>2018-05-01T09:29:47</timestamp>
<published>2018-05-01T11:34:17</published>
</ide>
</latest>
,c.PackageId
,c.ProductID
,c.SAVVersion
,c.EngineVersion
,c.virusDataVersion
,c.IDEChecksum
,c.PackageExpiryTime
,c.PackageNotificationTime
,i.IDEList
,i.IDENumber
,i.md5
,i.Id
from ComputerListData2 as c
Left Join IDELists as i
on c.IDEListID = i.ID
where i.Id = 'f2dec9315316bc2334fe486b787d80f9'
order by PackageId desc;
Data file type : IDE
Data file date : 01 May 2018, 08:19:00
Data file status : Loaded
This thread was automatically locked due to age.