<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.adatis.co.uk/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Jeremy Kashel&amp;#39;s Blog</title><subtitle type="html" /><id>http://blogs.adatis.co.uk/blogs/jeremykashel/atom.aspx</id><link rel="alternate" type="text/html" href="http://blogs.adatis.co.uk/blogs/jeremykashel/default.aspx" /><link rel="self" type="application/atom+xml" href="http://blogs.adatis.co.uk/blogs/jeremykashel/atom.aspx" /><generator uri="http://communityserver.org" version="3.0.20611.960">Community Server</generator><updated>2011-11-01T23:33:00Z</updated><entry><title>Debug Custom MDS Workflows</title><link rel="alternate" type="text/html" href="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2013/05/20/debug-custom-mds-workflows.aspx" /><id>http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2013/05/20/debug-custom-mds-workflows.aspx</id><published>2013-05-20T14:19:04Z</published><updated>2013-05-20T14:19:04Z</updated><content type="html">&lt;p&gt;The custom MDS workflows, AKA External Action Business Rules or custom MDS assemblies, are one of the more advanced features of MDS. They allow you to extend the standard MDS business rules by getting MDS to fire Entity Member member data at an external assembly of your choice.&lt;/p&gt;  &lt;p&gt;There are a lot of moving parts to this feature, MDS business rules, the custom .Net assembly, service broker and a windows service! When a business rule meets your condition, then the rule is written to a service broker queue. The windows service interrogates the queue and then passes the information to the custom assembly. I’m not going to show how to do this, this is already done by &lt;a href="http://johanmachielse.blogspot.co.uk/2011/07/master-data-services-implementing.html" target="_blank"&gt;Johan Machielse&lt;/a&gt; and also on &lt;a href="http://msdn.microsoft.com/en-gb/library/hh270298.aspx" target="_blank"&gt;MSDN&lt;/a&gt;. What I would like to show is how to debug the use of the custom business rules, just due to the number of moving parts and also a couple of quirks that I’ve encountered when using them.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Custom Assembly Deployment&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;One of the first things that may catch you out is the deployment of the assembly. To troubleshoot this, I recommend the&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; “-console” argument of the workflow service. If you run it in command line mode you may encounter a few errors:&lt;/p&gt;  &lt;p&gt;&lt;em&gt;“Could not load file or assembly &amp;#39;YourAssembly&amp;#39; or one of its dependencies. This assembly is built by a runtime newer than      &lt;br /&gt;the currently loaded runtime and cannot be loaded.”&lt;/em&gt;&lt;/p&gt;  &lt;p&gt;This means that you need to go the properties of your assembly in Visual Studio and change the Target Framework from .NET Framework 4 to 3.5.&lt;/p&gt;  &lt;p&gt;Another error that you may get is &amp;quot;&lt;em&gt;ERROR: Could not create type. Ignored.”&lt;strong&gt;&amp;#160; &lt;/strong&gt;&lt;/em&gt;Assuming that you have actually put the assembly in the bin directory, this is most likely to be that the either the namespace or the class name in your DLL doesn’t match what you have in your config file. Check the contents of Microsoft.MasterDataServices.Workflow.exe.config match your DLL.&lt;/p&gt;  &lt;p&gt;You may also get, “&lt;em&gt;ERROR: Type does not implement IWorkflowTypeExtender.&lt;/em&gt;” This means that your assembly has been picked up correctly, but it does not implement IWorkflowTypeExtender.&lt;/p&gt;  &lt;p&gt;If the assembly does start up ok without errors, you may still get errors when the exe tries to take a message off the service broker queue. An error such as &lt;em&gt;“Could not dispatch due to missing extender &amp;lt;tag&amp;gt;”&lt;/em&gt; means that the tag that you’ve given to the assembly in the config file does not match the “Workflow Type” value of the MDS business rule:&lt;/p&gt;  &lt;p&gt;   &lt;pre class="code"&gt;&lt;strong&gt;&lt;span style="color:blue;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color:#a31515;"&gt;setting &lt;/span&gt;&lt;span style="color:red;"&gt;name&lt;/span&gt;&lt;span style="color:blue;"&gt;=&lt;/span&gt;&amp;quot;&lt;span style="color:blue;"&gt;WorkflowTypeExtenders&lt;/span&gt;&amp;quot; &lt;span style="color:red;"&gt;serializeAs&lt;/span&gt;&lt;span style="color:blue;"&gt;=&lt;/span&gt;&amp;quot;&lt;span style="color:blue;"&gt;String&lt;/span&gt;&amp;quot;&lt;/strong&gt;&lt;strong&gt;&lt;span style="color:blue;"&gt;&amp;gt;
&amp;lt;&lt;/span&gt;&lt;span style="color:#a31515;"&gt;value&lt;/span&gt;&lt;span style="color:blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/strong&gt;&lt;font style="background-color:#ffff00;"&gt;MDSTEST&lt;/font&gt;=MDS.CustomWorkflow, CustomWorkflow&lt;strong&gt;&lt;span&gt;&amp;lt;/value&amp;gt;
&amp;lt;/&lt;/span&gt;&lt;span style="color:#a31515;"&gt;setting&lt;/span&gt;&lt;span style="color:blue;"&gt;&amp;gt;&lt;/span&gt;&lt;/strong&gt;&lt;/pre&gt;

  &lt;pre class="code"&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_189D954D.png"&gt;&lt;img title="image" style="border-top:0px;border-right:0px;background-image:none;border-bottom:0px;padding-top:0px;padding-left:0px;border-left:0px;display:inline;padding-right:0px;" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_0D740B03.png" width="244" height="97" /&gt;&lt;/a&gt;&lt;/pre&gt;
  &lt;strong&gt;Debugging the Custom Assembly&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Once you do get the assembly working, you may find that the code isn’t quite doing what you want. A good way to troubleshoot this is to choose “Attach To Process” from the Debug menu in Visual Studio, as shown below:&lt;/p&gt;

&lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image3_266FDB48.png"&gt;&lt;img title="image" style="border-top:0px;border-right:0px;background-image:none;border-bottom:0px;padding-top:0px;padding-left:0px;border-left:0px;display:inline;padding-right:0px;" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image3_thumb_545D2E00.png" width="409" height="278" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you do this, then you can add breakpoints to your .Net code as normal and step through in order to troubleshoot issues.&lt;/p&gt;

