<?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>LinusH Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>LinusH Tracker</description>
    <pubDate>Sun, 10 May 2026 12:27:15 GMT</pubDate>
    <dc:date>2026-05-10T12:27:15Z</dc:date>
    <item>
      <title>Re: Snowflake Queries</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Snowflake-Queries/m-p/987209#M46490</link>
      <description>&lt;P&gt;Please provide the query (and log) so we can help analyze it, ideally with using the options in the link from &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2026 13:08:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Snowflake-Queries/m-p/987209#M46490</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-05-05T13:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: Export a dataset to csv inserting the delimiter at the end of each row</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-csv-inserting-the-delimiter-at-the-end-of/m-p/986588#M379968</link>
      <description>&lt;P&gt;Just to fix the output issue, you could use the of _all_ construct with catx:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
	set &amp;amp;Lib..&amp;amp;Mem;
	length out $1000;
	out = cats(catx(';', of _all_),';');
	file "&amp;amp;outfile" mod lrecl=32767 encoding="utf-8";
	put out;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 21 Apr 2026 10:39:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Export-a-dataset-to-csv-inserting-the-delimiter-at-the-end-of/m-p/986588#M379968</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-04-21T10:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: Lesson 7: Accessing DBMS Data with SAS/ACCESS</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Lesson-7-Accessing-DBMS-Data-with-SAS-ACCESS/m-p/986480#M11564</link>
      <description>It's pretty much in the message, you need to specify on which server your SAS PC Files Server is executing.&lt;BR /&gt;This information should be documented for your environment.</description>
      <pubDate>Fri, 17 Apr 2026 06:31:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Lesson-7-Accessing-DBMS-Data-with-SAS-ACCESS/m-p/986480#M11564</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-04-17T06:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: Bulk loading</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Bulk-loading/m-p/986479#M30791</link>
      <description>I don't have the "Bulk Load" tab in my advanced settings, probably because we are using SAS/ACCESS to SQL Server, not ODBC. I'm on 9.4M8 Linux.&lt;BR /&gt;Not sure what you refer to when you say "advanced option in ODBC set up". Do you mean ODBC Manager (Ican't fins an advanced option here)?&lt;BR /&gt;I think it should be enough to set it on the libname, the important thing is to generate the BULKLOAD=YES when your LIBNAME statement is being generated.&lt;BR /&gt;</description>
      <pubDate>Fri, 17 Apr 2026 06:24:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Bulk-loading/m-p/986479#M30791</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-04-17T06:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: Daily SAS Problem?</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Daily-SAS-Problem/m-p/985482#M43778</link>
      <description>There are lot of coding challenges on internet. You can use those even if they aren't SAS specific, just use SAS to solve them.&lt;BR /&gt;One example I've couple of years is "Advent of Code".</description>
      <pubDate>Fri, 27 Mar 2026 12:54:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Daily-SAS-Problem/m-p/985482#M43778</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-03-27T12:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to use SUBSTR to create another variable?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-use-SUBSTR-to-create-another-variable/m-p/985319#M379824</link>
      <description>&lt;P&gt;As&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/401244"&gt;@MarkusWeick&lt;/a&gt;&amp;nbsp;suggest, use a numerical date formatted column for this.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data news;
   val = '06May1998'd;
   new_val = intnx('YEAR',val, 1, 'SAME');
   format val new_val date9.;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 25 Mar 2026 07:56:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-use-SUBSTR-to-create-another-variable/m-p/985319#M379824</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-03-25T07:56:12Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Enterprise Guide Error Message</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-Message-when-querying-Snowflake/m-p/985137#M46457</link>
      <description>&lt;P&gt;Could this be caused by VARIANT data types?&lt;/P&gt;
&lt;P&gt;Check for lengths in all columns, do any of them exceed 32K?&lt;/P&gt;
&lt;P&gt;Also, try implicit pass-through (your query should work with the same performance, explicit pass through shouldn't be necessary here).&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2026 10:28:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Error-Message-when-querying-Snowflake/m-p/985137#M46457</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-03-23T10:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 Loader Modification</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-Loader-Modification/m-p/985022#M21081</link>
      <description>Another (and not ideal) work-around if you wish to use the existing transformation:&lt;BR /&gt;- specify %let etls_debug = 1; in your job(s), or perhaps in appserver_autoexec_usermods.&lt;BR /&gt;- Have program (macro preferably) in your postcode of your SCD2 transform (or as a separate transformation) that picks up work.etls_close, modify the end date (for records equal today - drop the rest), and re-apply it to you target table. Of course, if you are expecting a big amount of records to be closed out each batch, this is probably not acceptable from a performance standpoint.</description>
      <pubDate>Fri, 20 Mar 2026 07:51:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-Loader-Modification/m-p/985022#M21081</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-03-20T07:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 Loader Modification</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-Loader-Modification/m-p/984940#M21079</link>
      <description>&lt;P&gt;This is a outside my realm. I found this (old) paper:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.google.com/url?sa=t&amp;amp;source=web&amp;amp;rct=j&amp;amp;opi=89978449&amp;amp;url=https://support.sas.com/resources/papers/proceedings/proceedings/forum2007/015-2007.pdf&amp;amp;ved=2ahUKEwi63Ma-vamTAxVDExAIHUkvPEkQFnoECB8QAQ&amp;amp;usg=AOvVaw02Ha3_unK5TGPkuKH_Td9S" target="_blank"&gt;https://www.google.com/url?sa=t&amp;amp;source=web&amp;amp;rct=j&amp;amp;opi=89978449&amp;amp;url=https://support.sas.com/resources/papers/proceedings/proceedings/forum2007/015-2007.pdf&amp;amp;ved=2ahUKEwi63Ma-vamTAxVDExAIHUkvPEkQFnoECB8QAQ&amp;amp;usg=AOvVaw02Ha3_unK5TGPkuKH_Td9S&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;May contact you SAS representative or open a SAS track to get better/more detailed guidelines.&lt;/P&gt;
&lt;P&gt;One caveat, if you build you own java transformation, that will for not be eligible for migration to Viya 4 when that day comes (please verify with SAS).&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2026 12:50:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-Loader-Modification/m-p/984940#M21079</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-03-18T12:50:36Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 Loader Modification</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-Loader-Modification/m-p/984929#M21077</link>
      <description>&lt;P&gt;That is one flaw many have discovered.&lt;/P&gt;
&lt;P&gt;Unfortunately, you cannot tweak the DI Studio native transformations, unless you a re a skilled Java developer.&lt;/P&gt;
&lt;P&gt;What you can do is take the generated code&amp;nbsp; from the standard transformation, and paste into a User Written Transformation.&lt;/P&gt;
&lt;P&gt;It will not be as "nice" as the original one, and some adjustments/configuration to make it work.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2026 09:04:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-Loader-Modification/m-p/984929#M21077</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-03-18T09:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Unable to establish a SAS Metadata Server connection. Proc Upload</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-Unable-to-establish-a-SAS-Metadata-Server-connection-Proc/m-p/984273#M84120</link>
      <description>&lt;P&gt;The transformation is available her:&lt;/P&gt;
&lt;DIV id="tinyMceEditorLinusH_0" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV id="tinyMceEditorLinusH_1" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Mon, 02 Mar 2026 13:33:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ERROR-Unable-to-establish-a-SAS-Metadata-Server-connection-Proc/m-p/984273#M84120</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-03-02T13:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Unable to establish a SAS Metadata Server connection. Proc Upload</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/ERROR-Unable-to-establish-a-SAS-Metadata-Server-connection-Proc/m-p/984213#M84118</link>
      <description>&lt;P&gt;We have a slightly different setup, SAS Compute (corresponds to your DI Server I assume) is on the same host as LASR root (controller) node.&lt;/P&gt;
&lt;P&gt;How is your LASR defined in metadata, when it comes to Logical Server, hosts etc?&lt;/P&gt;
&lt;P&gt;Also, it doesn't look like you are using the&amp;nbsp;SAS LASR Analytic Server Loader transformation?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please share your Job diagram and the complete job code.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Feb 2026 13:21:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/ERROR-Unable-to-establish-a-SAS-Metadata-Server-connection-Proc/m-p/984213#M84118</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-02-27T13:21:04Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: The SAS/ACCESS Interface to DB2 cannot be loaded. The SASDBU code appendage could not be</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/ERROR-The-SAS-ACCESS-Interface-to-DB2-cannot-be-loaded-The/m-p/984205#M30713</link>
      <description>&lt;P&gt;As an addition to&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;tips, also run PROC Product_Status. It will give details on what is actually installed.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Feb 2026 10:11:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/ERROR-The-SAS-ACCESS-Interface-to-DB2-cannot-be-loaded-The/m-p/984205#M30713</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-02-27T10:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: Creating temporary/Session specific tables in SingleStore</title>
      <link>https://communities.sas.com/t5/SAS-Viya/Creating-temporary-Session-specific-tables-in-SingleStore/m-p/983970#M3039</link>
      <description>&lt;P&gt;Try the DBMSTEMP= libname option:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/da/pgmsascdc/v_065/acreldb/p0he4t6yjfmkhpn16qrf0cdhllu6.htm" target="_blank"&gt;https://documentation.sas.com/doc/da/pgmsascdc/v_065/acreldb/p0he4t6yjfmkhpn16qrf0cdhllu6.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Feb 2026 15:12:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/Creating-temporary-Session-specific-tables-in-SingleStore/m-p/983970#M3039</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-02-24T15:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to improve performance copying a huge table while also creating additional indexes</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-improve-performance-copying-a-huge-table-while-also/m-p/983517#M379503</link>
      <description>&lt;P&gt;Generally speaking, SPDE does not usually speed up writing, because the data is still fed in single thread.&lt;/P&gt;
&lt;P&gt;But it has a flip side when it comes to updating indexes, which is done in parallel while inserting data.&lt;/P&gt;
&lt;P&gt;And of course, querying the data...&lt;/P&gt;</description>
      <pubDate>Mon, 16 Feb 2026 08:30:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-improve-performance-copying-a-huge-table-while-also/m-p/983517#M379503</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-02-16T08:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Why doesn't the "contains "yes"" and select subquery produce the same result</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Why-doesn-t-the-quot-contains-quot-yes-quot-quot-and-select/m-p/983087#M379462</link>
      <description>&lt;P&gt;I did a simple test with sashelp.class and got expected result.&lt;/P&gt;
&lt;P&gt;Can you post some test data (in form of a data step/datalines) so we can try your exact scenario?&lt;/P&gt;</description>
      <pubDate>Thu, 05 Feb 2026 15:46:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Why-doesn-t-the-quot-contains-quot-yes-quot-quot-and-select/m-p/983087#M379462</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-02-05T15:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: create seq number for each  ownership structure</title>
      <link>https://communities.sas.com/t5/SAS-Programming/create-seq-number-for-each-ownership-structure/m-p/982995#M379432</link>
      <description>Sorry, I don't understand how you wish calculate "order".&lt;BR /&gt;Can elaborate a bit more?</description>
      <pubDate>Wed, 04 Feb 2026 07:15:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/create-seq-number-for-each-ownership-structure/m-p/982995#M379432</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-02-04T07:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move data from Path to ADLS2</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Best-way-to-move-data-from-Path-to-ADLS2/m-p/982994#M379431</link>
      <description>&lt;P&gt;To be able to read sas7bdat from SAS compute, you need to mount it.&lt;/P&gt;
&lt;P&gt;See the community post:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/Using-Azure-Blob-Storage-for-sas7bdat-files-with-SAS-Viya-Part-1/ta-p/906563" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/Using-Azure-Blob-Storage-for-sas7bdat-files-with-SAS-Viya-Part-1/ta-p/906563&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2026 07:11:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Best-way-to-move-data-from-Path-to-ADLS2/m-p/982994#M379431</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-02-04T07:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move data from Path to ADLS2</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Best-way-to-move-data-from-Path-to-ADLS2/m-p/982916#M379414</link>
      <description>Can you clarify what you mean by "data"?&lt;BR /&gt;ASFAIK ADLS2 is supported for CAS tables, Parquet and ORC libname and via filename.&lt;BR /&gt;</description>
      <pubDate>Tue, 03 Feb 2026 11:46:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Best-way-to-move-data-from-Path-to-ADLS2/m-p/982916#M379414</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-02-03T11:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: Migration- SAS 9.4 to SAS Viya - Spk file export</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Migration-SAS-9-4-to-SAS-Viya-Spk-file-export/m-p/982915#M30637</link>
      <description>.sas programs are just flat files, so from a movement perspective, it's "just" an copy operation of choice. &lt;BR /&gt;The tricky part is to make them compatible with your Viya environment. Most likely it comes down search paths to file and libraries. If you are migrating from 9.4 on Linux it is potentially easier than from a Windows Server. See Content Assessment Code Check for more details.&lt;BR /&gt;When it comes to EG, you may need to migrate, since EG is a supported client for Viya. If you migrate EG to SAS Studio you will lose some functionality, Content Assessment Profile should be able to tell you what.</description>
      <pubDate>Tue, 03 Feb 2026 11:39:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Migration-SAS-9-4-to-SAS-Viya-Spk-file-export/m-p/982915#M30637</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2026-02-03T11:39:26Z</dc:date>
    </item>
  </channel>
</rss>

