<?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 Re: Bits...Understanding Bits bit more in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Bits-Understanding-Bits-bit-more/m-p/1273430#M849044</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I suggest you ask a few questions at a time, rather than sending a detailed questionnaire. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Qlikview has a different view to datatypes than SQL. The bit lengths have no relationship to the SQL type definitions -- they are determined by the number of distinct values for that field after loading (or when storing a QVD); sufficient bits to identify each distinct value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Mar 2017 04:57:19 GMT</pubDate>
    <dc:creator>jonathandienst</dc:creator>
    <dc:date>2017-03-14T04:57:19Z</dc:date>
    <item>
      <title>Bits...Understanding Bits bit more</title>
      <link>https://community.qlik.com/t5/QlikView/Bits-Understanding-Bits-bit-more/m-p/1273427#M849041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have recently read an article "&lt;SPAN style="color: #3778c7; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;Symbol Tables and Bit-Stuffed Pointers&lt;/SPAN&gt;" recently ( referred by Marcus Sommer).. It really opened by eye broadly to see qlik from its another side..I have some questions.. ( but it may be silly &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; from an expert point of view)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How this bit concept will be applied to VARCHAR fields?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say for example, I have a table with 3 fields as below...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create Table Employee&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;Eno INT Primary Key,&lt;/P&gt;&lt;P&gt;Ename VARCHAR(100) NOT NULL,&lt;/P&gt;&lt;P&gt;Email_Address VARCHAR(100) NOT NULL&lt;/P&gt;&lt;P&gt;Company_Name VARCHAR(250) NOT NULL&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample Data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1,Karthik, &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:karth_qw@xyz.com" target="_blank"&gt;karth_qw@xyz.com&lt;/A&gt;&lt;SPAN&gt;, ABC Pvt Ltd&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2,Sean, &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:sean@xyz.com" target="_blank"&gt;sean@xyz.com&lt;/A&gt;&lt;SPAN&gt;, ABC Pvt Ltd&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;3,Karthik, &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:karthi_82@abc.com" target="_blank"&gt;karthi_82@abc.com&lt;/A&gt;&lt;SPAN&gt;, XYZ Pvt Ltd&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;4,Raj, &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:Raj@qtp.com" target="_blank"&gt;Raj@qtp.com&lt;/A&gt;&lt;SPAN&gt;, ABC Pvt Ltd&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;5,Karthikeyan Masilamani,&lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:km@fd.com" target="_blank"&gt;km@fd.com&lt;/A&gt;&lt;SPAN&gt;, FD Pvt Ltd&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;6,Ganapathi, &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:gana_84@bs.com" target="_blank"&gt;gana_84@bs.com&lt;/A&gt;&lt;SPAN&gt;, BS Pvt Ltd&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;7,Raghu, &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:Raghu11@fd.com" target="_blank"&gt;Raghu11@fd.com&lt;/A&gt;&lt;SPAN&gt;, FD Pvt Ltd&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Questions are...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) How many BITS will be assigned for each column? Please provide the calculation here to understand.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) is it fine to use Database Sequence number as it is in qlik or the internal AutoNumber(), Recno(), RowNo() qlik function is fine for this purpose&amp;nbsp; as these will not occupy any bits in symbol table? Correct my understanding if it is wrong...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) what would be structure of Symbol table &amp;amp; Data Table for this example? Please explain it in detail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) How 'NULL' and 'NOT NULL' columns will be treated in qlikview? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5) How CHAR() &amp;amp; VARCHAR() will be treated in qlikview? any additional storage required for VARCHAR fields?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have another table and there is a relationship between these two table. say for example "Emp_Investments" and it has "Eno" columns, it acts as the common key. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6) What about the design of Symbol table for this table ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7) how the bit relationship will be common for both the table ? which process will take care it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; What compression algorithm is used in qlikview? is it RLE ? i saw this somewhere in any article here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9) Will this symbol table &amp;amp;&amp;nbsp; Data table generation done at the time of script execution ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i think little bit outside box,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10) How to get the list of symbol table &amp;amp; data table created from a project perspective?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;11) what is the maximum limit of this count? is there any aging concept&amp;nbsp; (like MRU &amp;amp; LRU in database) available in qlikview?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;12) In SQL, sysobjects will hold an entry for all the objects created in database. is there any such table available in qlikview to get the list of qvw files, qvd files, symbol tables, data tables and its creation time something like below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID ObjectName ObjectType CreatedOn UsedIn&lt;/P&gt;&lt;P&gt;1&amp;nbsp; sales.qvw&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qvw&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 01/01/2017 &amp;lt; some report&amp;gt;&lt;/P&gt;&lt;P&gt;2 customer.qvd qvd&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 02/02/2017&amp;nbsp; &amp;lt;some qvw file name&amp;gt;&lt;/P&gt;&lt;P&gt;3 xyz.symbol&amp;nbsp;&amp;nbsp;&amp;nbsp; symbol&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 03/02/2017&lt;/P&gt;&lt;P&gt;4 xyz.data&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; data&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 03/02/2017&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;13) if there is no such table, i want to know xyz qvd file is used in how many places. How ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;14) what is the extension of symbol table &amp;amp; data table ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;15) Please explain more on naming standard used for symbol &amp;amp; data table. is it something like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;employee table ( database)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;employee.symbol ( symbol table)&lt;/P&gt;&lt;P&gt;employee.data ( data table)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;16) Is it possible to view symbol table data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;17) is the same concept ( symbol table &amp;amp; data table) used in other BI's like POWER BI, WEBFOCUS, TABLEAU and legacy COGNOS ?&lt;/P&gt;&lt;P&gt;I think it should be the special of qlikview..although i just want to ask this question to get the opinion of others...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;18) is qlikview comes with file or database based repository? How to allocate memory for Repository ? is there any relationship between REPOSITORY memory and RAM memory?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inputs are welcome!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bits-Understanding-Bits-bit-more/m-p/1273427#M849041</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Bits...Understanding Bits bit more</title>
      <link>https://community.qlik.com/t5/QlikView/Bits-Understanding-Bits-bit-more/m-p/1273428#M849042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;any inputs please ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2017 17:31:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bits-Understanding-Bits-bit-more/m-p/1273428#M849042</guid>
      <dc:creator />
      <dc:date>2017-03-13T17:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: Bits...Understanding Bits bit more</title>
      <link>https://community.qlik.com/t5/QlikView/Bits-Understanding-Bits-bit-more/m-p/1273429#M849043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would be helpful if experts share their thoughts...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Mar 2017 03:49:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bits-Understanding-Bits-bit-more/m-p/1273429#M849043</guid>
      <dc:creator />
      <dc:date>2017-03-14T03:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: Bits...Understanding Bits bit more</title>
      <link>https://community.qlik.com/t5/QlikView/Bits-Understanding-Bits-bit-more/m-p/1273430#M849044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I suggest you ask a few questions at a time, rather than sending a detailed questionnaire. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Qlikview has a different view to datatypes than SQL. The bit lengths have no relationship to the SQL type definitions -- they are determined by the number of distinct values for that field after loading (or when storing a QVD); sufficient bits to identify each distinct value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Mar 2017 04:57:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bits-Understanding-Bits-bit-more/m-p/1273430#M849044</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2017-03-14T04:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: Bits...Understanding Bits bit more</title>
      <link>https://community.qlik.com/t5/QlikView/Bits-Understanding-Bits-bit-more/m-p/1273431#M849045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure Jonathan. Going forward I will split my questions..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this time..can i get answer for these questions....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Mar 2017 17:47:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bits-Understanding-Bits-bit-more/m-p/1273431#M849045</guid>
      <dc:creator />
      <dc:date>2017-03-16T17:47:50Z</dc:date>
    </item>
  </channel>
</rss>