&lt;p&gt;To conclude, this probably isn’t an exhaustive list of all the sort of errors that could occur with custom workflows, but with any luck it will save someone a few hours of troubleshooting.&lt;/p&gt;&lt;img src="http://blogs.adatis.co.uk/aggbug.aspx?PostID=13437" width="1" height="1"&gt;</content><author><name>Jeremy Kashel</name><uri>http://blogs.adatis.co.uk/members/Jeremy-Kashel.aspx</uri></author><category term="C#" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/C_2300_/default.aspx" /><category term="MDM" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/MDM/default.aspx" /><category term="Master Data Services" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Master+Data+Services/default.aspx" /><category term="MDS" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/MDS/default.aspx" /><category term="Master Data Management" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Master+Data+Management/default.aspx" /></entry><entry><title>Data Quality Services - Kimball ETL Screening</title><link rel="alternate" type="text/html" href="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2013/02/28/data-quality-services-kimball-etl-screening.aspx" /><id>http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2013/02/28/data-quality-services-kimball-etl-screening.aspx</id><published>2013-02-28T10:39:53Z</published><updated>2013-02-28T10:39:53Z</updated><content type="html">&lt;p&gt;Although it’s arguably not the most popular in the Kimball series, &lt;a href="http://www.kimballgroup.com/data-warehouse-and-business-intelligence-resources/data-warehouse-books/booksdwet/" target="_blank"&gt;The Data Warehouse ETL Toolkit&lt;/a&gt; contains a huge amount of vital information that’s focussed on the ETL side of data warehousing. In particular I’ve found the data quality screens design to be useful, so I thought it might be worth exploring if this concept can be applied to Data Quality Services.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;What is a Kimball Data Quality Screen?&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;A screen is simply a check that is made against data that comes into the ETL pipeline and is used to measure data quality. Physically, the Kimball screen design is typically implemented as a table called Screen, which contains, as rows, the actual checks to perform against staged data. In addition, the screen table will contain metadata to aid data quality measurement, such as screen severity, category, source system and possibly exception actions.&lt;/p&gt;  &lt;p&gt;Each time that a screen yields some results (i.e. data quality issues) then another table, Error Event Fact, is populated with the results. Therefore, by using the data generated by the screening process, The Error Event Fact becomes the place to look for an overall measurement of data quality. The schema for this design from the Kimball book (with a few modifications) is as follows:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_5E1423A9.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_100BC434.png" width="574" height="196" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;The check performed by each screen is typically a snippet of SQL that checks for a particular condition, e.g. Is the customer’s postcode missing, or is the tax amount within permitted ranges?&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Can Data Quality Services assist with ETL screening?&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;DQS is capable of auditing and checking data, as each domain within a knowledge base can have its own &lt;a href="http://msdn.microsoft.com/en-us/library/hh510397.aspx" target="_blank"&gt;domain rules&lt;/a&gt;. In order to see how this might work as Kimball screens, I’ve set up a simple knowledge base around purchase orders. Here’s the domain management window from the DQS client:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_29079479.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_420364BE.png" width="207" height="161" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Within the Delivery Charge domain, I’ve setup a domain rule called ‘Delivery Charge Negative’ in order to ensure that the delivery charge cannot be negative:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_6FF0B776.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_1DDE0A2F.png" width="311" height="97" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;I’ve done something similar with the PO Date domain, setting up a rule to state that the PO date must be greater than 01/01/2012 in this case. Data run against the PO knowledge base will now be enforced against these two rules, so these are effectively my two Kimball style screens. To recap, DQS cleaning can be run either from the Data Quality Client or from SSIS.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Populating the Error Event Fact with SSIS&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;I’m going to be running my DQS domain rules via SSIS, as my end goal is to populate the Error Event Fact. Remember, if any DQ issues occur, I want the Error Event Fact to know about them.&lt;/p&gt;  &lt;p&gt;In this scenario, the data from the source system has already been staged to a SQL table, which gives the following results in the SSIS source adaptor preview:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_08EC87BC.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_36D9DA74.png" width="317" height="187" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;This data is passed to the DQS Cleansing SSIS task, with the data mapped to the DQS Knowledge Base in the following way:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_16BECDB7.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_01CD4B44.png" width="345" height="250" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Once the package is run, the data will be passed to DQS, which will run the data against its knowledge base, including running the domain rules. The data that is returned from DQS is as shown below. Note, PO55 row has failed both rules, whereas the other two rows have failed one row each.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_5DA7F0B4.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_48B66E41.png" width="653" height="109" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Now we know exactly which rows have failed each data quality screen. The only trouble is that the data is in the wrong format for our error event fact. We want a total of 4 rows in the error event fact has PO Id 5 has failed 2 screens, whereas the other two rows have failed 1 screen. Therefore, we carry out a unpivot before inserting into the Error Event Fact. For this blog post my ScreenId is hard coded, but in reality you would have to lookup an appropriate ID for the DQS screen. The full SSIS package is as follows:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_76A3C0F9.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_0F9F913F.png" width="202" height="347" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Data Quality Reporting&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;With the Error Event Fact populated, a variety of reports can be produced. In this case I’ve made a very simple Analysis Services cube and made a quick report in Excel 2013, using slicers, sparklines and also the new &lt;a href="http://office.microsoft.com/en-gb/excel-help/create-a-pivottable-timeline-to-filter-dates-HA102840038.aspx?CTT=5&amp;amp;origin=HA102809308" target="_blank"&gt;Timeline&lt;/a&gt; feature:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_3D8CE3F7.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_289B6184.png" width="700" height="274" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;From this report I can see the screen that’s failed the most rows, see a trend of data quality and filter on specific issues.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Summary&lt;/strong&gt;&lt;/p&gt;      &lt;p&gt;With a bit of work, DQS is capable of producing the rows needed for the Kimball Error Event Fact, but how good is it? I see the advantages of using DQS as follows:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Front end user interface in order to allow data stewards to set up their own rules to screen the data – much better than holding rules in SSIS or manually in a table;&lt;/li&gt;    &lt;li&gt;DQS becomes a one stop shop for all data quality, as, in addition to holding the screens as domain rules, DQS will clean your data for you, according to the valid/invalid domain values that you set up in the knowledge base.&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;There are a few disadvantages to it also:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;The domain rules are not as flexible as pure SQL or SSIS, meaning that you may not be able to express all the screening rules that you had in mind;&lt;/li&gt;    &lt;li&gt;DQS can&amp;#39;t maintain all the metadata that you need to implement Kimball screening, so you’ll need to supplement it with some SQL tables to hold things like screen severity, screen type etc;&lt;/li&gt;    &lt;li&gt;Even though the performance has been improved in CUI, it’s still not suitable for large amounts of data. &lt;a href="http://blogs.msdn.com/b/dqs/archive/2012/04/17/significant-performance-enhancements-in-dqs-with-the-cumulative-update-1-cu1-release-for-sql-server-2012.aspx" target="_blank"&gt;Here’s&lt;/a&gt; an overview of how long you can expect the SSIS cleansing to take.&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;So my view is that if you’re already using DQS and data stewards like it using it to manage data quality, and your data volumes are not too big, then implement the classic Kimball screening design using DQS. But there are more cons than pros unfortunately, so if you’ve not already made an investment in DQS, and you have the time to invest in your own Kimball style screening solution, then I think you can come up with something that’s a bit more flexible and scalable.&lt;/p&gt;&lt;img src="http://blogs.adatis.co.uk/aggbug.aspx?PostID=11902" width="1" height="1"&gt;</content><author><name>Jeremy Kashel</name><uri>http://blogs.adatis.co.uk/members/Jeremy-Kashel.aspx</uri></author><category term="Excel" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Excel/default.aspx" /><category term="Data Warehousing" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Data+Warehousing/default.aspx" /><category term="Kimball" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Kimball/default.aspx" /><category term="DQS" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/DQS/default.aspx" /><category term="Data Quality Services" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Data+Quality+Services/default.aspx" /></entry><entry><title>Unique Values in Master Data Services</title><link rel="alternate" type="text/html" href="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/12/07/unique-values-in-master-data-services.aspx" /><id>http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/12/07/unique-values-in-master-data-services.aspx</id><published>2012-12-07T13:29:27Z</published><updated>2012-12-07T13:29:27Z</updated><content type="html">&lt;p&gt;I’ve been doing quite a few demos and Proof of Concept (POC) projects recently for MDS. Understandably there are always a raft of questions that come up during demos and POCs, one of which recently was “how do I ensure that this attribute’s value is unique?”. &lt;/p&gt;  &lt;p&gt;MDS can easily deal with simple uniqueness enforcement, which is something that anyone who has done any MDS development will no doubt know straight away. But if the requirement is more complex, such as ensuring that the attribute is unique in conjunction with other attributes, then I don’t think it’s as well known. Therefore I thought it would be worth a quick post on how to do this.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Code Attribute&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;To get the simple case out of the way, each MDS entity is always created with an attribute called Code, which must be unique. Therefore if you try and create/update a member with a duplicate Code, then you get the following error message:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_1C8F48C1.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_7869EE31.png" width="417" height="57" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Business Rules&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;To enforce uniqueness on any other attribute, you have to use business rules. Therefore, if I want to ensure that the attribute called Name must be unique, then I must carry out the following:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Go to the business rules editor and create a new rule &lt;/li&gt;    &lt;li&gt;Drag the action of “must be unique” over to the actions node &lt;/li&gt;    &lt;li&gt;Drag the Name attribute over to the “Select attribute” node, meaning that the action should look as follows: &lt;/li&gt;    &lt;li&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_1165BE77.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_7C743C03.png" width="244" height="139" /&gt;&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;Once that’s done, save the rule step and then re-publish the rule. &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Trying to enter a duplicate value for the Name attribute will now give the following validation error:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_2A618EBC.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_584EE174.png" width="407" height="52" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Business Rules – Multiple Attributes&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Now for the harder scenario. In the sample MDS product model, there is a Country attribute and also a Product Sub Category. I want to ensure that Name is unique, but only within a Country and Sub Category combination. To do this we go to the same business rules interface, and add the same action as before. Once that is done we carry out the following additional steps:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Change the radio button to “In combination with the following” &lt;/li&gt;    &lt;li&gt;This is the part that I don’t think is that obvious. Drag over the Country attribute and then the Product Sub Category attribute onto the “attributes” node. This should give the following: &lt;/li&gt;    &lt;li&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_714AB1B9.png"&gt;&lt;img style="background-image:none;border-right-width:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_5C592F46.png" width="244" height="169" /&gt;&lt;/a&gt; &lt;/li&gt;    &lt;li&gt;As before, save the rule step, then publish the rule. &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Now a duplicate name will be permitted, but only within a country and sub category combination. If we do enter a duplicate value within a given Country/Product Sub Category group, then the following validation message is shown:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_3833D4B7.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_3833D4B7.png" width="428" height="57" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.adatis.co.uk/aggbug.aspx?PostID=11127" width="1" height="1"&gt;</content><author><name>Jeremy Kashel</name><uri>http://blogs.adatis.co.uk/members/Jeremy-Kashel.aspx</uri></author><category term="MDM" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/MDM/default.aspx" /><category term="Master Data Services" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Master+Data+Services/default.aspx" /><category term="MDS" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/MDS/default.aspx" /><category term="Master Data Management" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Master+Data+Management/default.aspx" /></entry><entry><title>Master Data Services SQL Server 2012 Vs 2008 R2</title><link rel="alternate" type="text/html" href="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/11/09/master-data-services-sql-server-2012-vs-2008-r2.aspx" /><id>http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/11/09/master-data-services-sql-server-2012-vs-2008-r2.aspx</id><published>2012-11-09T15:03:14Z</published><updated>2012-11-09T15:03:14Z</updated><content type="html">&lt;p align="left"&gt;I’ve given quite a few MDS demos recently and one question I seem to get asked often is “What features does MDS 2012 have compared to MDS 2008R2?”. As its happened quite a few times, I thought it would be a good idea to put a quick post together to explain the differences. The table below details all the features MDS has and compares the two versions:&lt;/p&gt;  &lt;div align="left"&gt;   &lt;table style="border-bottom:medium none;border-left:medium none;border-collapse:collapse;border-top:medium none;border-right:medium none;mso-border-alt:solid windowtext .5pt;mso-yfti-tbllook:1184;mso-padding-alt:0cm 5.4pt 0cm 5.4pt;mso-border-insideh:.5pt solid windowtext;mso-border-insidev:.5pt solid windowtext;" class="MsoTableMediumShading1Accent1" cellspacing="0" cellpadding="0" align="center"&gt;       &lt;tr style="mso-yfti-irow:-1;mso-yfti-firstrow:yes;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:windowtext 1pt solid;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#4f81bd;border-top:windowtext 1pt solid;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:accent1;"&gt;           &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:5;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="color:;mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;mso-themecolor:background1;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:11pt;" color="#ffffff"&gt;Feature&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color:;mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;mso-themecolor:background1;mso-bidi-font-weight:bold;"&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#4f81bd;border-top:windowtext 1pt solid;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:accent1;mso-border-left-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:1;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="color:;mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;mso-themecolor:background1;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:11pt;" color="#ffffff"&gt;MDS 2012&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color:;mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;mso-themecolor:background1;mso-bidi-font-weight:bold;"&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#4f81bd;border-top:windowtext 1pt solid;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:accent1;mso-border-left-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:1;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="color:;mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;mso-themecolor:background1;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:11pt;" color="#ffffff"&gt;MDS 2008 R2&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="color:;mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;mso-themecolor:background1;mso-bidi-font-weight:bold;"&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;        &lt;tr style="mso-yfti-irow:0;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:windowtext 1pt solid;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:68;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Front End&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l7 level1 lfo1;" class="MsoListParagraphCxSpFirst"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;New Silverlight UI added for the Explorer area. Better performance, with less clicks to get tasks done.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l7 level1 lfo1;" class="MsoListParagraphCxSpMiddle"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Excel Add-in introduced&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l7 level1 lfo1;" class="MsoListParagraphCxSpMiddle"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;HTML based ASP.NET implementation.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l7 level1 lfo1;" class="MsoListParagraphCxSpLast"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;No Excel Add-in&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;        &lt;tr style="mso-yfti-irow:1;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:windowtext 1pt solid;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:132;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Modelling&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l4 level1 lfo4;" class="MsoListParagraphCxSpFirst"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Carry out in the web UI, plus some tasks can be carried out in Excel&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l4 level1 lfo4;" class="MsoListParagraphCxSpMiddle"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Allows the auto generation of a code without using business rules&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l4 level1 lfo4;" class="MsoListParagraphCxSpLast"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Carry out modelling in the web UI only&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;        &lt;tr style="mso-yfti-irow:2;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:windowtext 1pt solid;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:68;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Hierarchies&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l2 level1 lfo2;" class="MsoListParagraphCxSpFirst"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Three types of hierarchies&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l2 level1 lfo2;" class="MsoListParagraphCxSpMiddle"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Manage hierarchies in the new Silverlight UI&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l2 level1 lfo2;" class="MsoListParagraphCxSpMiddle"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Three types of hierarchies&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l2 level1 lfo2;" class="MsoListParagraphCxSpLast"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Manage hierarchies in the older UI style&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;        &lt;tr style="mso-yfti-irow:3;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:windowtext 1pt solid;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:132;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Collections&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l2 level1 lfo2;" class="MsoListParagraphCxSpFirst"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Add members from Explicit Hierarchies or other Collections&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l2 level1 lfo2;" class="MsoListParagraphCxSpMiddle"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Maintain a weighting on a member by member basis&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l2 level1 lfo2;" class="MsoListParagraphCxSpLast"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Add members from Explicit Hierarchies or other Collections&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;        &lt;tr style="mso-yfti-irow:4;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:windowtext 1pt solid;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:68;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Staging Process&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l6 level1 lfo5;" class="MsoListParagraphCxSpFirst"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;A staging table is created per entity that you create in MDS. The table mirrors the exact structure that you see when you view the entity in the front end, making loading easier.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l6 level1 lfo5;" class="MsoListParagraphCxSpLast"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;A generic staging table is used for all entities. This means, for example, you must load attribute changes in attribute name/value pairs&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;        &lt;tr style="mso-yfti-irow:5;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:windowtext 1pt solid;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:132;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Deployment&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l1 level1 lfo7;" class="MsoListParagraphCxSpFirst"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Deploy the model structure from the front end.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l1 level1 lfo7;" class="MsoListParagraphCxSpMiddle"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Deploy the data from the new command line deployment tool&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l8 level1 lfo6;" class="MsoListParagraphCxSpLast"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Deploy model structure and data from the front end&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;        &lt;tr style="mso-yfti-irow:6;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:windowtext 1pt solid;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:68;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Security&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l8 level1 lfo6;" class="MsoListParagraphCxSpFirst"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Grant permissions to models, entities, attributes and attribute groups&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l8 level1 lfo6;" class="MsoListParagraphCxSpMiddle"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Security cleaned up and simplified (no longer necessary to grant permissions to hierarchies)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l8 level1 lfo6;" class="MsoListParagraphCxSpLast"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Grant permissions to models, entities, attributes, attribute groups and hierarchies&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;        &lt;tr style="mso-yfti-irow:7;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:windowtext 1pt solid;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:132;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Business Rules&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l8 level1 lfo6;" class="MsoListParagraphCxSpFirst"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Alter attribute values, validate data integrity, initiate workflow.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l8 level1 lfo6;" class="MsoListParagraphCxSpMiddle"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Some minor validation changes around using business rules to auto-generate Code values&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l8 level1 lfo6;" class="MsoListParagraphCxSpLast"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Alter attribute values, validate data integrity, initiate workflow.&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:128;" class="MsoNormal"&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;&amp;#160;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;        &lt;tr style="mso-yfti-irow:8;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:windowtext 1pt solid;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:68;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;SharePoint Integration&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l8 level1 lfo6;" class="MsoListParagraphCxSpFirst"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Initiate a SharePoint workflow from MDS business rules&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l8 level1 lfo6;" class="MsoListParagraphCxSpMiddle"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;New functionality to embed the web UI inside a SharePoint page&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l8 level1 lfo6;" class="MsoListParagraphCxSpLast"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Initiate a SharePoint workflow from MDS business rules&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:64;" class="MsoNormal"&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;&amp;#160;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;        &lt;tr style="mso-yfti-irow:9;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:windowtext 1pt solid;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:132;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Data Quality Services (DQS) Integration&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l3 level1 lfo8;" class="MsoListParagraphCxSpFirst"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Connect to a DQS matching policy from Excel, against MDS master data&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l3 level1 lfo8;" class="MsoListParagraphCxSpLast"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;No DQS capability, as DQS is new in SQL Server 2012&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;        &lt;tr style="mso-yfti-irow:10;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:windowtext 1pt solid;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:68;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Version Management&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l0 level1 lfo9;" class="MsoListParagraphCxSpFirst"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Create multiple copies of your master data and work with them independently as needed&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l0 level1 lfo9;" class="MsoListParagraphCxSpMiddle"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Some minor UI improvements have been added&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:13pt;text-indent:-18pt;margin:0cm 0cm 10pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l0 level1 lfo9;" class="MsoListParagraphCxSpLast"&gt;&lt;span style="line-height:10pt;font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="line-height:10pt;mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;As SQL 2012, create multiple copies of your master data and work with them independently as needed&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;        &lt;tr style="mso-yfti-irow:11;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:windowtext 1pt solid;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:132;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Transactions (auditing)&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l5 level1 lfo10;" class="MsoListParagraphCxSpFirst"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Transactions removed from Explorer and now are only available in Version Management&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l5 level1 lfo10;" class="MsoListParagraphCxSpMiddle"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Therefore users cannot reverse their own transactions, only administrators can do this&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l5 level1 lfo10;" class="MsoListParagraphCxSpMiddle"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Annotations are now permanent and cannot be deleted&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l5 level1 lfo10;" class="MsoListParagraphCxSpMiddle"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Transactions viewable in two areas, Explorer and Version Management&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l5 level1 lfo10;" class="MsoListParagraphCxSpMiddle"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Users can reverse their own transactions&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l5 level1 lfo10;" class="MsoListParagraphCxSpLast"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Annotations can be deleted&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;        &lt;tr style="mso-yfti-irow:12;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:windowtext 1pt solid;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:68;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Metadata&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l9 level1 lfo3;" class="MsoListParagraphCxSpFirst"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;No support to view Metadata – this is now a deprecated feature&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;background:#f2f2f2;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-background-themecolor:background1;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;mso-background-themeshade:242;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l9 level1 lfo3;" class="MsoListParagraphCxSpMiddle"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Customise the metadata for most objects in MDS&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:64;mso-add-space:auto;mso-list:l9 level1 lfo3;" class="MsoListParagraphCxSpLast"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;View metadata in the metadata explorer&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;        &lt;tr style="mso-yfti-irow:13;mso-yfti-lastrow:yes;"&gt;         &lt;td style="border-bottom:windowtext 1pt solid;border-left:windowtext 1pt solid;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;margin:0cm 0cm 0pt;mso-yfti-cnfc:132;" class="MsoNormal"&gt;&lt;b&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Installation &amp;amp; Configuration&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l9 level1 lfo3;" class="MsoListParagraphCxSpFirst"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Installation from the main SQL Server setup program&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;            &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l9 level1 lfo3;" class="MsoListParagraphCxSpMiddle"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Minor changes to the configuration settings&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;          &lt;td style="border-bottom:windowtext 1pt solid;border-left:medium none;padding-bottom:0cm;padding-left:5.4pt;padding-right:5.4pt;border-top:medium none;border-right:windowtext 1pt solid;padding-top:0cm;mso-border-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;"&gt;           &lt;p style="line-height:normal;text-indent:-18pt;margin:0cm 0cm 0pt 18pt;mso-yfti-cnfc:128;mso-add-space:auto;mso-list:l9 level1 lfo3;" class="MsoListParagraphCxSpLast"&gt;&lt;span style="font-family:;mso-bidi-font-family:symbol;mso-fareast-font-family:symbol;"&gt;&lt;span style="mso-list:ignore;"&gt;&lt;font face="Symbol"&gt;&lt;font style="font-size:9pt;"&gt;·&lt;/font&gt;&lt;/font&gt;&lt;span style="line-height:normal;font-family:;"&gt;&lt;font face="Times New Roman"&gt;&lt;font style="font-size:7pt;"&gt;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="mso-bidi-font-family:calibri;mso-bidi-theme-font:minor-latin;"&gt;&lt;font face="Calibri"&gt;&lt;font style="font-size:9pt;"&gt;Installation from the SQL Server media, but not included in the main setup program&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;         &lt;/td&gt;       &lt;/tr&gt;     &lt;/table&gt; &lt;/div&gt;  &lt;div align="center"&gt;&amp;#160;&lt;/div&gt;  &lt;div align="left"&gt;For me the improvements to the performance and the addition of the Excel Add-in are the most compelling reasons to upgrade. The great thing in particular about the Excel Add-in is that data stewards can manage data with the familiarity of Excel, but the data itself will be stored in SQL Server 2012.&lt;/div&gt;&lt;img src="http://blogs.adatis.co.uk/aggbug.aspx?PostID=10801" width="1" height="1"&gt;</content><author><name>Jeremy Kashel</name><uri>http://blogs.adatis.co.uk/members/Jeremy-Kashel.aspx</uri></author><category term="MDM" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/MDM/default.aspx" /><category term="Master Data Services" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Master+Data+Services/default.aspx" /><category term="MDS" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/MDS/default.aspx" /><category term="Master Data Management" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Master+Data+Management/default.aspx" /></entry><entry><title>Matching with Master Data Services, DQS and SSIS</title><link rel="alternate" type="text/html" href="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/10/11/matching-with-master-data-services-dqs-and-ssis.aspx" /><id>http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/10/11/matching-with-master-data-services-dqs-and-ssis.aspx</id><published>2012-10-11T16:34:37Z</published><updated>2012-10-11T16:34:37Z</updated><content type="html">&lt;p&gt;If you have an MDM requirement to consolidate multiple sources of Master Data together into a single golden record, then you have a few different ways to achieve this on the Microsoft platform. This blog post gives an overview of the different ways that various matching methods can be used in conjunction with Master Data Services for consolidation in Master Data Management, outlining the pros and cons of each option. In summary, the options are:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Data Quality Services (DQS) &lt;/li&gt;    &lt;li&gt;SQL Server Integration Services (SSIS) &lt;/li&gt;    &lt;li&gt;Plus Master Data Services itself has a few (not that well known) matching capabilities &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;strong&gt;Data Quality Services&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;A key requirement in all but the simplest MDM solutions is that the matching/consolidation must be carried out in an automated manner, with a Data Steward alerted to take action if needed (e.g. the matching engine incorrectly matches two customers, the Data Steward opens MDS and corrects this). This scenario would be hard to achieve with DQS, as it’s possible to automate the DQS cleaning, but it’s not possible to automate the DQS matching. This is something that I’ve raised connect issues about, &lt;a href="https://connect.microsoft.com/SQLServer/feedback/details/696741/dqs-access-matching-cleaning-via-web-service-or-other-endpoint" target="_blank"&gt;here&lt;/a&gt; and &lt;a href="https://connect.microsoft.com/SQLServer/feedback/details/695885/dqs-run-matching-policy-from-ssis" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;If your data to be matched into MDS is not coming in on a daily basis, and you therefore need to do more ad-hoc matching to produce your golden Master Data records, then DQS could be for you. The MDS Excel Add-in will give you the capability of matching data that you import into Excel with MDS members, harnessing the power of DQS. An overview of how this works is available &lt;a href="http://www.mssqltips.com/sqlservertip/2748/lets-explore-excel-addin-of-master-data-services-of-sql-server-2012--part-2/" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Integration Services&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;SSIS has been around for a long time now and, as many of you will know, contains fuzzy matching components. With the right MDS model design, its possible to carry out a batch based fuzzy match between your master records and end up with a mapping between your the records that exist in your source systems and your MDS golden records. The rough conceptual steps to do this are:&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;Load the new and changed records from the source systems into a staging area. &lt;/li&gt;    &lt;li&gt;Clean and standardise your data. This is actually something that DQS cleaning can help with.&lt;/li&gt;    &lt;li&gt;Query your staging area to get the new records that you want to insert/update into Master Data Services.&lt;/li&gt;    &lt;li&gt;Now the question arises, do we have an exact or close match for these records already in MDS? While the exact matches are easy to deal with, use the SSIS Fuzzy Lookup component to establish whether there are any approximate matches.&lt;/li&gt;    &lt;li&gt;Link the source records to master records (if the match is high enough) using MDS Domain Attributes.&lt;/li&gt;    &lt;li&gt;Carry out appropriate inserts and updates into MDS using the MDS staging tables.&lt;/li&gt;    &lt;li&gt;Ensure that a Data Steward is alerted in some way if necessary (e.g. if the match threshold is below x% confidence). This can be done with Email or MDS Notifications, for example.&lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;This process can run in batch overnight, with the Data Steward approving or rejecting the matches that SSIS has carried out the following morning. Whilst the above over-simplifies the process and technical work required, hopefully the process makes sense at a high level.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Master Data Services&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Although you cannot feed MDS your source data and get it to automatically carry out matching for you, it does actually contain the raw components in order to do this. By this I mean the MDS database contains an assembly called Microsoft.MasterDataServices.DataQuality, which gives you a number of &lt;a href="http://blog.hoegaerden.be/2011/02/05/finding-similar-strings-with-fuzzy-logic-functions-built-into-mds/" target="_blank"&gt;fuzzy matching T-SQL functions&lt;/a&gt;. These are called from the MDS front end when you carry out some filtering when viewing entities. Using them just for filtering in the front end really isn’t using the functions to their true capability, but thankfully you can use these functions in your own code.&lt;/p&gt;  &lt;p&gt;You can use the MDS T-SQL functions in a similar way to the conceptual SSIS method outlined above, in order to match and eliminate duplicates. In addition, the MDS web API can also be used to carry out a fuzzy match, as mentioned in &lt;a href="http://social.msdn.microsoft.com/Forums/en-US/sqlmds/thread/90ba166f-d791-4e07-8fad-389e3c533c89/" target="_blank"&gt;this forum post&lt;/a&gt;. Retrieving match candidates using a web service may be an attractive option if you’re trying to do real time MDM.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Essentially until it’s possible to automate DQS matching, we have a choice between SSIS and the MDS matching functions. The following &lt;a href="http://www.solidq.com/ce-en/News/Pages/Data-Quality-and-Master-Data-Management-with-Microsoft-SQL-Server-2008-R2.aspx" target="_blank"&gt;e-book&lt;/a&gt; gives a very detailed overview of the matches that both are capable of doing. The MDS T-SQL functions are more flexible than the SSIS fuzzy components as you can choose what fuzzy algorithm you want to use, but the SSIS components let you choose between Fuzzy Grouping and Fuzzy Lookup out of the box, without having to write SQL. Although I tend find that both give very good matching results, the MDS T-SQL functions produce slightly better matches in my experience, plus give you the option of trying different algorithms to suit different scenarios.&lt;/p&gt;  &lt;p&gt;It’s also worth mentioning that &lt;a href="http://www.profisee.com/" target="_blank"&gt;Profisee Maestro&lt;/a&gt; (full disclosure, we are a partner) integrates with MDS, offering its own matching algorithms. Maestro also has a front end with the ability to assist with survivorship and approval, which I think is a useful addition to MDS. Speaking of survivorship and approval, there are two options in MDS out-of-the box. The new Master Data Manager web front-end is much improved, but potentially the MDS Excel Add-In allows a bit more flexibility for survivorship carried out by a Data Steward, just due to its natural ability for filling/copying/pasting/filtering.&lt;/p&gt;  &lt;p&gt;So overall, due to the various improvements, Master Data Services is now capable of tackling more complex MDM scenarios than in the 2008 R2 version.&lt;/p&gt;&lt;img src="http://blogs.adatis.co.uk/aggbug.aspx?PostID=10491" width="1" height="1"&gt;</content><author><name>Jeremy Kashel</name><uri>http://blogs.adatis.co.uk/members/Jeremy-Kashel.aspx</uri></author><category term="Excel" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Excel/default.aspx" /><category term="MDM" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/MDM/default.aspx" /><category term="Master Data Services" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Master+Data+Services/default.aspx" /><category term="MDS" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/MDS/default.aspx" /><category term="Master Data Management" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Master+Data+Management/default.aspx" /><category term="SSIS" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/SSIS/default.aspx" /><category term="DQS" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/DQS/default.aspx" /><category term="Data Quality Services" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Data+Quality+Services/default.aspx" /></entry><entry><title>Analysis Services Member Properties and Excel</title><link rel="alternate" type="text/html" href="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/09/18/analysis-services-member-properties-and-excel.aspx" /><id>http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/09/18/analysis-services-member-properties-and-excel.aspx</id><published>2012-09-18T16:40:15Z</published><updated>2012-09-18T16:40:15Z</updated><content type="html">&lt;p&gt;When working with users who are browsing a cube using Excel 2010, a common requirement that I find is that the users want to create tabular or grid based reports. E.g. “I have a list of currencies, I want to display the currency code in an adjacent column”. Or “Here are my account codes, I want to also see the account type”.&lt;/p&gt;  &lt;p&gt;The common way that I see users attempt this is to stack attribute hierarchies on top of one another. For example, using Adventure Works, to get the currency names and codes together, I can stack the two attribute hierarchies:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_366981CE.png"&gt;&lt;img style="background-image:none;border-right-width:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_164E7511.png" width="171" height="66" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;This produces the following report:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_2F4A4556.png"&gt;&lt;img style="background-image:none;border-right-width:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_2F4A4556.png" width="244" height="156" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Not exactly what we want – ideally we want the currency codes in separate columns, on the same line as the name.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;An Alternative Approach&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;One well known way to achieve this layout is to right click on the relevant member and &lt;a href="http://office.microsoft.com/en-us/excel-help/display-or-hide-screentips-and-properties-in-a-pivottable-or-pivotchart-report-HA010177752.aspx" target="_blank"&gt;display its member properties&lt;/a&gt;, whereas another is to &lt;a href="http://office.microsoft.com/en-gb/excel-help/change-the-layout-and-format-of-a-pivottable-report-HP010342424.aspx#_Toc273370200" target="_blank"&gt;set the layout to Tabular Form&lt;/a&gt;. I tend to prefer the member properties route as I think it produces slightly better reports, so I’ll be covering a simple member properties design tip shortly. First of all, here’s the sort of report that I’m able to create using member properties:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_4846159B.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_76336853.png" width="329" height="93" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;I’m able to do this because the Adventure Works Source Currency Code Attribute Hierarchy has the Source Currency (names) as a member property. Therefore, I get the following option when I right click on the currency code:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_0F2F3899.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_0F2F3899.png" width="368" height="72" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Displaying member properties will only work if the attribute relationships are set up correctly. The reason that I’m able to see the member property ‘Source Currency’ is because of the following attribute relationship:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_282B08DE.png"&gt;&lt;img style="background-image:none;border-right-width:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_282B08DE.png" width="200" height="77" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;However, if we just display the currency name, using the Source Currency attribute hierarchy and then try and right click to see the currency code, we’ll unfortunately see nothing in the ‘Show Properties in Report’ submenu. This is because the currency name is a property of the code, rather than the other way around. I’d argue that for a user it’s intuitive to get the name from the code, or vice versa, as they sit at the same level. With a few simple changes we can achieve this, essentially by adding an extra attribute to the dimension…&lt;/p&gt;  &lt;p&gt;Within the dimension editor in BIDS, the first step is to add the new attribute. In this case it should be based on the Currency Code column that is, of course, already in use. That doesn’t matter, we want to use it twice. Therefore, I’ve created a new attribute called Currency Code and have set AttributeHierarchyEnabled = False, as there’s no need for anyone to browse this attribute. Now onto the all important attribute relationships. The attribute hierarchy that contains the names is called Source Currency. As it’s not possible to get the currency codes by right clicking on this attribute hierarchy, Source Currency is the attribute needs to be related to the new Currency Code attribute:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_4126D923.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_6F142BDB.png" width="327" height="56" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Finally, the end result for the user is that they now get the ability to easily get access to the currency codes by right clicking on the names:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_1D017E94.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_080FFC21.png" width="387" height="315" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.adatis.co.uk/aggbug.aspx?PostID=10464" width="1" height="1"&gt;</content><author><name>Jeremy Kashel</name><uri>http://blogs.adatis.co.uk/members/Jeremy-Kashel.aspx</uri></author><category term="Analysis Services" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Analysis+Services/default.aspx" /><category term="Excel" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Excel/default.aspx" /></entry><entry><title>Power View in SQL Server 2012 RTM</title><link rel="alternate" type="text/html" href="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/03/28/power-view-in-sql-server-2012-rtm.aspx" /><id>http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/03/28/power-view-in-sql-server-2012-rtm.aspx</id><published>2012-03-28T13:13:01Z</published><updated>2012-03-28T13:13:01Z</updated><content type="html">&lt;p&gt;Power View has been given a couple of small changes from RC0 to the RTM release:&lt;/p&gt;  &lt;p&gt;Firstly, you can now choose the colour of the various visualisations via the Themes section, which you’ll find on the new Styles ribbon tab:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_58C08984.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_0AB82A0F.png" width="458" height="99" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;This will allow you to change the colour for a slicer, table or card, whereas for a chart it will set the palette that gets used for the chart series. Surprisingly it seems to set the theme globally, rather than allowing you to set the colour/palette for a single object:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_6692CF7F.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_7F8E9FC4.png" width="409" height="164" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;The other change that I’ve noticed is that the Card visualisation now has a Style option on the ribbon:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_6A9D1D51.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_188A700A.png" width="231" height="128" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;This allows the cards to be displayed without normal coloured background, with a much larger font. So potentially useful for highlighting key numeric facts:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_4677C2C2.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_5F739307.png" width="272" height="364" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;I do really like Power View, in particular the clean look &amp;amp; feel, fast performance, export to PowerPoint and animations to name a few. However, even though RC0 added a lot of new features, I think it’s still missing some of the functionality offered by other reporting tools. I know that it’s marketed as a data visualisation tool rather than a reporting tool, but those lines will become a bit blurred for users. This is where Connect comes in…&lt;/p&gt;  &lt;p&gt;One connect suggestion that I’ve created is to &lt;a href="https://connect.microsoft.com/SQLServer/feedback/details/733379/power-view-drill-down-or-across-in-charts" target="_blank"&gt;allow drill down in Power View charts&lt;/a&gt;. If you’ve used Power View to perhaps spot a trend or spike in the data, then it makes sense for you to manipulate the view to find the root cause, which I think drill down would help with. Other suggestions that I think would be useful are &lt;a href="https://connect.microsoft.com/SQLServer/feedback/details/713781/heat-maps-would-be-great-in-power-view" target="_blank"&gt;heat maps&lt;/a&gt; and allowing Power View to &lt;a href="https://connect.microsoft.com/SQLServer/feedback/details/713196/enable-power-view-to-access-multidimensional-models" target="_blank"&gt;access multidimensional models&lt;/a&gt;. Please vote on Connect if you agree!&lt;/p&gt;&lt;img src="http://blogs.adatis.co.uk/aggbug.aspx?PostID=10328" width="1" height="1"&gt;</content><author><name>Jeremy Kashel</name><uri>http://blogs.adatis.co.uk/members/Jeremy-Kashel.aspx</uri></author><category term="SQL Server 2012" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/SQL+Server+2012/default.aspx" /><category term="Power View" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Power+View/default.aspx" /></entry><entry><title>DQS Matching Vs SSIS Fuzzy Grouping and Lookup</title><link rel="alternate" type="text/html" href="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/03/23/dqs-matching-vs-ssis-fuzzy-grouping-and-lookup.aspx" /><id>http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/03/23/dqs-matching-vs-ssis-fuzzy-grouping-and-lookup.aspx</id><published>2012-03-23T11:06:59Z</published><updated>2012-03-23T11:06:59Z</updated><content type="html">&lt;p&gt;When the term fuzzy matching comes up in the Microsoft world, it’s natural for anyone who’s used the BI stack to think of SQL Server Integration Services (SSIS), due to the fact that it has both Fuzzy Grouping and Fuzzy Matching components. Therefore, when using the matching in Data Quality Services (DQS) the other day, I thought it might be worth contrasting the matching capabilities in the two products.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Overview&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;The &lt;a href="http://msdn.microsoft.com/en-us/library/ms141764.aspx" target="_blank"&gt;SSIS Fuzzy Grouping transformation&lt;/a&gt; is typically used on a set of data containing duplicates, as it will operate across all of the rows, grouping similar rows together based on fuzzy comparisons, with a view to eliminating duplicates. In contrast, the &lt;a href="http://msdn.microsoft.com/en-us/library/ms137786.aspx" target="_blank"&gt;Fuzzy Lookup transformation&lt;/a&gt; takes a value in the SSIS pipeline and uses fuzzy matching to match the input value against a set of clean reference data in a database.&lt;/p&gt;  &lt;p&gt;The matching in DQS takes a set of data and groups the data into clusters, based on a number of rules and other factors, again with a view to removing duplicates. It’s therefore only directly comparable against the SSIS Fuzzy Grouping, rather than the Fuzzy Lookup.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Test Scenario&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;For the purposes of this blog post, I’ve got a sample query from AdventureWorksDW, taking data from the DimCustomer table. I’ve unioned all that data with a few sample records that contain typos. E.g. I’ve got &amp;#39;Pamela Fernndez&amp;#39; misspelt for one customer and &amp;#39;4610 Pinto Rd&amp;#39; instead of ‘Road’ for another. I’m going to attempt to de-duplicate data in SSIS first and then do the same thing in DQS to see if there is any difference.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;SSIS Fuzzy Grouping&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;As shown below, I’ve just got a very simple OLE DB source passing some data into a Fuzzy Grouping, then I’m going to examine the data via a data viewer:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/Control-flow_3F0A6550.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="Control flow" border="0" alt="Control flow" src="http://blogs.adatis.co.uk/blogs/jeremykashel/Control-flow_thumb_33E0DB06.png" width="168" height="198" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;The columns that I’m passing into the Fuzzy Grouping for the Customers are Full Name, Address Line 1, Gender and City just for the purposes of this blog post. I’ve configured the Fuzzy Grouping transform to carry out Fuzzy Matching on Address Line 1 and Full Name, as these are the most inconsistent (intentionally) across my made up data. I’ve also dropped the threshold right down to 0.40 to see a full range of matches that we may or may not get:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_4CDCAB4B.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_7AC9FE03.png" width="592" height="58" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;I’ve filtered the data for customers with a surname of Fernandez or a first name of Pamela, which includes two made up records. When I run the package, the data viewer produces the following results:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/Data-Viewer_78A4D73C.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="Data Viewer" border="0" alt="Data Viewer" src="http://blogs.adatis.co.uk/blogs/jeremykashel/Data-Viewer_thumb_3F8DFA3A.png" width="726" height="135" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;The _score column has a high score of 0.8245935, which is based on the similarity scores of FullName and AddressLine1. There are 3 records included in the cluster, including someone called ‘P Fernandez’ who is male. Although that’s been matched, it’s only because I decreased the threshold, plus it can easily be excluded by adding an exact match for Gender, as shown below:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/Gender_2CC19E8E.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="Gender" border="0" alt="Gender" src="http://blogs.adatis.co.uk/blogs/jeremykashel/Gender_thumb_5AAEF146.png" width="488" height="105" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;DQS Matching&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;So overall SSIS copes well with the test scenario, how does DQS compare?&lt;/p&gt;  &lt;p&gt;After &lt;a href="http://msdn.microsoft.com/en-us/library/hh510400(v=sql.110).aspx" target="_blank"&gt;creating a knowledge base&lt;/a&gt;, &lt;a href="http://msdn.microsoft.com/en-us/library/hh510413(v=sql.110).aspx" target="_blank"&gt;creating domains&lt;/a&gt; and &lt;a href="http://msdn.microsoft.com/en-us/library/hh510398(v=sql.110).aspx" target="_blank"&gt;carrying out knowledge discovery&lt;/a&gt;, it’s possible to use DQS to create a Matching Policy. The &lt;a href="http://msdn.microsoft.com/en-us/library/hh270290(v=sql.110).aspx" target="_blank"&gt;Matching Policy&lt;/a&gt; involves building a number of rules that determine how the data matches. The starting point in creating a matching rule is determining which domains you want to match on and whether they should be matched using the fuzzy algorithms (similar) or matched exactly:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/Rule-editor_45BD6ED3.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="Rule editor" border="0" alt="Rule editor" src="http://blogs.adatis.co.uk/blogs/jeremykashel/Rule-editor_thumb_73AAC18B.png" width="509" height="116" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;So not too dissimilar to SSIS. You then choose to give each domain a percentage weight, which must add up to 100%. For example, if you give Full Name a weight 30% and, when run, its match score is 61% accuracy, then you have Address Line 1 at a 70% weight and a 45% accuracy, then an overall match score for a row will be (0.3 * 0.61) + (0.7 * 0.45) = 49.8% match score.&lt;/p&gt;  &lt;p&gt;Starting off with a 50% weight on the two domains, I get the following results when operating on the same data:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/dqs-clusters_0CA691D1.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="dqs clusters" border="0" alt="dqs clusters" src="http://blogs.adatis.co.uk/blogs/jeremykashel/dqs-clusters_thumb_3A93E489.png" width="702" height="181" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;As with SSIS, it hasn’t got it quite right, but using the Gender domain will help. What I quite like in DQS is that I can flag a domain as being a pre-requisite:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_25A26216.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_538FB4CE.png" width="569" height="118" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Flagging a domain as a pre-requisite means that the domain will be used to eliminate matches, but will not contribute to the matching score. If I wanted it to contribute to the matching score I would just have to uncheck pre-requisite and give it a weight. Running the matching again gives the following results:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/dqs-results-2_3E9E325B.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="dqs results 2" border="0" alt="dqs results 2" src="http://blogs.adatis.co.uk/blogs/jeremykashel/dqs-results-2_thumb_6C8B8513.png" width="694" height="138" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;So the duplicate is correctly mapped with a score of 75%. Drilling down on the match was achieved is quite nice in DQS also:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_1A78D7CC.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_3374A811.png" width="481" height="140" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;This brings me to an interesting observation about the matching. I originally had my dummy record with a value of “3 Pierr Demoulainn” for the address. So in addition to having a typo in the second name and missing the word “Rue”, my other test also missed the second e out of the word “Pierre”. If I run my test data with these values, I get no matches at all. The lack of the second e in “Pierr” seems to have made all the difference. I &lt;em&gt;can&lt;/em&gt; get it to match if I give a lot of weighting to Full Name. If I do this, we see the following results:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/drill-down-2_1E83259E.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="drill down 2" border="0" alt="drill down 2" src="http://blogs.adatis.co.uk/blogs/jeremykashel/drill-down-2_thumb_4C707856.png" width="496" height="145" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Address Line 1 has been given a score of 0%. Making the same change to my test data and then running in SSIS gives different results. The similarity for the address drops from 0.81 to 0.75, but it certainly doesn’t drop to zero. Although it will depend massively on your own data, the matching in DQS seems a bit more stringent. This can be mitigated by using more domains for the matching, rather than the simple 2 or 3 domains that I’ve used. To back that statement up, using a &lt;a href="http://msdn.microsoft.com/en-us/library/hh510399(v=sql.110).aspx" target="_blank"&gt;composite domain&lt;/a&gt; on both Address Line 1 and City does yield a strong match (71%) for the same data.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;The rule based matching in DQS gives a lot of flexibility on how to weight matching across different domains. Coupled with the knowledge base components that interact with the matching, such as cleaning and Term-Based Relations, DQS has more features specifically aimed at matching than SSIS. It all depends on what sort of data you’re working with, but in theory, as you maintain the knowledge base over time, DQS should give you strong matches based on the knowledge you’ve given it.&lt;/p&gt;  &lt;p&gt;However, there are some drawbacks – it’s a shame that the matching can’t be automated (&lt;a href="http://connect.microsoft.com/SQLServer/feedback/details/695885/dqs-run-matching-policy-from-ssis" target="_blank"&gt;please vote for my connect suggestion if you agree&lt;/a&gt;). SSIS by its very nature can be automated, meaning the matching in SSIS will be more suitable for a lot of implementations. Secondly, I’d like to be able to match external records against correct values already in the knowledge base, rather than just doing a fuzzy grouping on the external records. I’m a bit surprised DQS can’t do a fuzzy lookup, maybe this will change in V2. Finally, as I’ve shown above, some of the matching results are a little unexpected, whereas in SSIS they were good pretty much straight away. To be fair to DQS this could probably be mitigated with a better choice of matching fields and also running cleaning against a fully populated knowledge base beforehand.&lt;/p&gt;&lt;img src="http://blogs.adatis.co.uk/aggbug.aspx?PostID=10320" width="1" height="1"&gt;</content><author><name>Jeremy Kashel</name><uri>http://blogs.adatis.co.uk/members/Jeremy-Kashel.aspx</uri></author><category term="SSIS" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/SSIS/default.aspx" /><category term="DQS" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/DQS/default.aspx" /><category term="Data Quality Services" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Data+Quality+Services/default.aspx" /></entry><entry><title>Mean, Median and Mode in MDX</title><link rel="alternate" type="text/html" href="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/03/19/mean-median-and-mode-in-mdx.aspx" /><id>http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/03/19/mean-median-and-mode-in-mdx.aspx</id><published>2012-03-19T11:25:28Z</published><updated>2012-03-19T11:25:28Z</updated><content type="html">&lt;p&gt;I recently delivered an Analysis Services training course to a client who were a bit surprised to learn that the standard list of Aggregation Functions for an Analysis Services measure doesn’t include Mean, Median and Mode. My answer was of course that all three can delivered using MDX, so I thought it might be a good blog post to show how it’s done.&lt;/p&gt;  &lt;p&gt;Before I begin, just a quick refresher for anyone who needs it, the &lt;a href="http://www.purplemath.com/modules/meanmode.htm" target="_blank"&gt;following article&lt;/a&gt; seems to be a good reference on the difference between Mean, Median and Mode. Essentially Mean is the average, Median is the middle value, whereas Mode is the value that occurs the most.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Mean and Median&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;The Mean and the Median are both relatively easy to do in MDX as there are built-in functions for both AVG() and Median(). As they’re well documented &lt;a href="http://msdn.microsoft.com/en-us/library/ms146067.aspx" target="_blank"&gt;here&lt;/a&gt; and &lt;a href="http://msdn.microsoft.com/en-us/library/ms145570.aspx" target="_blank"&gt;here&lt;/a&gt;, I won’t spend too long covering them. In the following MDX query I’m producing the Mean and the Median of the product sub categories in Adventure Works:&lt;/p&gt;  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;WITH 
MEMBER  &lt;/span&gt;[Measures].[Mean] &lt;span style="color:blue;"&gt;AS &lt;/span&gt;&lt;span style="color:maroon;"&gt;AVG&lt;/span&gt;([Product].[Subcategory].[Subcategory].&lt;span style="color:blue;"&gt;Members&lt;/span&gt;,
        [Measures].[Internet Sales Amount])

