Difference between revisions of "ILMT Import Problems"

From RiceFamily Wiki
Jump to: navigation, search
Line 1: Line 1:
 +
= The Problem =
 
Initial import of data from the BigFix server is failing with the following error.
 
Initial import of data from the BigFix server is failing with the following error.
  
Line 30: Line 31:
 
           WHERE FR.Sequence > 0x0000001298f7174a
 
           WHERE FR.Sequence > 0x0000001298f7174a
 
             AND FR.Sequence <= 0x00000012ac8af2c8
 
             AND FR.Sequence <= 0x00000012ac8af2c8
 +
 +
= Research =
 +
* [https://www.ibm.com/support/knowledgecenter/en/SS8JFY_9.2.0/com.ibm.lmt.doc/Inventory/probdet/r_import_problems.html ILMT Data import problems]
 +
 +
= Resolution =
 +
None found yet.
  
 
[[Category:BigFix]]
 
[[Category:BigFix]]
 
[[Category:ILMT]]
 
[[Category:ILMT]]

Revision as of 23:12, 1 February 2019

The Problem

Initial import of data from the BigFix server is failing with the following error.

ERROR: Java::ComMicrosoftSqlserverJdbc::SQLServerException: Lock request time out period exceeded.

The SQL Query that is listed is ...

 select  FR.ComputerID AS computer_remote_id,
                 FR.SiteID     AS site_remote_id,
                 FR.ID         AS fixlet_remote_id,
                 FR.IsRelevant AS relevant
         FROM dbo.GROUPS G
         INNER JOIN dbo.SITES S on G.SiteID = S.ID
         INNER JOIN dbo.BES_OBJECT_DEFS O on O.ID = G.ContentID AND
               O.Sitename = S.Name AND S.Type <> 2
         INNER JOIN dbo.SITENAMEMAP SM on SM.Sitename  = O.Sitename
         INNER JOIN dbo.FIXLETRESULTS FR on FR.ID = G.ContentID AND FR.SiteID = SM.SiteID
         WHERE FR.Sequence > 0x0000001298f7174a
           AND FR.Sequence <= 0x00000012ac8af2c8
        UNION ALL
         select  FR.ComputerID AS computer_remote_id,
                 FR.SiteID     AS site_remote_id,
                 FR.ID         AS fixlet_remote_id,
                 FR.IsRelevant AS relevant
         FROM dbo.GROUPS G
         INNER JOIN dbo.SITES S on G.SiteID = S.ID
         INNER JOIN dbo.BES_OBJECT_DEFS O on O.ID = G.ContentID AND
                O.Sitename = 'ActionSite' AND S.Type = 2
         INNER JOIN dbo.SITENAMEMAP SM on SM.Sitename  = O.Sitename
         INNER JOIN dbo.FIXLETRESULTS FR on FR.ID = G.ContentID AND FR.SiteID = SM.SiteID
         WHERE FR.Sequence > 0x0000001298f7174a
           AND FR.Sequence <= 0x00000012ac8af2c8

Research

Resolution

None found yet.