<?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: SCD Type 2 - DI - Beginning Date and Business Key Questions in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/240227#M6243</link>
    <description>&lt;P&gt;Ok, "never" is a quite strong word...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But, I always try to avoid building bridge tables in the access/data mart layer - they are simply too complicated to use for most users. This&amp;nbsp;can be done by having a structured detail data store underneath&amp;nbsp;the mart layer, and by creating denormalized information marts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Type 2 dimensions with a normal 1-M relationship&amp;nbsp;to the fact table is a&amp;nbsp;much more common scenario (in my designs at least). So I wish to simplify join conditions for the users, hence the no retained keys policy.&lt;/P&gt;</description>
    <pubDate>Mon, 21 Dec 2015 09:07:22 GMT</pubDate>
    <dc:creator>LinusH</dc:creator>
    <dc:date>2015-12-21T09:07:22Z</dc:date>
    <item>
      <title>SCD Type 2 - DI - Beginning Date and Business Key Questions</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/239769#M6223</link>
      <description>&lt;P&gt;I seem to be having difficulty getting this SCD Type 2 Transformation to do what I think it should. I have two questions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) We use Beginning Date and End Date in our target fact table for purposes of historical record. In the source file, we have a new Begin Date, so I want to close out the current End Date on the target and have a new row that opens with this new Begin Date.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2) We have a Business Key (Student_ID) and a Surrogate Key (STD_KEY). On these new records from the source, it is the Student_ID that has new values, so I would think that is the column I need to check for changes on. However, it is the Business Key. I want to retain the exisiting Surrogate Key.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ultimately where we have:&lt;/P&gt;
&lt;P&gt;STD_KEY 02&lt;/P&gt;
&lt;P&gt;STUDENT_ID 1234&lt;/P&gt;
&lt;P&gt;BEGIN_DATE 01JAN2006&lt;/P&gt;
&lt;P&gt;END_DATE 01JAN5999&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want the new source data to generate a second row for this Surrogate Key with the new Student ID value with both rows looking like:&lt;/P&gt;
&lt;P&gt;STD_KEY 02&lt;/P&gt;
&lt;P&gt;STUDENT_ID 1234&lt;/P&gt;
&lt;P&gt;BEGIN_DATE 01JAN2006&lt;/P&gt;
&lt;P&gt;END_DATE 14JAN2008&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;STUD_KEY 02&lt;/P&gt;
&lt;P&gt;STUDENT_ID 5678&lt;/P&gt;
&lt;P&gt;BEGIN_DATE 15JAN2008&lt;/P&gt;
&lt;P&gt;END_DATE 01JAN5999&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I'm getting is the following that will come across as two totally unrelated records on our target table:&lt;/P&gt;
&lt;P&gt;STD_KEY 02&lt;/P&gt;
&lt;P&gt;STUDENT_ID 1234&lt;/P&gt;
&lt;P&gt;BEGIN_DATE 01JAN2006&lt;/P&gt;
&lt;P&gt;END_DATE 01JAN5999&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;STUD_KEY 03&lt;/P&gt;
&lt;P&gt;STUDENT_ID 5678&lt;/P&gt;
&lt;P&gt;BEGIN_DATE 15JAN2008&lt;/P&gt;
&lt;P&gt;END_DATE 01JAN5999&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This seems like it should be very easy to do. What I'm doing though is adding more rows with new Surrogate Keys to my target table and I'm not closing out any dates.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thoughts?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2015 16:11:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/239769#M6223</guid>
      <dc:creator>jwhite</dc:creator>
      <dc:date>2015-12-17T16:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 - DI - Beginning Date and Business Key Questions</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/239781#M6224</link>
      <description>&lt;P&gt;Ok, I'm carrying the new STUDENT_ID and BEGIN_DATE from source to target through SCD TYPE 2 node mappings so now getting:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;STD_KEY 02&lt;/P&gt;
&lt;P&gt;STUDENT_ID 1234&lt;/P&gt;
&lt;P&gt;BEGIN_DATE 01JAN2006&lt;/P&gt;
&lt;P&gt;END_DATE 01JAN5999&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;STUD_KEY 02&lt;/P&gt;
&lt;P&gt;STUDENT_ID 5678&lt;/P&gt;
&lt;P&gt;BEGIN_DATE 15JAN2008&lt;/P&gt;
&lt;P&gt;END_DATE 01JAN5999&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which is a lot closer, but the dates aren't closing out. And really, this doesn't seem to feel more like any actual change capture but more like an 'append'.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Suggestions?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2015 16:44:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/239781#M6224</guid>
      <dc:creator>jwhite</dc:creator>
      <dc:date>2015-12-17T16:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 - DI - Beginning Date and Business Key Questions</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/239794#M6225</link>
      <description>&lt;P&gt;Alright...I think I've got it working correctly. This is how I did it..and if this isn't correct, do tell.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tabs:&lt;/P&gt;