&lt;span style="color:blue;"&gt;MEMBER  &lt;/span&gt;[Measures].[Median] &lt;span style="color:blue;"&gt;AS &lt;/span&gt;&lt;span style="color:maroon;"&gt;Median&lt;/span&gt;([Product].[Subcategory].[Subcategory].&lt;span style="color:blue;"&gt;Members&lt;/span&gt;,
        [Measures].[Internet Sales Amount])

&lt;span style="color:blue;"&gt;SELECT  &lt;/span&gt;{[Measures].[Internet Sales Amount], [Measures].[Mean], [Measures].[Median]} &lt;span style="color:blue;"&gt;ON &lt;/span&gt;0,
        &lt;span style="color:maroon;"&gt;NonEmpty&lt;/span&gt;([Product].[Subcategory].[Subcategory].&lt;span style="color:blue;"&gt;Members&lt;/span&gt;, [Measures].[Internet Sales Amount]) &lt;span style="color:blue;"&gt;ON &lt;/span&gt;1
&lt;span style="color:blue;"&gt;FROM    &lt;/span&gt;[Adventure Works]
&lt;span style="color:blue;"&gt;WHERE   &lt;/span&gt;([Date].[Date].&amp;amp;[20070727])&lt;/pre&gt;

&lt;pre class="code"&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_6655BE87.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_463AB1CA.png" width="286" height="227" /&gt;&lt;/a&gt;&lt;/pre&gt;

