Endpoint Security Complete

 View Only
  • 1.  SMM 7.2 upgrade, is there some SQL table mapping I'm missing?

    Posted Aug 20, 2012 07:22 PM

    Hi guys,

    I upgraded our MDM to 7.2 over the weekend and it's appeared to upgrade without issue. Existing devices (which were upgraded ahead of time as per Implimentation guide) accepted policy changes and are communicating to the server ok.

    Something I've noticed is that devices that have enrolled since the upgrade are populating data in the generic "Mobile_Devices" table (For example the UserID field, which we use to establish ownership), whereas pre-upgrade devices are still populating the Mobile_Device_iOS table for this type of data.

    All devices are showing Client Date and last check in times as expected, they're just dumping this data in different tables. I've been through the documentation and there's no mention of this as expected behavior. Has anyone else come across this?

    -EDIT-

    Upon further investigation it looks like I am getting inventory from existing devices in the correct tables (Mobile_Device, Mobile_Phone, etc), the main data I'm missing is the UserID, I'm wondering if this information only gets populated upon enrollment.

    The old devices are missing entires in the Mobile_Common table, but as soon as you specify if it's a corp or BYO device, that data remains.



  • 2.  RE: SMM 7.2 upgrade, is there some SQL table mapping I'm missing?

    Broadcom Employee
    Posted Aug 21, 2012 03:23 AM

    Hi,

     

    The userID, is populated from the user used during enrollment and can not be changed latter without enrollment, unless edited manually in the DB.



  • 3.  RE: SMM 7.2 upgrade, is there some SQL table mapping I'm missing?

    Posted Aug 23, 2012 09:39 AM

    Run a SQL statement to update Mobile_Devices UserID with the value from Mobile_Device_iOS's UserID field.  You can do this manually without disasters.



  • 4.  RE: SMM 7.2 upgrade, is there some SQL table mapping I'm missing?

    Posted Aug 28, 2012 02:54 PM

    Any luck with the SQL statement to update userID?



  • 5.  RE: SMM 7.2 upgrade, is there some SQL table mapping I'm missing?

    Posted Aug 28, 2012 09:35 PM
    Thanks for that, Mina. That's what I ended up concluding, it makes sense it would only update that info upon enrollment. Great idea Mike, that will save me a job. SQL below if anyone else needs it: UPDATE dbo.Inv_Symantec_Mobile_Device SET UserId = dbo.Inv_Symantec_Mobile_Device_iOS.UserId FROM dbo.Inv_Symantec_Mobile_Device_iOS WHERE dbo.Inv_Symantec_Mobile_Device._ResourceGuid = dbo.Inv_Symantec_Mobile_Device_iOS._ResourceGuid P.S. Sorry for the delay in reply, I've been on leave.