&lt;P&gt;Change Tracking - using BEGIN_DATE and END_DATE in the column name. BEGIN_DATE and '01JAN5999'D in the EXPRESSION&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Business Key - STD_KEY&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Generated Key - none&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Detect Changes - selected columns is blank, so all&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mappings - mapped STD_KEY, STUDENT_ID, and BEGIN_DATE. _not_ END_DATE as that is generated in the exrpession of the change tracking tab.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, it looks like it appends the new source records to the target table, but closes out the END_DATE of exisiting records and uses the day before the mapped BEGIN_DATE as the new END_DATE of the exisiting records.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is the result I want, but am I using the transformation correctly?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2015 17:25:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/239794#M6225</guid>
      <dc:creator>jwhite</dc:creator>
      <dc:date>2015-12-17T17:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 - DI - Beginning Date and Business Key Questions</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/239836#M6228</link>
      <description>First I'm not sure if you are using the correct terminology, or if your dimensional model is "correct".&lt;BR /&gt;Using type 2 on a fact is rare but can in some cases be valid use case. Like if you wish to save space on rarely changed balance values. But need to see more attributes to understand. &lt;BR /&gt;&lt;BR /&gt;If this is a fact, you should only bring the dimension key ( which you got from a lookup earlier in the job). &lt;BR /&gt;&lt;BR /&gt;But if you are in fact &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt; loading a dimension your I'd is the business key, and std_key is your retained surrogate key.</description>
      <pubDate>Thu, 17 Dec 2015 20:27:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/239836#M6228</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2015-12-17T20:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 - DI - Beginning Date and Business Key Questions</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/239838#M6229</link>
      <description>&lt;P&gt;Ha! You are correct. This is not a FACT, but a DIM table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was confused in my initial post as I was attempting to use this transformation based on readings I was doing from a SAS DI Studio training book. In their example they load a FACT table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now knowing this is a DIM table, does the use of the transformation look correct?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2015 20:37:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/239838#M6229</guid>
      <dc:creator>jwhite</dc:creator>
      <dc:date>2015-12-17T20:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 - DI - Beginning Date and Business Key Questions</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/239857#M6230</link>
      <description>Is your data "real" or sample data?&lt;BR /&gt;I'm confused about the origin of your surrogate key. Is it delivered from the source or maintained by SAS?&lt;BR /&gt;And it sounds odd if you identified a business key, and that key can change. Doesn't sound right... The idea with a business key is that it doesn't change.</description>
      <pubDate>Thu, 17 Dec 2015 21:33:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/239857#M6230</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2015-12-17T21:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 - DI - Beginning Date and Business Key Questions</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/239863#M6231</link>
      <description>&lt;P&gt;The surrogate key is generated by SAS. I have retained it from an earlier lookup.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The business key are ssns and should change, correct. however, the source data we're receiving are 'fixes' or corrected data that was sent to us. Basically, the ssns (the business key) was sent incorrectly to us in our initial load.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The hope is that this SCD Type 2 transformation will close out the old ssns and open records that have the new ones as the business key.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is other data in these records (date of births, etc) but we are only looking to update the ssns at this time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2015 21:50:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/239863#M6231</guid>
      <dc:creator>jwhite</dc:creator>
      <dc:date>2015-12-17T21:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 - DI - Beginning Date and Business Key Questions</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/239938#M6232</link>
      <description>Ok it seems that you don't have a standardised flow here. To be able to give advice I think one needs to review the whole ETL flow and design, something that it's not optimal to do here. I sugest that you find someone that can consult your design in more detail.&lt;BR /&gt;&lt;BR /&gt;Usually,  type 2 dimensions holds the logic for key management. And corrections to business-DW key pairs is managed in separate jobs/flows.</description>
      <pubDate>Fri, 18 Dec 2015 07:20:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/239938#M6232</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2015-12-18T07:20:52Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 - DI - Beginning Date and Business Key Questions</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/240009#M6234</link>
      <description>&lt;P&gt;I understand.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, if the business key were to change, would we not still need to open and close the Begin and End Dates so our programs and jobs can find the 'current' records?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is a more standard way to updated business keys? I think I'm pretty familiar with the DI Studio so am open to trying another approach.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 18 Dec 2015 14:10:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/240009#M6234</guid>
      <dc:creator>jwhite</dc:creator>
      <dc:date>2015-12-18T14:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 - DI - Beginning Date and Business Key Questions</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/240148#M6240</link>
      <description>&lt;P&gt;Ok, it's&amp;nbsp;Christmas soon, so here goes (even if DI design it's bit abstract to discuss in detail as of my earlier post).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A complete data (warehouse) architecture would include staging area, detail data store and data/information marts.&lt;/P&gt;