&lt;p&gt;If you run the query and copy the data out to Excel you’ll see that it matches the result of Excel’s Median and Mode functions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Mode&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Mode is harder to achieve as there’s no built in MDX function. Fortunately, Excel is on hand to help out, as Analysis Services allows you to use some of the Excel functions in MDX. There are warnings that come with this approach, as you need to have Excel installed on the server and there can also be performance problems. But, if you’re comfortable with these caveats, then the Excel mode function may be an option for you.&lt;/p&gt;

&lt;p&gt;If you do use the Excel Mode function then there are a few things to watch out for. Firstly, you’ll have to use the MDX SetToArray() function to pass the set in the format that Excel expects. Secondly, you may get an error returned with the description: “#Error The following system error occurred:&amp;#160; Invalid flags.” This is due to the data type of the Measure – it seems that Currency measures are not supported by this function. Therefore, I’m using Cdbl() on Internet Sales Amount to get this to work:&lt;/p&gt;

&lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;WITH 
MEMBER  &lt;/span&gt;[Measures].[Demo] &lt;span style="color:blue;"&gt;AS &lt;/span&gt;Cdbl([Measures].[Internet Sales Amount])
    
&lt;span style="color:blue;"&gt;MEMBER  &lt;/span&gt;[Measures].[ExcelMode] &lt;span style="color:blue;"&gt;AS
        &lt;/span&gt;Excel!MODE(&lt;span style="color:maroon;"&gt;SetToArray&lt;/span&gt;(&lt;span style="color:maroon;"&gt;NONEMPTY&lt;/span&gt;([Product].[Subcategory].[Subcategory].&lt;span style="color:blue;"&gt;Members&lt;/span&gt;, [Measures].[Demo])
        * [Measures].[Demo]))&lt;/pre&gt;

