So that was stopping you

Finally got to what i think the root case for the student.xml not updating Network Id field on Sunapsis.

using this query which is taken from a SQL stored procedure which i think update Network ID


SELECT countingOfAllNetworkIDs.idnumber
FROM 
  (SELECT *
         , COUNT( listingOfAllNetworkIds.networkid ) OVER (PARTITION BY listingOfAllNetworkIds.networkid) duplicateCount
   FROM 
     (SELECT idnumber
             , networkid
      FROM dbo.jbInternational
      WHERE COALESCE( networkid, '' ) <> ''
      UNION
      SELECT idnumber
             , PRSN_NTWRK_ID
      FROM dbo.iuieBio
      WHERE COALESCE( PRSN_NTWRK_ID, '' ) <> '')
   AS listingOfAllNetworkIds)
  AS countingOfAllNetworkIDs
WHERE countingOfAllNetworkIDs.duplicateCount >= 2


so any id on that list wouldn't get network id updated
based Sunapsis support tip we removed all duplicates and kept only latest record on iuieBio table for the same university ID.

Popular posts from this blog

how to copy NuGet packages from one project to another

How to load a DLL and runtime, invoke a method by name, get result object and use it as a parameter on another unkown DLL .NET Core

Blazor how to generate that SHA256 check