<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Configurable ODBC Group Resolution not working in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Configurable-ODBC-Group-Resolution-not-working/m-p/259533#M1278916</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; hi Jeffrey&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;documentations for Configurable ODBC...&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;---&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;36.2 Configurable ODBC&lt;BR /&gt;The ODBC database has to have two table, or two views, one for entities and one for groups.&lt;BR /&gt;The entity table must have the four following fields: entityid, name, descr and email. The fields name,&lt;BR /&gt;descr and email must be strings. Entityid must be a unique identifier (suitable for primary key).&lt;BR /&gt;The groups table must contain two fields: groupid and memberid. Together these two fields create a&lt;BR /&gt;unique identifier.&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;---&lt;BR /&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;The 'memberid' should contain the 'uid' and the 'groups' info should contain the name on the group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Oct 2011 08:54:22 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-10-21T08:54:22Z</dc:date>
    <item>
      <title>Configurable ODBC Group Resolution not working</title>
      <link>https://community.qlik.com/t5/QlikView/Configurable-ODBC-Group-Resolution-not-working/m-p/259532#M1278915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Has anyone gotten group resolution for configurable odbc to work?&amp;nbsp; I'm trying to add groups to a document and the configurable ODBC doesn't resolve groupid in search string in add users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is an example of my user view:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;EntityID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EntityName&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; descr&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Email&lt;/P&gt;&lt;P&gt;2500800000578&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2500800000578&amp;nbsp;&amp;nbsp;&amp;nbsp; UserX&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A href="mailto:truscitti@brassring.com" target="_blank"&gt;UserX@email.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the SQL code for the Users view:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;select&lt;/P&gt;&lt;P&gt; cast(clientid as bigint)*100000000 + cast(userid as bigint) as EntityID,&lt;/P&gt;&lt;P&gt; cast(clientid as bigint)*100000000 + cast(userid as bigint) as EntityName,&lt;/P&gt;&lt;P&gt; FirstName + ' ' + LastName as descr,&lt;/P&gt;&lt;P&gt; Email&lt;/P&gt;&lt;P&gt;from dbo.Users with (nolock);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is an example of my group view:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MemberID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GroupID&lt;/P&gt;&lt;P&gt;2500800000024&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2500800000578&amp;nbsp;&amp;nbsp;&amp;nbsp; 2500800000024&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;I'm trying to add group 2500800000024 but if I try to search for it when adding users/groups, nothing is resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the SQL code to create the usergroup view:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;select&lt;/P&gt;&lt;P&gt; cast(clientid as bigint)*100000000 + cast(usertypeid as bigint)&amp;nbsp; as ID,&lt;/P&gt;&lt;P&gt; cast(clientid as bigint)*100000000 + cast(userid as bigint) as MemberID,&lt;/P&gt;&lt;P&gt; cast(clientid as bigint)*100000000 + cast(usertypeid as bigint) as GroupID&lt;/P&gt;&lt;P&gt;from dbo.Users with (nolock);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas as to how this might work is greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Servers are running QlikView 10 SR2&lt;/P&gt;&lt;P&gt;The ODBC connection is to SQL server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jeff G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Configurable-ODBC-Group-Resolution-not-working/m-p/259532#M1278915</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Configurable ODBC Group Resolution not working</title>
      <link>https://community.qlik.com/t5/QlikView/Configurable-ODBC-Group-Resolution-not-working/m-p/259533#M1278916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; hi Jeffrey&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;documentations for Configurable ODBC...&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;---&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;36.2 Configurable ODBC&lt;BR /&gt;The ODBC database has to have two table, or two views, one for entities and one for groups.&lt;BR /&gt;The entity table must have the four following fields: entityid, name, descr and email. The fields name,&lt;BR /&gt;descr and email must be strings. Entityid must be a unique identifier (suitable for primary key).&lt;BR /&gt;The groups table must contain two fields: groupid and memberid. Together these two fields create a&lt;BR /&gt;unique identifier.&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;---&lt;BR /&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;The 'memberid' should contain the 'uid' and the 'groups' info should contain the name on the group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code"&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2011 08:54:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Configurable-ODBC-Group-Resolution-not-working/m-p/259533#M1278916</guid>
      <dc:creator />
      <dc:date>2011-10-21T08:54:22Z</dc:date>
    </item>
    <item>
      <title>Configurable ODBC Group Resolution not working</title>
      <link>https://community.qlik.com/t5/QlikView/Configurable-ODBC-Group-Resolution-not-working/m-p/259534#M1278919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Ok, so bottomline, the documentation is completely unhelpful.&amp;nbsp; I worked through the group resolution issue and as far as I'm concerned it's a bug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The world I'm supporting has many many users, so many that using a bigint datatype for the entityid is required.&amp;nbsp; When doing user resolution, having the bigint works without issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, try to get a bigint working in the groups table and you are going to find that group resolution won't work.&amp;nbsp; The reason is that while you can make the memberid and groupid a bigint, the code for reading the fields will only recognize values up to max(int) or approximately 2.1 billion.&amp;nbsp; My opinion, this is a big ole bug that hopefully will be addressed soon.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Oct 2011 14:28:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Configurable-ODBC-Group-Resolution-not-working/m-p/259534#M1278919</guid>
      <dc:creator />
      <dc:date>2011-10-27T14:28:52Z</dc:date>
    </item>
  </channel>
</rss>