&lt;p&gt;Applying this to the example query I’ve got above, the mode returned is 8.99, as its the only number that appears twice.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Bi Modal Result Set&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;There is a bit more complexity to Mode in some situations, essentially as you can get a bi-modal result set - where there is more than one value occurring the most. E.g. the mode of 1,2,2,3 is just 2, but the mode of 1,2,2,3,3,4 is both 2 and 3 – so it’s known as bi-modal.&lt;/p&gt;

&lt;p&gt;The Excel Mode function won’t help in this scenario, as it will just return one of the mode values. Interestingly Excel 2010 does support this, with the Mode.Mult() function, but I’ve been unable to get this to work, presumably as the Excel function returns an array.&lt;/p&gt;

&lt;p&gt;All is not lost though, it’s possible to produce mode using MDX. First of all, the numbers that I’m operating on are shown below. As you can see, there are two sets of two numbers that are the same:&lt;/p&gt;

&lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_5F36820F.png"&gt;&lt;img style="background-image:none;border-right-width:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_0D23D4C8.png" width="148" height="244" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;As the following &lt;a href="http://social.msdn.microsoft.com/forums/en-us/sqlanalysisservices/thread/C70DE994-5815-4B30-A10A-81518F784BD2" target="_blank"&gt;forum thread shows&lt;/a&gt;, mode can be achieved using MDX. I’m adapting that approach to give the following MDX:&lt;/p&gt;

&lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;WITH 
&lt;/span&gt;&lt;span style="color:green;"&gt;--Produce a result set that will guarantee bi modal results
&lt;/span&gt;&lt;span style="color:blue;"&gt;MEMBER    &lt;/span&gt;[Measures].[Demo] &lt;span style="color:blue;"&gt;AS
        CASE WHEN &lt;/span&gt;[Product].[Subcategory].&lt;span style="color:maroon;"&gt;CurrentMember &lt;/span&gt;&lt;span style="color:blue;"&gt;IS &lt;/span&gt;[Product].[Subcategory].&amp;amp;[31]  &lt;span style="color:blue;"&gt;THEN &lt;/span&gt;65.91
        &lt;span style="color:blue;"&gt;ELSE &lt;/span&gt;Cdbl([Measures].[Internet Sales Amount]) &lt;span style="color:blue;"&gt;END

&lt;/span&gt;&lt;span style="color:green;"&gt;--Count how often each value appears
&lt;/span&gt;&lt;span style="color:blue;"&gt;MEMBER &lt;/span&gt;[Measures].[ValueCount] &lt;span style="color:blue;"&gt;AS 
&lt;/span&gt;&lt;span style="color:maroon;"&gt;SUM&lt;/span&gt;( 
    &lt;span style="color:blue;"&gt;Union&lt;/span&gt;([Product].[Subcategory].&lt;span style="color:maroon;"&gt;CurrentMember&lt;/span&gt;.&lt;span style="color:blue;"&gt;Level&lt;/span&gt;.&lt;span style="color:blue;"&gt;Members&lt;/span&gt;,
        {[Product].[Subcategory].&lt;span style="color:maroon;"&gt;CurrentMember&lt;/span&gt;} &lt;span style="color:blue;"&gt;AS &lt;/span&gt;Currentsub)
    , &lt;span style="color:maroon;"&gt;IIF&lt;/span&gt;(([Product].[Subcategory].&lt;span style="color:maroon;"&gt;CurrentMember&lt;/span&gt;, [Measures].[Demo]) = 
        (Currentsub.&lt;span style="color:blue;"&gt;Item&lt;/span&gt;(0).&lt;span style="color:blue;"&gt;Item&lt;/span&gt;(0), [Measures].[Demo]), 1, &lt;span style="color:blue;"&gt;null&lt;/span&gt;)
)&lt;/pre&gt;

&lt;pre class="code"&gt;&lt;span style="color:green;"&gt;--Only get the items that appear the most
&lt;/span&gt;&lt;span style="color:blue;"&gt;SET &lt;/span&gt;[MaxModes] &lt;span style="color:blue;"&gt;AS 
    ORDER&lt;/span&gt;(&lt;span style="color:blue;"&gt;FILTER&lt;/span&gt;(&lt;span style="color:maroon;"&gt;NONEMPTY&lt;/span&gt;([Product].[Subcategory].[Subcategory].&lt;span style="color:blue;"&gt;Members&lt;/span&gt;, {[Measures].[Demo]}),
    [Measures].[ValueCount] = &lt;span style="color:maroon;"&gt;MAX&lt;/span&gt;(&lt;span style="color:maroon;"&gt;NONEMPTY&lt;/span&gt;([Product].[Subcategory].[Subcategory].&lt;span style="color:blue;"&gt;Members&lt;/span&gt;, [Measures].[Demo]), 
        [Measures].[ValueCount])), [Measures].[Demo], &lt;span style="color:blue;"&gt;ASC&lt;/span&gt;)

&lt;span style="color:blue;"&gt;SELECT   &lt;/span&gt;{[Measures].[Demo], [Measures].[ValueCount]} &lt;span style="color:blue;"&gt;on &lt;/span&gt;0,
        [MaxModes]
        &lt;span style="color:green;"&gt;--Filter out the duplicates 
        &lt;/span&gt;&lt;span style="color:blue;"&gt;HAVING &lt;/span&gt;[MaxModes].&lt;span style="color:maroon;"&gt;CurrentOrdinal &lt;/span&gt;= 0 &lt;span style="color:blue;"&gt;OR &lt;/span&gt;[Measures].[Demo] &amp;lt;&amp;gt; 
            ([Measures].[Demo], [MaxModes].&lt;span style="color:blue;"&gt;Item&lt;/span&gt;([MaxModes].&lt;span style="color:maroon;"&gt;CurrentOrdinal &lt;/span&gt;- 2)) &lt;span style="color:blue;"&gt;ON &lt;/span&gt;1
