<?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 VSAM Data Source in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/VSAM-Data-Source/m-p/292135#M108436</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do QlikView support VSAM as data source?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Jul 2011 06:15:20 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-07-20T06:15:20Z</dc:date>
    <item>
      <title>VSAM Data Source</title>
      <link>https://community.qlik.com/t5/QlikView/VSAM-Data-Source/m-p/292135#M108436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do QlikView support VSAM as data source?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2011 06:15:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/VSAM-Data-Source/m-p/292135#M108436</guid>
      <dc:creator />
      <dc:date>2011-07-20T06:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: VSAM Data Source</title>
      <link>https://community.qlik.com/t5/QlikView/VSAM-Data-Source/m-p/292136#M108437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will need middleware to make a direct connection. These are two options I found:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Progress DataDirect for VSAM &lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="color: #1f497d;"&gt;&lt;A href="http://www.datadirect.com/support-data-sources/mainframe/databases/vsam.html"&gt;http://www.datadirect.com/support-data-sources/mainframe/databases/vsam.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="color: #1f497d;"&gt;- Microsoft BizTalk Host Integration server&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="color: #1f497d;"&gt;&lt;A class="loading" href="http://www.microsoft.com/biztalk/en/us/host-integration.aspx" title="http://www.microsoft.com/biztalk/en/us/host-integration.aspx"&gt;http://www.microsoft.com/biztalk/en/us/host-integration.aspx&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="color: #1f497d;"&gt;Please be aware that you may need codepage translation (also from flat file exports of these systems) from EBCDIC into UTF-8 or ASCII.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="color: #1f497d;"&gt;Here's a script example of loading COBOL data:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*&lt;/P&gt;&lt;P&gt;&amp;nbsp; @startpos:endpos represents the start and end positions of a field in a &lt;/P&gt;&lt;P&gt;&amp;nbsp; file with fixed length records. The positions must both be positive integers.&lt;/P&gt;&lt;P&gt;&amp;nbsp; The two numbers must be preceded by "@" and separated by a colon. The &lt;/P&gt;&lt;P&gt;&amp;nbsp; numbering is always made from 1 and up to the number of positions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; If @startpos:endpos is immediately followed by the characters I or U, the &lt;/P&gt;&lt;P&gt;&amp;nbsp; bytes read will be interpreted as a binary signed (I) or unsigned (U) &lt;/P&gt;&lt;P&gt;&amp;nbsp; integer (Intel byte order). The number of positions read must be 1, 2 or 4. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; If @startpos:endpos is immediately followed by the character R, the bytes &lt;/P&gt;&lt;P&gt;&amp;nbsp; read will be interpreted as a binary real number (IEEE 32-bit or 64 bit &lt;/P&gt;&lt;P&gt;&amp;nbsp; floating point). The number of positions read must be 4 or 8. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; If @startpos:endpos is immediately followed by the character B, the bytes &lt;/P&gt;&lt;P&gt;&amp;nbsp; read will be interpreted as a BCD (Binary Coded Decimal) numbers according &lt;/P&gt;&lt;P&gt;&amp;nbsp; to the COMP-3 standard. Any number of bytes may be specified. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; The codepage parameter can be used to specify that the source data is EBCDIC.&lt;/P&gt;&lt;P&gt;*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[preuba]:&lt;/P&gt;&lt;P&gt;LOAD RowNo() as RowId,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @1:3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as alphanumeric, // PIC X(3)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @4:7B /100&amp;nbsp;&amp;nbsp; as numeric // PIC S9(5)V99 COMP-3&lt;/P&gt;&lt;P&gt;FROM [prueba.txt]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (fix, codepage is 500, record is 7)&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-GB" style="color: #1f497d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2013 12:26:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/VSAM-Data-Source/m-p/292136#M108437</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-30T12:26:38Z</dc:date>
    </item>
  </channel>
</rss>

