<?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>sdoorneveld Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>sdoorneveld Tracker</description>
    <pubDate>Wed, 06 May 2026 04:55:17 GMT</pubDate>
    <dc:date>2026-05-06T04:55:17Z</dc:date>
    <item>
      <title>Re: Check if Multiple Variables exist in a SAS Dataset</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Check-if-Multiple-Variables-exist-in-a-SAS-Dataset/m-p/186434#M3825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The method I always use is based on proc contents. It's almost similar to the method Reeza is describing, but less coding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You run a proc contents on the test1 data-set. The keep variables you can use not only to check the varname but also if type, length or order matches.&lt;/P&gt;&lt;P&gt;proc contents data=test1 out=meta_test1 (keep=name type length varnum);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you create a template file (or use the one that's registered in the metadata);&lt;/P&gt;&lt;P&gt;data meta_temp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; attrib&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Id&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; length=8&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; format=8.&lt;/P&gt;&lt;P&gt;&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; score1 length=8 format=8.&lt;/P&gt;&lt;P&gt;&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; etc...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; stop;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the rest is the same as the proc sql; create table comparison from Reeza's code.&lt;/P&gt;&lt;P&gt;If you want to check of order, type, length, just add them to the join.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2014 12:18:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Check-if-Multiple-Variables-exist-in-a-SAS-Dataset/m-p/186434#M3825</guid>
      <dc:creator>sdoorneveld</dc:creator>
      <dc:date>2014-11-28T12:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: Business rule based on data source</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Business-rule-based-on-data-source/m-p/154149#M2666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Finally found the answer to my problem. Thanks to this forum some people at SAS got triggered, and emailed me directly.&lt;/P&gt;&lt;P&gt;Emailed the answer to TS because they didn't know the solution and closed the track.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The solution is to create a DSN on the data management server that has the same name for every level, but addresses to the correct directory. This DSN name is used to create a data connection for the repositories which is used in the data source for business rules. This way, when you import the business rules on a level, it uses the correct folder via the DSN. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2014 08:55:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Business-rule-based-on-data-source/m-p/154149#M2666</guid>
      <dc:creator>sdoorneveld</dc:creator>
      <dc:date>2014-05-26T08:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: Business rule based on data source</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Business-rule-based-on-data-source/m-p/154147#M2664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="819215" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;, I did send TS an email but I hoped to find some guidance here.. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2014 07:19:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Business-rule-based-on-data-source/m-p/154147#M2664</guid>
      <dc:creator>sdoorneveld</dc:creator>
      <dc:date>2014-05-14T07:19:41Z</dc:date>
    </item>
    <item>
      <title>Business rule based on data source</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Business-rule-based-on-data-source/m-p/154145#M2662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I'm defining a business rule (type: &lt;STRONG&gt;Compare a field to a filed in a data source)&lt;/STRONG&gt;, I'm experiencing the following problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Data management Studio 2.4, I've created 3 repositories on one server so I have a DTA-roadmap. Each repository has it's own ODBC Data Connection. (DDMS, TDMS and ADMS)&lt;/P&gt;&lt;P&gt;I also created SAS Data Set connections, for each level, because I have business rules based of referential data stored in data sets. The main reason for this is that they're quite large and the content of the referential data is dynamic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I create a business rule, I have to choose a data source, say Main_lev1 (this is the SAS Data set connections for DDMS). The I choose the table and column.&lt;/P&gt;&lt;P&gt;When I export the business rule from DDMS and import it tot TDMS, it still searches for Main_lev1 and not for Main_lev2 (the SAS Data set connections for TDMS).&lt;/P&gt;&lt;P&gt;I can't use a macro variable when I define the business rule, I can only choose from a drop down box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone encountered this problem? I'm running Dataflux combined with DI-studio, therefor the DTA-roadmap configuration. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 09:11:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Business-rule-based-on-data-source/m-p/154145#M2662</guid>
      <dc:creator>sdoorneveld</dc:creator>
      <dc:date>2014-05-12T09:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle column length increase when metadata is registered to DI 4.2</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Oracle-column-length-increase-when-metadata-is-registered-to-DI/m-p/31903#M247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you define your libname, you can add serveral options. Then most important ones are DB_LENGTH_SEMANTICS_BYTE (defines if it's varchar2 of byte for character fields) and DB_CLIENT_MAX_BYTES (defines how much byte a single character must be).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here's an example:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;LIBNAME&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt; ORA &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;ORACLE&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Courier New; font-size: 10pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: blue; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;INSERTBUFF&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;=&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; font-family: Courier New;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: teal; font-size: 11pt; font-weight: bold;"&gt;10000&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Courier New; font-size: 10pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: blue; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;READBUFF&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;=&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; font-family: Courier New;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: teal; font-size: 11pt; font-weight: bold;"&gt;50000&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Courier New; font-size: 10pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: blue; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;PATH&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;=OSAS&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;SCHEMA&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;=SAS&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;USER&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;=SAS&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;PASSWORD&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;=&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: purple; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: purple; font-size: 11pt;"&gt;"blabla"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Courier New; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: blue; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;DB_LENGTH_SEMANTICS_BYTE&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;=NO &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;DBCLIENT_MAX_BYTES&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;=&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; font-family: Courier New;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: teal; font-size: 11pt; font-weight: bold;"&gt;1&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: blue; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: blue; font-size: 11pt;"&gt;DBCLIENT_MAX_BYTES&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: Courier New; font-size: 10pt;"&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: black; font-size: 11pt;"&gt;=&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: teal; font-size: 10pt; font-family: Courier New;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-GB" style="font-family: 'Courier New'; background: white; color: teal; font-size: 11pt; font-weight: bold;"&gt;1 &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; color: #000000;"&gt;will prevent oracle for blowing up your column lengths by 4&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 09:36:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Oracle-column-length-increase-when-metadata-is-registered-to-DI/m-p/31903#M247</guid>
      <dc:creator>sdoorneveld</dc:creator>
      <dc:date>2014-03-19T09:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: Decode EXEC.EX_DATE column in DataFlux repository</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Decode-EXEC-EX-DATE-column-in-DataFlux-repository/m-p/182783#M3718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;took me half a day to find out, but here is the result:&lt;/P&gt;&lt;P&gt;attrib new_date format=datetime20.;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;new_date = intnx('&lt;SPAN style="text-decoration: underline;"&gt;dtyear&lt;/SPAN&gt;',ex_date*3600*24,-60,'S');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2014 16:50:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Decode-EXEC-EX-DATE-column-in-DataFlux-repository/m-p/182783#M3718</guid>
      <dc:creator>sdoorneveld</dc:creator>
      <dc:date>2014-03-12T16:50:13Z</dc:date>
    </item>
  </channel>
</rss>