&lt;span style="color:blue;"&gt;FROM    &lt;/span&gt;[Adventure Works]
&lt;span style="color:blue;"&gt;WHERE    &lt;/span&gt;([Date].[Date].&amp;amp;[20070727])&lt;/pre&gt;

&lt;p&gt;This gives the following correct result set, assuming we just want the two bi modal values:&lt;/p&gt;

&lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_540CF7C5.png"&gt;&lt;img style="background-image:none;border-right-width:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_3F1B7552.png" width="222" height="82" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;An alternative is to use an MDX Filter() or HAVING clause to just display all the sub categories that have the mode values, which would just require a small modification to the above code.&lt;/p&gt;

&lt;p&gt;I’ve not used these approaches with big data volumes etc, but they should at least give you a few options if you’ve got to do these sort of calculations in your own environment.&lt;/p&gt;&lt;img src="http://blogs.adatis.co.uk/aggbug.aspx?PostID=10316" width="1" height="1"&gt;</content><author><name>Jeremy Kashel</name><uri>http://blogs.adatis.co.uk/members/Jeremy-Kashel.aspx</uri></author></entry><entry><title>Power View Default Field Set</title><link rel="alternate" type="text/html" href="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/02/23/power-view-default-field-set.aspx" /><id>http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/02/23/power-view-default-field-set.aspx</id><published>2012-02-23T11:57:10Z</published><updated>2012-02-23T11:57:10Z</updated><content type="html">&lt;p&gt;Here&amp;#39;s another quick tip when creating data models for use with Power View - Default Field Sets can be created in both Tabular SSAS and PowerPivot that give the user a shortcut for automatically adding multiple fields to a report.&lt;/p&gt;  &lt;p&gt;As an example, here&amp;#39;s a screenshot of the Default Field Set in PowerPivot - this will tell Power view that the following fields should be automatically selected when the table is added to a Power View report:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/Default-Field-Set-for-blog_5BAFA76A.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="Default Field Set for blog" border="0" alt="Default Field Set for blog" src="http://blogs.adatis.co.uk/blogs/jeremykashel/Default-Field-Set-for-blog_thumb_5FB9F53C.png" width="379" height="274" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;   &lt;br /&gt;I&amp;#39;d seen this in the documentation a while back, but hadn&amp;#39;t actually used it, nor could I see a way to select the table. In fact, although there&amp;#39;s no checkbox, it&amp;#39;s just a simple single click on the actual table name, as I’ve highlighted below:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_3B949AAD.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_26A3183A.png" width="171" height="185" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;When you click on the table name Product above, you will now get the following fields automatically added to a table visualisation:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_3F9EE87F.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_6D8C3B37.png" width="454" height="226" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;So not exactly rocket science, but worth doing! Here&amp;#39;s how to set up the Default Field set for &lt;a href="http://technet.microsoft.com/en-us/library/hh560541(v=sql.110).aspx"&gt;PowerPivot&lt;/a&gt; and &lt;a href="http://msdn.microsoft.com/en-us/library/hh479569(v=sql.110).aspx"&gt;Tabular Analysis Services&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://blogs.adatis.co.uk/aggbug.aspx?PostID=10311" width="1" height="1"&gt;</content><author><name>Jeremy Kashel</name><uri>http://blogs.adatis.co.uk/members/Jeremy-Kashel.aspx</uri></author><category term="Analysis Services" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Analysis+Services/default.aspx" /><category term="PowerPivot" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/PowerPivot/default.aspx" /><category term="Self Service BI" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Self+Service+BI/default.aspx" /><category term="BISM" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/BISM/default.aspx" /><category term="Tabular" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Tabular/default.aspx" /><category term="SQL Server 2012" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/SQL+Server+2012/default.aspx" /><category term="Power View" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Power+View/default.aspx" /></entry><entry><title>PowerPivot Settings for Power View</title><link rel="alternate" type="text/html" href="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/02/20/powerpivot-settings-for-power-view.aspx" /><id>http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2012/02/20/powerpivot-settings-for-power-view.aspx</id><published>2012-02-20T16:30:59Z</published><updated>2012-02-20T16:30:59Z</updated><content type="html">&lt;p&gt;I’ve been using both PowerPivot and Power View quite a bit recently and, &lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2011/11/29/working-with-images-in-power-view.aspx"&gt;in addition to the post I did a while back&lt;/a&gt;, have made a few further observations on getting the two to play nicely together.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Building an Example PowerPivot Model&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;For this post I’ve created a very very simple PowerPivot model, based on the Adventure Works Internet Sales Fact table and its related tables. What this means is that after the model is built, I can build a variety of Excel reports that summarise the measures in the FactInternetSales Adventure Works fact table, such as Sales Amount, Tax Amount or Order Quantity. In the example below I’ve built a very basic report showing Order Quantity by year:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/Excel-report_1CE96495.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="Excel report" border="0" alt="Excel report" src="http://blogs.adatis.co.uk/blogs/jeremykashel/Excel-report_thumb_63D28792.png" width="244" height="155" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;On to Power View&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Having already published the workbook to SharePoint, my task now is to create a Power View report, which can be done via the PowerPivot Gallery. If wanted to try and create a visual version of the above report in Power View (E.g. a graph), my steps would be to do first of all drag Calendar Year into the report, then Order Quantity. However, when doing this recently, the result wasn’t quite what I expected:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/Table-Without-Sum_7CCE57D7.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="Table Without Sum" border="0" alt="Table Without Sum" src="http://blogs.adatis.co.uk/blogs/jeremykashel/Table-Without-Sum_thumb_67DCD564.png" width="193" height="163" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Order Quantity has not been summed at all, which is the opposite behaviour to that of PowerPivot. Consequently I can’t create a graph visualisation, because Power View thinks I don’t have any measures in my report:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/Greyed-Out-Visualisations_15CA281D.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="Greyed Out Visualisations" border="0" alt="Greyed Out Visualisations" src="http://blogs.adatis.co.uk/blogs/jeremykashel/Greyed-Out-Visualisations_thumb_43B77AD5.png" width="547" height="137" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Yet if we contrast this to measures such as Internet Sales Amount or Tax Amount, they all work fine. Upon looking at the field list for Internet Sales, we will see that Order Quantity is missing the sum symbol, as Power View has not interpreted it as a measure:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_2EC5F862.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;margin:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_47C1C8A7.png" width="176" height="215" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;We can get around this in Power View with a bit of dragging and dropping, but we may as well look why it’s happened in the first place. The reason for this is the way in which the PowerPivot import wizard interprets SQL data types. The OrderQuantity column in the FactInternetSales SQL table has a data type of Smallint, which will not be summarised by default in Power View. Decimal and Money types are fine, hence why Tax Amount and Sales Amount above look ok.&lt;/p&gt;  &lt;p&gt;Rather than changing the data types, we can force Power View to interpret the column as a measure by going to the PowerPivot advanced tab and clicking on Summarize By. If the Summarize By value is changed from Default to Sum, then Power View will interpret the column as a measure:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_239C6E18.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_0EAAEBA5.png" width="267" height="231" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;If we republish the model and then go back to Power View, we will see quite a difference with the same actions as before. First of all the field list is looking correct: &lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/Summarize-By-After_3C983E5D.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="Summarize By After" border="0" alt="Summarize By After" src="http://blogs.adatis.co.uk/blogs/jeremykashel/Summarize-By-After_thumb_27A6BBEA.png" width="175" height="212" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Secondly, only dragging Calendar Year and Order Quantity will now give the following correct results:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/Table-With-Sum-After_6E8FDEE7.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="Table With Sum After" border="0" alt="Table With Sum After" src="http://blogs.adatis.co.uk/blogs/jeremykashel/Table-With-Sum-After_thumb_1C7D31A0.png" width="212" height="177" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Now that we have a measure, it means that we can now change the table into a visualisation of our choice:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/Visualisations-Enabled_078BAF2D.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="Visualisations Enabled" border="0" alt="Visualisations Enabled" src="http://blogs.adatis.co.uk/blogs/jeremykashel/Visualisations-Enabled_thumb_357901E5.png" width="429" height="108" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Power View is the kind of product that power users are hopefully going to find intuitive, but we can make things even easier for users by making small changes like this.&lt;/p&gt;&lt;img src="http://blogs.adatis.co.uk/aggbug.aspx?PostID=10308" width="1" height="1"&gt;</content><author><name>Jeremy Kashel</name><uri>http://blogs.adatis.co.uk/members/Jeremy-Kashel.aspx</uri></author><category term="Excel" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Excel/default.aspx" /><category term="PowerPivot" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/PowerPivot/default.aspx" /><category term="SharePoint" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/SharePoint/default.aspx" /><category term="Power View" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Power+View/default.aspx" /></entry><entry><title>Master Data Services in SQL Server 2012 RC0</title><link rel="alternate" type="text/html" href="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2011/11/30/master-data-services-in-sql-server-2012-rc0.aspx" /><id>http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2011/11/30/master-data-services-in-sql-server-2012-rc0.aspx</id><published>2011-11-30T13:31:34Z</published><updated>2011-11-30T13:31:34Z</updated><content type="html">&lt;p&gt;There’s been a whole host of changes to MDS in the &lt;a href="http://www.microsoft.com/download/en/details.aspx?id=28145&amp;amp;WT.mc_id=rss_alldownloads_all" target="_blank"&gt;SQL Server 2012 RC (Release Candidate) 0&lt;/a&gt; that came out the other week. This blog post gives an overview of the changes, before diving into detail on a few of them. At a high level, the following changes have been made to MDS:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Improved Master Data Manager front screen UI and navigation paths &lt;/li&gt;    &lt;li&gt;Collections interface updated to Silverlight &lt;/li&gt;    &lt;li&gt;Improved Excel user interface &amp;amp; functionality &lt;/li&gt;    &lt;li&gt;Auto generation of entity code values, without using business rules &lt;/li&gt;    &lt;li&gt;New deployment tool &lt;/li&gt;    &lt;li&gt;SharePoint integration &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Let’s take a look at each of these changes:&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Improved Master Data Manager UI&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Although the UI improvement (shown below) is good, the best thing about the Master Data Manager changes, in my opinion, is that clicking on the Explorer feature no longer takes you into the Model View, but instead takes you straight into your master data for your core entity (e.g. in a Customer model this entity would be Customer). I’m not sure if this would get a bit frustrating if you didn’t want the core entity, but then again everything seems very quick in RC0, so I don’t think it’s really going to matter.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/Front-screen_72D8B875.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="Front screen" border="0" alt="Front screen" src="http://blogs.adatis.co.uk/blogs/jeremykashel/Front-screen_thumb_17F602E2.png" width="355" height="359" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;There’s also a new button next to a domain-based attribute that apparently has been designed to &lt;a href="http://social.technet.microsoft.com/wiki/contents/articles/5648.aspx" target="_blank"&gt;help with Many-to-Many relationships&lt;/a&gt;. I can definitely see that working, but it’s useful to have anyway to jump to the member details for the domain based attribute that you are viewing, many-to-many or not:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_0AAF79CF.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_03240A62.png" width="352" height="90" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Collections Interface Updated to Silverlight&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;The collections interface is now much slicker, getting the Silverlight makeover seen in other areas of Master Data Manager. Switching between collections, for example, which could take a while in R2, now happens very quickly, making collections far more useable. The screen shot below shows how you edit collection members by picking members from one of the entities and adding those over into the collection by clicking the Add button:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_1B4774BD.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_32FEAC23.png" width="703" height="226" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Collections now have the concept of a Weight, meaning that you can alter the weighting value associated with the collection members, which could be useful for reporting purposes. The idea is that you extract the collection members and the weight values in a subscription view. A Weight column is actually included in the 2008 R2 collection subscription views, but there was no front end to modify the weight value, which has of course now changed:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_09A76425.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_170D772B.png" width="340" height="75" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Improved Excel User Interface and Functionality&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;The MDS Excel Ribbon has been given a makeover, meaning that you now see the following in the ribbon:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/Excel-toolbar_5D1E343E.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="Excel toolbar" border="0" alt="Excel toolbar" src="http://blogs.adatis.co.uk/blogs/jeremykashel/Excel-toolbar_thumb_5B013575.png" width="721" height="121" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;It’s interesting to see that the Favourites section has been replaced with the concept of ‘queries’. The idea is that you can send a query file via email to another user, providing that user has the Excel add-in. When the user double clicks on the query file (extension *.mdsqx), Excel will open and make a connection to MDS, using the connection and filter information provided in the file. This will result in Excel opening, with the user prompted if they would like to connect to MDS:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/confirm-connection_55EED1F9.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="confirm connection" border="0" alt="confirm connection" src="http://blogs.adatis.co.uk/blogs/jeremykashel/confirm-connection_thumb_6E123C54.png" width="266" height="143" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;It’s also good to see that a few of the domain-based attribute issues have been addressed, namely the display of domain-based attribute names when you filter an entity and also the display of the names and the codes together in the Excel sheet. Here’s a screen shot of the how the attribute names are now visible when filtering the Country domain-based attribute that exists in the Customer model:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_5A84DCB3.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_4BDA30CE.png" width="403" height="197" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Auto Generation of Entity Code Values&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;If you wanted the code to be auto-generated in 2008 R2, you had to use a business rule. You can still do that if you want, but the create entity admin screen has changed slightly to include an option to auto generate the code. This works slightly better than business rules in my opinion, at least as far as the Excel add-in is concerned, as the code is returned to the user immediately after publishing, whereas the business rules require you to do a refresh in Excel and of course need more development! Here’s a screenshot of the add entity screen:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_7163AE2F.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_49BD3205.png" width="267" height="206" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;New Deployment Tool&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Deployment has been altered in SQL 2012, with the addition of a &lt;a href="http://msdn.microsoft.com/en-us/library/ff486956(v=SQL.110).aspx" target="_blank"&gt;new deployment tool&lt;/a&gt;, plus the fact that subscription views now get deployed. It seems that the current R2 deployment method (in the Administration section of Master Data Manager) is still included but now will not deploy data. To do that you need to use MDSModelDeploy.exe, as explained &lt;a href="http://msdn.microsoft.com/en-us/library/hh479646(v=SQL.110).aspx" target="_blank"&gt;here&lt;/a&gt;. As an example, here’s how you can deploy the sample Customer model using MDSModelDeploy.exe, for default installations:&lt;/p&gt;  &lt;blockquote&gt;   &lt;p&gt;MDSModelDeploy deploynew –package “C:\Program Files\Microsoft SQL Server\110\Master Data Services\Samples\customer_en.pkg” –model “Customer” –service “MDS1”&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;&lt;strong&gt;SharePoint Integration and Further Details&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Master Data Manager now supports a set of parameters that allow the MDS UI to be displayed without the header, menu bar and padding area. This means that MDS can now be incorporated into SharePoint or other websites. For the details on this, as well as more details on the above points, take a look at the following &lt;a href="http://social.technet.microsoft.com/wiki/contents/articles/5648.aspx" target="_blank"&gt;Technet article&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://blogs.adatis.co.uk/aggbug.aspx?PostID=10075" width="1" height="1"&gt;</content><author><name>Jeremy Kashel</name><uri>http://blogs.adatis.co.uk/members/Jeremy-Kashel.aspx</uri></author><category term="MDM" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/MDM/default.aspx" /><category term="Master Data Services" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Master+Data+Services/default.aspx" /><category term="MDS" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/MDS/default.aspx" /><category term="Master Data Management" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Master+Data+Management/default.aspx" /><category term="SQL Server 2012" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/SQL+Server+2012/default.aspx" /></entry><entry><title>Working with Images in Power View</title><link rel="alternate" type="text/html" href="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2011/11/29/working-with-images-in-power-view.aspx" /><id>http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2011/11/29/working-with-images-in-power-view.aspx</id><published>2011-11-29T13:04:31Z</published><updated>2011-11-29T13:04:31Z</updated><content type="html">&lt;p&gt;Power View includes several ways to create visualisations with images, ranging from a simple table, to the scrollable tile visualisation. In this post I’m going to explain a bit about the tile visualisation, showing how it can be used in Power View, before showing a couple of tips for working with images in both PowerPivot and Analysis Services Tabular models.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Power View Tiles&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;The Power View Tiles visualisation allows you to display a scrollable series of images, which, when clicked on, will display data of your choosing. The report below is an example of this:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_41F4FB4E.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_3AD5BED6.png" width="592" height="372" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;What’s nice about the View above is that the names of the products are automatically displayed underneath the images. This is a sensible place to display the product names, as it means the area below can focus on whatever product level data you want, in this case Revenue by Month for the selected product.&lt;/p&gt;  &lt;p&gt;This works fine in the sample models (in my case the Tailspin Toys model that I think came with CTP3) but it wont work in vanilla PowerPivot / Tabular models unless you configure a few model settings. Trying to reproduce the report above without these settings will give the following tile visualisation, minus the product names:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_16B06447.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_2FAC348C.png" width="362" height="132" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;PowerPivot Advanced Settings&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;To address this in PowerPivot, you first of all need to switch to Advanced Mode, which you can do by selecting this option from the File menu in PowerPivot:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_1ABAB219.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_48A804D1.png" width="244" height="193" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;This gives you the following advanced tab:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_61A3D516.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_0F9127CF.png" width="311" height="88" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Clicking on the highlighted Table Behaviour button in the ribbon gives you the following Table Behaviour window:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_7A9FA55B.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_288CF814.png" width="429" height="306" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Here you can “change the default behaviour for different visualisation types and default grouping behaviour in client tools for this table”. The following properties should be set in order to get the tiles working correctly:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;strong&gt;Row Identifier&lt;/strong&gt; – Specifies a column that only contains unique values, which allows the column to be used as an internal grouping key in client tools. &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Default Label &lt;/strong&gt;– Specifies which column gives a row level display name, e.g. the product name in a Product table. This is key, as when a row level image is used, this property specifies which value to display alongside the image in tiles and other image-based visualisation. &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;Default Image&lt;/strong&gt; – Specifies which column contains images representing the row level data, e.g. pictures of products. &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;The full details for all these properties can be found &lt;a href="http://msdn.microsoft.com/en-us/library/hh560542(v=SQL.110).aspx" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Tabular Models&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;Tabular Models contain the same properties, which can be edited when you open a tabular project in the new SQL Server Data Tools. The image below shows how the properties have been configured for the column in my model called Image:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_4188C859.png"&gt;&lt;img style="background-image:none;border-right-width:0px;padding-left:0px;padding-right:0px;display:inline;border-top-width:0px;border-bottom-width:0px;border-left-width:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_6F761B11.png" width="202" height="289" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Back to Power View&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;If we now build a tile visualisation using the image column, we will see that we get the names of the products returned along with the image. It’s also worth noting that the Image and Product Name columns have now have an icon next to them, indicating that the field exhibits &lt;a href="http://technet.microsoft.com/en-us/library/hh231518(SQL.110).aspx" target="_blank"&gt;“row level” behaviour&lt;/a&gt;:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_365F3E0F.png"&gt;&lt;img style="background-image:none;border-bottom:0px;border-left:0px;padding-left:0px;padding-right:0px;display:inline;border-top:0px;border-right:0px;padding-top:0px;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_216DBB9C.png" width="483" height="185" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Finally, for some examples of what’s new in Power View SQL 2012 RC0 take a look at &lt;a href="http://blogs.msdn.com/b/sqlrsteamblog/archive/2011/11/17/what-s-new-in-power-view.aspx" target="_blank"&gt;this post&lt;/a&gt; on the Reporting Services Team Blog.&lt;/p&gt;&lt;img src="http://blogs.adatis.co.uk/aggbug.aspx?PostID=10068" width="1" height="1"&gt;</content><author><name>Jeremy Kashel</name><uri>http://blogs.adatis.co.uk/members/Jeremy-Kashel.aspx</uri></author><category term="Analysis Services" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Analysis+Services/default.aspx" /><category term="PowerPivot" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/PowerPivot/default.aspx" /><category term="BISM" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/BISM/default.aspx" /><category term="Tabular" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Tabular/default.aspx" /><category term="SQL Server 2012" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/SQL+Server+2012/default.aspx" /><category term="Power View" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Power+View/default.aspx" /></entry><entry><title>Managing SSAS Named Sets with Master Data Services Collections</title><link rel="alternate" type="text/html" href="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2011/11/07/managing-ssas-named-sets-with-master-data-services-collections.aspx" /><id>http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2011/11/07/managing-ssas-named-sets-with-master-data-services-collections.aspx</id><published>2011-11-07T17:04:00Z</published><updated>2011-11-07T17:04:00Z</updated><content type="html">&lt;p&gt;Master Data Services &lt;a href="http://msdn.microsoft.com/en-us/library/ee633733.aspx" target="_blank"&gt;Collections&lt;/a&gt; are probably not the first feature that come to mind when you think of the MDS product. The hierarchies and member grids tend to be the core functionality, but as this post will hopefully show, MDS Collections are useful also.&lt;/p&gt;  &lt;p&gt;Collections are essentially managed lists of members that can come from multiple different MDS explicit hierarchies, or also from another collection. The idea is that this “subset of members” can be maintained in MDS by a business user and then fed to external applications for reporting or other purposes.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Analysis Services Named Sets&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;One example of how collections can be used is to maintain Analysis Services named sets. Some named sets, such as a Top 50 Customers, don&amp;#39;t require any maintenance, as it’s just the top 50 of all customers, based on a particular measure. On the other hand, sometimes named sets can be static lists, e.g. a list of core products that the user wants to see for reporting.&lt;/p&gt;  &lt;p&gt;In the latter example, if a user wants the definition of a named set to change, they have to get IT to change the MDX script. MDS collections can help by allowing the user to control the named set definition, reducing the burden on IT.&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Example Scenario&lt;/strong&gt;&amp;nbsp;&lt;/p&gt;  &lt;p&gt;Here’s an example of how this is done. First of all, the end game is that I have a named set in Analysis Services that is currently just for 3 products. Therefore, a user can easily drop this set into an Excel report to get quick access to the products that are important to them:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_3AD09CE1.png"&gt;&lt;img style="border:0px currentColor;padding-top:0px;padding-right:0px;padding-left:0px;display:inline;background-image:none;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_6132802C.png" width="343" height="114" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;So the challenge is that we need to find some way of extending this named set without doing it manually. This is where MDS starts to come in, so using the sample Product model that comes with MDS, I’ve created a new collection called Favourite Products, as shown in the image below:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_0008F40B.png"&gt;&lt;img style="border:0px currentColor;padding-top:0px;padding-right:0px;padding-left:0px;display:inline;background-image:none;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_033ADBF3.png" width="454" height="173" /&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;If I go and edit the Favourite Products collection in MDS, then I can drag and drop more products into this collection, or remove some existing members. In this case, I’ve chosen to add two new products:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_01F64314.png"&gt;&lt;img style="border:0px currentColor;padding-top:0px;padding-right:0px;padding-left:0px;display:inline;background-image:none;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_1D2E9C15.png" width="380" height="172" /&gt;&lt;/a&gt;&lt;/p&gt;    &lt;p&gt;&lt;strong&gt;C#, AMO and the MDS API&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;So the named set represents the target that we need to get to, whereas the MDS collection that’s shown is the source. To get the contents of the MDS collection to update the named set, one way of doing it is to use the MDS API to pick up the collection members, and then to use AMO in order to write the named set into the MDX script. I’m just doing this in a C# windows application, but you could do it via a batch process, such as SSIS. For this post I’m just going to show the code, so here goes:&lt;/p&gt;  &lt;p&gt;This post is already starting to feel too long so I’m not going to show the basics of the MDS API. For that, take a look at a good posting by the MDS Team blog &lt;a href="http://sqlblog.com/blogs/mds_team/archive/2010/01/12/getting-started-with-the-web-services-api-in-sql-server-2008-r2-master-data-services.aspx" target="_blank"&gt;here&lt;/a&gt;. Also, as anyone who knows me will no doubt agree, I don’t tend to get involved in doing C#, so don’t consider this to be production ready! It should give you an idea of the basics though. Anyway, assuming that we’re now connected to the MDS Web Service, I’ve created the following method that will return the members from the collection:&lt;/p&gt;  &lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;private &lt;/span&gt;&lt;span&gt;HierarchyMembers &lt;/span&gt;ObtainHierarchyMembers(&lt;span style="color:blue;"&gt;string &lt;/span&gt;entityId, &lt;span style="color:blue;"&gt;string &lt;/span&gt;hierarchyId, &lt;span style="color:blue;"&gt;string &lt;/span&gt;modelId, &lt;span style="color:blue;"&gt;string &lt;/span&gt;versionId)
{
    &lt;span&gt;HierarchyMembersGetRequest &lt;/span&gt;request = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span&gt;HierarchyMembersGetRequest&lt;/span&gt;();
    &lt;span&gt;HierarchyMembersGetResponse &lt;/span&gt;response = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span&gt;HierarchyMembersGetResponse&lt;/span&gt;();
    request.HierarchyMembersGetCriteria = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span&gt;HierarchyMembersGetCriteria&lt;/span&gt;();

    &lt;span style="color:green;"&gt;//State that our hierarhcy type is a collection and that we want collection members
    &lt;/span&gt;request.HierarchyMembersGetCriteria.HierarchyType = &lt;span&gt;HierarchyType&lt;/span&gt;.Collection;
    &lt;span style="color:green;"&gt;//Pass in the key search criteria to identify the correct collection in MDS
    &lt;/span&gt;request.HierarchyMembersGetCriteria.ParentEntityId = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span&gt;Identifier &lt;/span&gt;{ Name = entityId };
    request.HierarchyMembersGetCriteria.HierarchyId = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span&gt;Identifier &lt;/span&gt;{ Name = hierarchyId };
    request.HierarchyMembersGetCriteria.ModelId = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span&gt;Identifier &lt;/span&gt;{ Name = modelId };
    request.HierarchyMembersGetCriteria.VersionId = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span&gt;Identifier &lt;/span&gt;{ Name = versionId };

    request.HierarchyMembersGetCriteria.RowLimit = 50;
    request.International = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span&gt;International&lt;/span&gt;();
    &lt;span&gt;OperationResult &lt;/span&gt;result = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span&gt;OperationResult&lt;/span&gt;();
    &lt;span style="color:green;"&gt;//Return the hierarchy members from the service
    &lt;/span&gt;&lt;span style="color:blue;"&gt;return &lt;/span&gt;service.HierarchyMembersGet(request.International, request.HierarchyMembersGetCriteria, &lt;span style="color:blue;"&gt;out &lt;/span&gt;result);
}&lt;/pre&gt;