&lt;P&gt;Star&amp;nbsp;schemas are a&amp;nbsp;preferred design for data marts. Some think tey're good for the detail data store, but I don't agree.&lt;/P&gt;
&lt;P&gt;The detail data store can logically be&amp;nbsp;separated by a core area, where only hard rules have been applied (data types, naming standard etc). And a business area where business rules have been applied. I would say&amp;nbsp;normalizing business keys would be stored/handled in that area.&lt;/P&gt;
&lt;P&gt;I assume that&amp;nbsp;you get a&amp;nbsp;separate file/delivery with conversion/matching business keys,&amp;nbsp;separately from the normal attributes.&lt;/P&gt;
&lt;P&gt;Surrogate keys created in the detail data store should be&amp;nbsp;inherited to the data marts. Two cases:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Dimension type 2: don't use retained key, since that adds complexity in the join&amp;nbsp;conditions to fact tables. Use the detail data store surrogate key as business&lt;/LI&gt;
&lt;LI&gt;DImension type 1: if you have the same granularity as in the detail data store, you could use the same key (and again as business key). No need to create a new key in the data mart.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;So what about your&amp;nbsp;changing business keys? If you have a detail data store, you should have built separate surrogate key tables. You could build them using the business&amp;nbsp;key as PK, have your regular flow&amp;nbsp;create new entries when new business keys arrive. And then have an alternate flow for your old-new/wrong-correct business keys pairs update that surrogate table in separate job.&lt;/P&gt;
&lt;P&gt;Another option is to look an be inspired by data vault modelling. There you should use a surrogate key table as well, here called "Hub". Then you have a&amp;nbsp;relational table connect both ways to that Hub, as so called Same-as-Link. Google for examples if that sounds interesting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers&lt;/P&gt;
&lt;P&gt;Linus&lt;/P&gt;</description>
      <pubDate>Sat, 19 Dec 2015 16:01:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/240148#M6240</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2015-12-19T16:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 - DI - Beginning Date and Business Key Questions</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/240224#M6241</link>
      <description>&lt;P&gt;The business key identifies a record. That's what you use from source to join data with the target and then to identify if any of the other variables under change tracking have changed.&lt;/P&gt;
&lt;P&gt;Because the business key is used for joining you can't have it under change tracking; certainly not with the OOTB DIS SCD2 loader.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now for your once off job&amp;nbsp;and if&amp;nbsp;the business key is changing (but is actually identifying "the same record"): Which other variable could you use to uniquely identify the record? Is there some alternate key?&lt;/P&gt;
&lt;P&gt;If there is an alternate key then you could could use this alternate key as business key and the original business key as a variable under change tracking. This way you could set-up a once off job and load your data using SCD2; and records where the original business key changes would get expired and a new record would get created.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13674"&gt;@LinusH﻿&lt;/a&gt;recommendation to&amp;nbsp;never use retained keys: I can't really agree with this. Using retained keys makes maintaining bridge tables so much easier. With surrogate keys you need to create new relationship records in bridge tables whenever something in the primary tables changes; even if there is no change in the relationship itself. This cost me a lot of pain and a lot of additional processing in past projects.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Dec 2015 08:29:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/240224#M6241</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2015-12-21T08:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 - DI - Beginning Date and Business Key Questions</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/240227#M6243</link>
      <description>&lt;P&gt;Ok, "never" is a quite strong word...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But, I always try to avoid building bridge tables in the access/data mart layer - they are simply too complicated to use for most users. This&amp;nbsp;can be done by having a structured detail data store underneath&amp;nbsp;the mart layer, and by creating denormalized information marts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Type 2 dimensions with a normal 1-M relationship&amp;nbsp;to the fact table is a&amp;nbsp;much more common scenario (in my designs at least). So I wish to simplify join conditions for the users, hence the no retained keys policy.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Dec 2015 09:07:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/240227#M6243</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2015-12-21T09:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: SCD Type 2 - DI - Beginning Date and Business Key Questions</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/240286#M6244</link>
      <description>&lt;P&gt;Thanks, LinusH and Patrick.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You both have given me plenty to investigate from here. Also, from your explanations, I think I may have mis-used terminology in reference to the Business Key.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again for your detailed responses and have a great holiday!&lt;/P&gt;
&lt;P&gt;-Jeff&lt;/P&gt;</description>
      <pubDate>Mon, 21 Dec 2015 17:25:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/SCD-Type-2-DI-Beginning-Date-and-Business-Key-Questions/m-p/240286#M6244</guid>
      <dc:creator>jwhite</dc:creator>
      <dc:date>2015-12-21T17:25:23Z</dc:date>
    </item>
  </channel>
</rss>