&lt;p&gt;Before we use the above method, we need to connect to SSAS using AMO. That can be done quite easily with the following code:&lt;/p&gt;

&lt;pre class="code"&gt;&lt;span&gt;Server &lt;/span&gt;server = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span&gt;Server&lt;/span&gt;();
&lt;span style="color:blue;"&gt;string &lt;/span&gt;connection = &lt;span&gt;&amp;quot;Data Source=.;Catalog=Adventure Works DW 2008R2;&amp;quot;&lt;/span&gt;;
server.Connect(connection);&lt;/pre&gt;

&lt;p&gt;After we’ve done all the usual error handling associated with connecting to a database, we need to pick up the SSAS database and cube:&lt;/p&gt;

&lt;pre class="code"&gt;&lt;span&gt;Database &lt;/span&gt;database = server.Databases[&lt;span&gt;&amp;quot;Adventure Works DW 2008R2&amp;quot;&lt;/span&gt;];
&lt;span&gt;Cube &lt;/span&gt;cube = database.Cubes[&lt;span&gt;&amp;quot;Adventure Works&amp;quot;&lt;/span&gt;];&lt;/pre&gt;

&lt;p&gt;Now we’re ready to call our ObtainHierarchyMembers method, before looping through it to build the named set:&lt;/p&gt;

&lt;pre class="code"&gt;&lt;span&gt;StringBuilder &lt;/span&gt;mdx = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span&gt;StringBuilder&lt;/span&gt;(&lt;span&gt;&amp;quot;\n//Auto generated named set at &amp;quot; &lt;/span&gt;+ &lt;span&gt;DateTime&lt;/span&gt;.Now.ToString() + 
    &lt;span&gt;&amp;quot;\nCREATE SET CurrentCube.[Favourite Products] AS {&amp;quot;&lt;/span&gt;);
&lt;span style="color:blue;"&gt;int &lt;/span&gt;count = 1;
&lt;span style="color:green;"&gt;//Loop through the collection to build the mdx
&lt;/span&gt;&lt;span style="color:blue;"&gt;foreach &lt;/span&gt;(&lt;span&gt;ParentChild &lt;/span&gt;pc &lt;span style="color:blue;"&gt;in &lt;/span&gt;hm.Members)
{
    &lt;span style="color:green;"&gt;//Add the members to the MDX string
    //This references the member by name
    //It would be possible to reference by member key, but would require more work
    &lt;/span&gt;mdx.Append(&lt;span&gt;&amp;quot;[Product].[Product].[&amp;quot; &lt;/span&gt;+ pc.Child.Name + &lt;span&gt;&amp;quot;]&amp;quot;&lt;/span&gt;);
    &lt;span style="color:blue;"&gt;if &lt;/span&gt;(count &amp;lt; hm.Members.Count())
    {
        mdx.Append(&lt;span&gt;&amp;quot;, &amp;quot;&lt;/span&gt;);
    }
    count++;
}
mdx.Append(&lt;span&gt;&amp;quot;};&amp;quot;&lt;/span&gt;);&lt;/pre&gt;


&lt;p&gt;Now we need to insert the named set in the correct place within the existing MDX script, bearing in mind it could already exist:&lt;/p&gt;

&lt;pre class="code"&gt;&lt;span style="color:blue;"&gt;string &lt;/span&gt;currentScript = cube.MdxScripts[0].Commands[0].Text;
&lt;span style="color:green;"&gt;//Find the correct place to insert the named set within the MDX script:
&lt;/span&gt;&lt;span style="color:blue;"&gt;int &lt;/span&gt;start = currentScript.IndexOf(&lt;span&gt;&amp;quot;\n//Auto generated named set at&amp;quot;&lt;/span&gt;);
&lt;span style="color:blue;"&gt;int &lt;/span&gt;end = 0;
&lt;span&gt;StringBuilder &lt;/span&gt;newScript = &lt;span style="color:blue;"&gt;new &lt;/span&gt;&lt;span&gt;StringBuilder&lt;/span&gt;(currentScript);
&lt;span style="color:blue;"&gt;if &lt;/span&gt;(start != -1)
{
    end = currentScript.IndexOf(&lt;span&gt;&amp;quot;;&amp;quot;&lt;/span&gt;, start);
    &lt;span style="color:green;"&gt;//If the named set already exists, remove it
    &lt;/span&gt;newScript.Remove(start, end - start + 1);
}
&lt;span style="color:blue;"&gt;else
&lt;/span&gt;{
    start = currentScript.Length;
}
&lt;span style="color:green;"&gt;//Insert the named set in the correct place
&lt;/span&gt;newScript.Insert(start, mdx.ToString());
&lt;span style="color:green;"&gt;//Update the cube&amp;#39;s MDX script
&lt;/span&gt;cube.MdxScripts[0].Commands[0].Text = newScript.ToString();&lt;/pre&gt;

&lt;p&gt;Finally we just need to update the cube in order to write the MDX back to the cube:&lt;/p&gt;

&lt;pre class="code"&gt;&lt;span style="color:green;"&gt;//Call the update methods to update the cube
&lt;/span&gt;cube.MdxScripts[0].Update();
cube.Update();&lt;/pre&gt;




&lt;p&gt;&lt;strong&gt;User Reports&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Now that the cube has been updated, if the Excel report is refreshed, then the two new products will appear in the list:&lt;/p&gt;

&lt;p&gt;&lt;a href="http://blogs.adatis.co.uk/blogs/jeremykashel/image_06F880C3.png"&gt;&lt;img style="border:0px currentColor;padding-top:0px;padding-right:0px;padding-left:0px;display:inline;background-image:none;" title="image" border="0" alt="image" src="http://blogs.adatis.co.uk/blogs/jeremykashel/image_thumb_145E93C9.png" width="348" height="150" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Summary&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Controlling SSAS named sets like this won’t be for everybody. I’ve certainly worked in a few clients where strict process has to be followed to update this sort of thing, but I can think of other companies that I know where this would be really useful.&lt;/p&gt;

&lt;p&gt;Managing Analysis Services named sets is just one use for collections. Another example might be managing default multi-select parameters for SSRS reports. As collections are just lists of members that can be extracted easily, what you do with them is up to you!&lt;/p&gt;&lt;img src="http://blogs.adatis.co.uk/aggbug.aspx?PostID=10006" width="1" height="1"&gt;</content><author><name>Jeremy Kashel</name><uri>http://blogs.adatis.co.uk/members/Jeremy-Kashel.aspx</uri></author><category term="MDX" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/MDX/default.aspx" /><category term="Analysis Services" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Analysis+Services/default.aspx" /><category term="C#" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/C_2300_/default.aspx" /><category term="MDM" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/MDM/default.aspx" /><category term="Master Data Services" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Master+Data+Services/default.aspx" /><category term="MDS" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/MDS/default.aspx" /><category term="Master Data Management" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Master+Data+Management/default.aspx" /></entry><entry><title>Master Data Services Training in the UK</title><link rel="alternate" type="text/html" href="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2011/11/01/sql-server-training-in-london.aspx" /><id>http://blogs.adatis.co.uk/blogs/jeremykashel/archive/2011/11/01/sql-server-training-in-london.aspx</id><published>2011-11-01T23:33:00Z</published><updated>2011-11-01T23:33:00Z</updated><content type="html">&lt;p&gt;This is just a quick post to announce a range of SQL Server training courses, organised (and in some cases delivered) by &lt;a href="http://cwebbbi.wordpress.com/" target="_blank"&gt;Chris Webb&lt;/a&gt;. To start off there’s a SQL Server course delivered by Christian Bolton in December, followed by an Analysis Services course delivered by Chris in February. I’ll be delivering a Master Data Services course in February, before Chris delivers an MDX course in March.&lt;/p&gt;  &lt;p&gt;The details for all the courses are:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;strong&gt;SQL Server Internals and Troubleshooting Workshop - Christian Bolton – 6th – 7th December 2011&lt;/strong&gt;&lt;/li&gt; &lt;/ul&gt;  &lt;blockquote&gt;   &lt;p&gt;The Advanced Troubleshooting Workshop for SQL Server 2005, 2008 and R2 provides attendees with SQL Server internals knowledge, practical troubleshooting skills and a proven methodical approach to problem solving. The workshop will enable attendees to tackle complex SQL Server problems with confidence.&lt;/p&gt; &lt;/blockquote&gt;  &lt;blockquote&gt;   &lt;p&gt;Full details and registration &lt;a href="http://www.regonline.co.uk/Register/Checkin.aspx?EventID=1016921&amp;amp;trackingcode=ADT" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt; &lt;/blockquote&gt;  &lt;ul&gt;   &lt;li&gt;&lt;b&gt;Real World Cube Design and Performance Tuning with Analysis Services – Chris Webb – February 2012&lt;/b&gt;&lt;/li&gt; &lt;/ul&gt;  &lt;blockquote&gt;   &lt;p&gt;A two day course that takes real world experience in showing you how to build a best practice Analysis Services cube, covering design issues such as data warehouse design and complex cube modelling. Day two then covers performance optimisation for Analysis Services, including MDX optimisation and cube processing.&lt;/p&gt;    &lt;p&gt;Full details and registration &lt;a href="http://www.regonline.co.uk/Register/Checkin.aspx?EventID=1028948&amp;amp;trackingcode=ADT" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt; &lt;/blockquote&gt;  &lt;ul&gt;   &lt;li&gt;&lt;b&gt;Introduction to Master Data Services with Jeremy Kashel – February 2012&lt;/b&gt;&lt;/li&gt; &lt;/ul&gt;  &lt;blockquote&gt;   &lt;p&gt;An end to end look inside Master Data Services, this full day course will begin with a synopsis of Master Data Management before moving on to an overview of Microsoft SQL Server 2008 R2 Master Data Services (MDS). The remainder of the course will cover the major MDS topics, such as modelling and business rules, which will include a number of practical exercises.&lt;/p&gt;    &lt;p&gt;More details and registration for &lt;a href="http://www.regonline.co.uk/Register/Checkin.aspx?EventID=1028960&amp;amp;trackingcode=ADT" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt; &lt;/blockquote&gt;  &lt;ul&gt;   &lt;li&gt;&lt;b&gt;Introduction to MDX with Chris Webb – March 2012&lt;/b&gt;&lt;/li&gt; &lt;/ul&gt;  &lt;blockquote&gt;   &lt;p&gt;The Introduction to MDX course aims to take you from the point of being a complete beginner with no previous knowledge of MDX up to the point where you can write 90% of the MDX calculations and queries you’ll ever need to write. The three day course covers the basics, such as sets, tuples, members to more advanced concepts such as scoped assignments and performance tuning.&lt;/p&gt;    &lt;p&gt;Full details and registration &lt;a href="http://www.regonline.co.uk/Register/Checkin.aspx?EventID=1026958&amp;amp;trackingcode=ADT" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;/blockquote&gt;&lt;img src="http://blogs.adatis.co.uk/aggbug.aspx?PostID=9986" width="1" height="1"&gt;</content><author><name>Jeremy Kashel</name><uri>http://blogs.adatis.co.uk/members/Jeremy-Kashel.aspx</uri></author><category term="MDX" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/MDX/default.aspx" /><category term="Analysis Services" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Analysis+Services/default.aspx" /><category term="SQL Server" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/SQL+Server/default.aspx" /><category term="Events" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/Events/default.aspx" /><category term="MDM" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/MDM/default.aspx" /><category term="MDS" scheme="http://blogs.adatis.co.uk/blogs/jeremykashel/archive/tags/MDS/default.aspx" /></entry></feed>