<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.microsoft.co.il/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title> Business Intelligence,Technology, Thoughts, Thinking</title><link>http://blogs.microsoft.co.il/blogs/bilive/</link><description>Ronen Chenn- MVP SQL BI</description><dc:language>en</dc:language><generator>CommunityServer 2007.1 (Build: 20917.1142)</generator><item><title>Time Dimension Default member ( ssas 2012)</title><link>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/10/19/time-dimension-default-member-ssas-2012.aspx</link><pubDate>Sat, 19 Oct 2013 15:57:00 GMT</pubDate><guid isPermaLink="false">b5c4f5bc-c09b-4439-a595-91a98c1847df:2740243</guid><dc:creator>Ronen Chenn</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.microsoft.co.il/blogs/bilive/rsscomments.aspx?PostID=2740243</wfw:commentRss><comments>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/10/19/time-dimension-default-member-ssas-2012.aspx#comments</comments><description>&lt;p&gt;SSAS allow you to define a default member for each attribute in each dimension:&lt;/p&gt;&lt;p&gt;The most poplar dimension is the TIME dimension...&lt;/p&gt;&lt;p&gt;To define the default last non empty date, Click on the dimension, double click on the attribute in which you want to defint the defaulte value:&lt;/p&gt;&lt;p&gt;look for the Default value property, click on Custom MDX, Type the following into the MDX expression box, using the&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;b style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;MDX Builder&lt;/b&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;features as you find them helpful:&lt;/p&gt;&lt;div style="margin:20px;text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;&lt;pre style="font-family:verdana, arial, helvetica;font-size:13px;white-space:pre-wrap;-ms-overflow-x:auto;-ms-word-wrap:break-word;max-width:95%;"&gt;&lt;u style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Tail(Filter([Time].[Month].Members,
NOT IsEmpty(Time.CurrentMember)),1).Item(0)&lt;/u&gt;
&lt;/pre&gt;&lt;/div&gt;&lt;p style="text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;An explanation of the components of the above expression appears in&lt;span class="Apple-converted-space"&gt;&amp;nbsp;the following table:&lt;/span&gt;&lt;/p&gt;&lt;table style="text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;" cellspacing="0" cellpadding="9"&gt;&lt;tr style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;td valign="top" style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;p style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;b style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Expression&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign="top" style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;p style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;b style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Meaning&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;/tr&gt;&lt;tr style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;td valign="top" style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;p style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;u style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;[Time].[Month].Members,&lt;/u&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign="top" style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;p style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Selecting all months ...&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="height:6.25pt;font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;/tr&gt;&lt;tr style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;td valign="top" style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;p style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;u style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Filter([Time].[Month].Members,&lt;/u&gt;&lt;/p&gt;&lt;p style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;u style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;NOT IsEmpty&lt;/u&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign="top" style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;p style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Filter out those months that are &amp;quot;not unpopulated&amp;quot;, and ...&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;/tr&gt;&lt;tr style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;td valign="top" style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;p style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;u style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Filter([Time].[Month].Members,&lt;/u&gt;&lt;/p&gt;&lt;p style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;u style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;NOT IsEmpty(Time.CurrentMember))&lt;/u&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign="top" style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;p style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Out of the filtered subset, select the&lt;b style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Current Member&lt;/b&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;/tr&gt;&lt;tr style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;td valign="top" style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;p style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;u style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Tail(Filter([Time].[Month].Members,&lt;/u&gt;&lt;/p&gt;&lt;p style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;u style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;NOT IsEmpty(Time.CurrentMember)),1)&lt;/u&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign="top" style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;p style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Wrap the expression in a&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;b style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Tail()&lt;/b&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;function to return the &amp;quot;last&amp;quot; (most recent in time) member of the returned subset&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;/tr&gt;&lt;tr style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;td valign="top" style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;p style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;u style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Tail(Filter([Time].[Month].Members,&lt;/u&gt;&lt;/p&gt;&lt;p style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;u style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;NOT IsEmpty(&lt;/u&gt;&lt;/p&gt;&lt;p style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;u style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Time.CurrentMember)),1).Item(0)&lt;/u&gt;&lt;/p&gt;&lt;/td&gt;&lt;td valign="top" style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;p style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Convert the&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;b style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;subset&lt;/b&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;resulting from the&lt;b style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Tail()&lt;/b&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;function to a&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;b style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;member&lt;/b&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;with the&lt;b style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;.Item()&lt;/b&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;function, which means the first (as indicated by the zero-based index) member in the&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;b style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Month&lt;/b&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;level (the members of the subset) of the&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;b style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;Time&lt;/b&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;dimension.&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style="font-family:verdana, arial, helvetica;font-size:13px;"&gt;&lt;/tr&gt;&lt;/table&gt;&lt;p&gt;Update 30/10/2013&lt;/p&gt;&lt;p&gt;&lt;font size="3"&gt;&lt;font face="Consolas" size="1"&gt;&lt;font face="Consolas" size="1"&gt;Tail(EXCEPT( &lt;/font&gt;&lt;/font&gt;&lt;font color="#0000ff" face="Consolas"&gt;&lt;font color="#0000ff" face="Consolas"&gt;&lt;font color="#0000ff" face="Consolas"&gt;Filter&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font face="Consolas"&gt;&lt;font face="Consolas"&gt;([DIM TIME].[Date].&lt;/font&gt;&lt;/font&gt;&lt;font color="#0000ff" face="Consolas"&gt;&lt;font color="#0000ff" face="Consolas"&gt;&lt;font color="#0000ff" face="Consolas"&gt;Members&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font face="Consolas"&gt;&lt;font face="Consolas"&gt;,&lt;/font&gt;&lt;/font&gt;&lt;font color="#0000ff" face="Consolas"&gt;&lt;font color="#0000ff" face="Consolas"&gt;&lt;font color="#0000ff" face="Consolas"&gt;NOT&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font face="Consolas"&gt;&lt;font face="Consolas"&gt; IsEmpty(Time.CurrentMember)), { [DIM TIME].[Date].UNKNOWNMEMBER } ),1).&lt;/font&gt;&lt;/font&gt;&lt;font color="#0000ff" face="Consolas"&gt;&lt;font color="#0000ff" face="Consolas"&gt;&lt;font color="#0000ff" face="Consolas"&gt;Item&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;font face="Consolas" size="1"&gt;&lt;font face="Consolas" size="1"&gt;(0)&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;If you have an UknownMember, It will exclude that member.&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;font face="Consolas" size="1"&gt;&lt;font face="Consolas" size="1"&gt;
&lt;/font&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://blogs.microsoft.co.il/aggbug.aspx?PostID=2740243" width="1" height="1"&gt;</description><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/MDX/default.aspx">MDX</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/default+Time+value/default.aspx">default Time value</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/Default+value/default.aspx">Default value</category></item><item><title>Update or delete in small packet size to by pass log limmitation</title><link>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/10/04/update-or-delete-in-small-packet-size-to-by-pass-log-limmitation.aspx</link><pubDate>Fri, 04 Oct 2013 10:44:00 GMT</pubDate><guid isPermaLink="false">b5c4f5bc-c09b-4439-a595-91a98c1847df:2668092</guid><dc:creator>Ronen Chenn</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.microsoft.co.il/blogs/bilive/rsscomments.aspx?PostID=2668092</wfw:commentRss><comments>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/10/04/update-or-delete-in-small-packet-size-to-by-pass-log-limmitation.aspx#comments</comments><description> DECLARE @RowsDeleted INTEGER
SET @RowsDeleted = 1

WHILE (@RowsDeleted &amp;gt; 0)
   BEGIN  

     		UPDATE top (10000)    {TABLENAME}
   SET       {COLUMN}= XXXX...XXXX
    
 
		
 

        SET @RowsDeleted = @@ROWCOUNT

	


    END  



&lt;img src="http://blogs.microsoft.co.il/aggbug.aspx?PostID=2668092" width="1" height="1"&gt;</description><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/TSQL/default.aspx">TSQL</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/BATCHUPDATED/default.aspx">BATCHUPDATED</category></item><item><title>Activity viewer for SQL SSAS 2012</title><link>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/09/28/activity-viewer-for-sql-ssas-2012.aspx</link><pubDate>Sat, 28 Sep 2013 04:02:00 GMT</pubDate><guid isPermaLink="false">b5c4f5bc-c09b-4439-a595-91a98c1847df:2649125</guid><dc:creator>Ronen Chenn</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.microsoft.co.il/blogs/bilive/rsscomments.aspx?PostID=2649125</wfw:commentRss><comments>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/09/28/activity-viewer-for-sql-ssas-2012.aspx#comments</comments><description>&lt;p&gt;New version of Activity viewer for SQL SSAS 2012 is ready:&lt;/p&gt;&lt;p&gt;&lt;a href="https://activityviewer2012.codeplex.com/releases/view/112680"&gt;https://activityviewer2012.codeplex.com/releases/view/112680&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://blogs.microsoft.co.il/aggbug.aspx?PostID=2649125" width="1" height="1"&gt;</description><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/SSAS/default.aspx">SSAS</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/Activityviewer+2012/default.aspx">Activityviewer 2012</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/Activity+viewer/default.aspx">Activity viewer</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/Activity+viewer+2012/default.aspx">Activity viewer 2012</category></item><item><title>SQL Server 2012 SP1 Cumulative Update 6 Released (Build 11.0.3381.0)</title><link>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/09/18/sql-server-2012-sp1-cumulative-update-6-released-build-11-0-3381-0.aspx</link><pubDate>Wed, 18 Sep 2013 05:30:00 GMT</pubDate><guid isPermaLink="false">b5c4f5bc-c09b-4439-a595-91a98c1847df:2614232</guid><dc:creator>Ronen Chenn</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.microsoft.co.il/blogs/bilive/rsscomments.aspx?PostID=2614232</wfw:commentRss><comments>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/09/18/sql-server-2012-sp1-cumulative-update-6-released-build-11-0-3381-0.aspx#comments</comments><description>&lt;p&gt;cumulative update release for SQL Server 2012 SP1 is now available for download at the Microsoft Support site. Cumulative Update 6 contains all the SQL Server 2012 SP1 hotfixes which have been available since the initial release of SQL Server 2012 SP1.&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;To learn more about the release or servicing model, please visit:&lt;/p&gt;&lt;ul style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;&lt;li&gt;CU#6 KB&amp;nbsp;Article:&amp;nbsp;&lt;a style="font-weight:normal;text-decoration:none;" href="http://support.microsoft.com/kb/2874879"&gt;http://support.microsoft.com/kb/2874879&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Understanding&amp;nbsp;&lt;a style="font-weight:normal;text-decoration:none;" href="http://support.microsoft.com/kb/935897"&gt;IncrementalServicingModel&lt;/a&gt;&amp;nbsp;for&amp;nbsp;SQL Server&lt;/li&gt;&lt;li&gt;SQL Server&amp;nbsp;Support Information:&amp;nbsp;&lt;a style="font-weight:normal;text-decoration:none;" href="http://support.microsoft.com/ph/2855"&gt;http://support.microsoft.com/ph/2855&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;img src="http://blogs.microsoft.co.il/aggbug.aspx?PostID=2614232" width="1" height="1"&gt;</description><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/SP1/default.aspx">SP1</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/SolidBI/default.aspx">SolidBI</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/SQLL+2012/default.aspx">SQLL 2012</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/CU6/default.aspx">CU6</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/SQL+2012+SP1/default.aspx">SQL 2012 SP1</category></item><item><title>Kerberos Configuration Manager for SQL Server</title><link>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/07/15/kerberos-configuration-manager-for-sql-server.aspx</link><pubDate>Mon, 15 Jul 2013 16:13:00 GMT</pubDate><guid isPermaLink="false">b5c4f5bc-c09b-4439-a595-91a98c1847df:2261997</guid><dc:creator>Ronen Chenn</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.microsoft.co.il/blogs/bilive/rsscomments.aspx?PostID=2261997</wfw:commentRss><comments>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/07/15/kerberos-configuration-manager-for-sql-server.aspx#comments</comments><description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;ul class="htmldetails" style="margin:0px;padding:10px 0px 0px;text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;word-spacing:0px;list-style-type:none;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;Kerberos authentication provides a highly secure method to authenticate client and server entities (security principals) on a network. To use Kerberos authentication with SQL Server, a Service Principal Name (SPN) must be registered with Active Directory, which plays the role of the Key Distribution Center in a Windows domain. In addition, many customers also enable delegation for multi tier applications using SQL Server. In such a setup, it may be difficult to troubleshoot the connectivity problems with SQL Server when Kerberos authentication fails.&lt;br /&gt;&lt;br /&gt;The Kerberos Configuration Manager for SQL Server is a diagnostic tool that helps troubleshoot Kerberos related connectivity issues with SQL Server. It can perform the following functions:&lt;br /&gt;&lt;ul style="margin:10px 15px 0px;padding:0px;list-style-type:disc;"&gt;&lt;li style="margin:0px 0px 10px 20px;padding:0px;list-style-type:disc;"&gt;Gather information on OS and Microsoft SQL Server instances installed on a server.&lt;/li&gt;&lt;li style="margin:0px 0px 10px 20px;padding:0px;list-style-type:disc;"&gt;Report on all SPN and delegation configurations on the server.&lt;/li&gt;&lt;li style="margin:0px 0px 10px 20px;padding:0px;list-style-type:disc;"&gt;Identify potential problems in SPNs and delegations.&lt;/li&gt;&lt;li style="margin:0px 0px 10px 20px;padding:0px;list-style-type:disc;"&gt;Fix potential SPN problems.&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;p style="margin:0px 0px 10px 20px;padding:0px;list-style-type:disc;"&gt;&lt;font color="#505050" face="Segoe UI"&gt;It can be download &lt;a href="http://www.microsoft.com/en-us/download/details.aspx?id=39046"&gt;here&lt;/a&gt;:&lt;/font&gt;&lt;/p&gt;&lt;p style="margin:0px 0px 10px 20px;padding:0px;list-style-type:disc;"&gt;&lt;font color="#505050" face="Segoe UI"&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://blogs.microsoft.co.il/aggbug.aspx?PostID=2261997" width="1" height="1"&gt;</description><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/KERBEROSE/default.aspx">KERBEROSE</category></item><item><title>Break distinct count measures into separate measure groups</title><link>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/07/10/break-distinct-count-measures-into-separate-measure-groups.aspx</link><pubDate>Wed, 10 Jul 2013 07:18:00 GMT</pubDate><guid isPermaLink="false">b5c4f5bc-c09b-4439-a595-91a98c1847df:2246807</guid><dc:creator>Ronen Chenn</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.microsoft.co.il/blogs/bilive/rsscomments.aspx?PostID=2246807</wfw:commentRss><comments>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/07/10/break-distinct-count-measures-into-separate-measure-groups.aspx#comments</comments><description>&lt;p&gt;The &amp;nbsp;easier method to to this if you already have the measure group built is:&lt;/p&gt;&lt;p&gt;Right click on the cube on the Cube Structure tab and select new measure.  &lt;/p&gt;&lt;p&gt;Then select DistinctCount as the usage, then your measure to count and it will automatically be created in a new Measure Group.&lt;/p&gt;&lt;img src="http://blogs.microsoft.co.il/aggbug.aspx?PostID=2246807" width="1" height="1"&gt;</description><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/SSAS/default.aspx">SSAS</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/SolidBI.com/default.aspx">SolidBI.com</category></item><item><title>Optimized Bulk Loading of Data into Oracle</title><link>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/06/21/optimized-bulk-loading-of-data-into-oracle.aspx</link><pubDate>Fri, 21 Jun 2013 05:57:00 GMT</pubDate><guid isPermaLink="false">b5c4f5bc-c09b-4439-a595-91a98c1847df:2183804</guid><dc:creator>Ronen Chenn</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.microsoft.co.il/blogs/bilive/rsscomments.aspx?PostID=2183804</wfw:commentRss><comments>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/06/21/optimized-bulk-loading-of-data-into-oracle.aspx#comments</comments><description>&lt;p&gt;SQL Server 2008 and SQL Server 2008 R2 (Enterprise and Developer editions) support bulk loading Oracle data using Integration Services packages with the Microsoft Connector for Oracle by Attunity. For SQL Server 2005 and the non-Enterprise and non-Developer editions of SQL Server 2008 and 2008 R2, there are alternatives for achieving optimal performance when loading Oracle data. This paper discusses these alternatives.&lt;/p&gt;&lt;p style="text-transform:none;text-indent:0px;letter-spacing:normal;padding-bottom:15px;margin-top:0px;margin-bottom:0px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;The Enterprise and Developer editions of SQL Server 2012 also support bulk loading Oracle data using Integration Services packages with the Microsoft Connector for Oracle by Attunity.&lt;/p&gt;&lt;p style="text-transform:none;text-indent:0px;letter-spacing:normal;padding-bottom:15px;margin-top:0px;margin-bottom:0px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="text-transform:none;text-indent:0px;letter-spacing:normal;padding-bottom:15px;margin-top:0px;margin-bottom:0px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;To review the document, please download the&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;a style="text-decoration:none;" href="http://download.microsoft.com/download/D/2/0/D20E1C5F-72EA-4505-9F26-FEF9550EFD44/Bulk%20Insert%20to%20Oracle_final.docx"&gt;Optimized Bulk Loading of Data into Oracle&lt;/a&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;Word document.&lt;/p&gt;&lt;img src="http://blogs.microsoft.co.il/aggbug.aspx?PostID=2183804" width="1" height="1"&gt;</description><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/DEV/default.aspx">DEV</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/TECH/default.aspx">TECH</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/ORACLE/default.aspx">ORACLE</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/SSIS/default.aspx">SSIS</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/itpro_3A00_BIUG/default.aspx">itpro:BIUG</category></item><item><title>CDC for Oracle in SQL Server 2012</title><link>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/06/21/cdc-for-oracle-in-sql-server-2012.aspx</link><pubDate>Fri, 21 Jun 2013 05:55:00 GMT</pubDate><guid isPermaLink="false">b5c4f5bc-c09b-4439-a595-91a98c1847df:2183799</guid><dc:creator>Ronen Chenn</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.microsoft.co.il/blogs/bilive/rsscomments.aspx?PostID=2183799</wfw:commentRss><comments>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/06/21/cdc-for-oracle-in-sql-server-2012.aspx#comments</comments><description>&lt;p&gt;One of the new features introduced in SQL Server 2012 is the ability to use SQL Server CDC for tracking changes on an Oracle table. In the following post you will understand how to setup such a service for tracking changes on your Oracle tables.&lt;/p&gt;&lt;h3 style="text-align:left;text-transform:none;line-height:18px;text-indent:0px;letter-spacing:normal;font-size:1.15em;font-style:normal;font-variant:normal;word-spacing:0px;white-space:normal;-webkit-text-stroke-width:0px;"&gt;Configuring your Oracle server&lt;/h3&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;Before creating the service, you must ensure that the following configuration steps have been performed on your source Oracle database:&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;1. The database is set to ARCHIVELOG and is OPEN&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;2. The user that is going to connect to the Oracle database has DBA privileges on the database (since you will look up the log miner data from the database)&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;You should also install the Oracle client and configure the service names on the machine where you will be installing the CDC services on.&lt;/p&gt;&lt;h3 style="text-align:left;text-transform:none;line-height:18px;text-indent:0px;letter-spacing:normal;font-size:1.15em;font-style:normal;font-variant:normal;word-spacing:0px;white-space:normal;-webkit-text-stroke-width:0px;"&gt;Installing the CDC Service Configuration and Designer MMCs&lt;/h3&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;The MMCs are not installed by default when you install your SQL Server instance. You must install them separately by installing them using their MSIs.&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;The MSI installer for CDC Service Configuration MMC is named&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;b&gt;&lt;i&gt;AttunityOracleCdcService.msi&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;and the installer for CDC Designer is named&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;b&gt;&lt;i&gt;AttunityOracleCdcDesigner.msi&lt;/i&gt;&lt;/b&gt;. They can be found in your installation media under the folder&lt;i&gt;\Tools\AttunityCDCOracle.&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/i&gt;In the folder you would find x64 or x86 folders which correspond to the different processor architectures. Within the x86 or x64 folder you would find folders for various locales including 1033 which corresponds to English (US).&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;Thus, to install the English (US) x64 version you must go to&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;i&gt;\Tools\AttunityCDCOracle\x64\1033&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/i&gt;folder.&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;Once installed, you would find a shortcut created under the start menu at&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;i&gt;Start&amp;gt;Program&amp;gt;Attunity  Change Data Capture for Oracle&amp;gt;CDC Service Configuration&lt;/i&gt;&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;&lt;b&gt;Note&lt;/b&gt;&lt;b&gt;&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/b&gt;You must install the same bit version of the MSI as the Oracle client installation you have on the local system. Thus, if you have installed the x86 version of Oracle client then you must also install x86 version of the Oracle CDC service.&lt;/p&gt;&lt;h3 style="text-align:left;text-transform:none;line-height:18px;text-indent:0px;letter-spacing:normal;font-size:1.15em;font-style:normal;font-variant:normal;word-spacing:0px;white-space:normal;-webkit-text-stroke-width:0px;"&gt;Setting up your service&lt;/h3&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;You can set up a new CDC Service using the CDC Service configuration MMC. But before you create a new service, you will have to prepare a local SQL Server instance. You can do so by using the actions pane in the MMC as shown below.&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;&lt;a style="font-weight:normal;text-decoration:none;" href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/1803.clip_5F00_image002_5F00_0DDA93CD.jpg"&gt;&lt;img width="244" height="174" title="clip_image002" style="margin:0px;border:0px currentColor;overflow:hidden;padding-top:0px;padding-right:0px;padding-left:0px;display:inline;max-width:100%;background-image:none;" alt="clip_image002" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/3750.clip_5F00_image002_5F00_thumb_5F00_4E10AD47.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;Once the local SQL server is prepared you can use the&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;i&gt;New Service&lt;span class="Apple-converted-space"&gt;&amp;nbsp;&lt;/span&gt;&lt;/i&gt;action to create a new CDC service as shown below.&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;&lt;a style="font-weight:normal;text-decoration:none;" href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/0211.clip_5F00_image004_5F00_0E46C6C2.jpg"&gt;&lt;img width="244" height="164" title="clip_image004" style="margin:0px;border:0px currentColor;overflow:hidden;padding-top:0px;padding-right:0px;padding-left:0px;display:inline;max-width:100%;background-image:none;" alt="clip_image004" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/8233.clip_5F00_image004_5F00_thumb_5F00_2A5785AD.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;Couple of things to note here:&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;1. The service account you use should have logon as service policy assigned to it&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;2. The master password will be used to create a asymmetric key which will be used to encrypt the Oracle credentials which will be provided later&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;Once the service is created you can see it under the services node.&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;&lt;a style="font-weight:normal;text-decoration:none;" href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/2870.clip_5F00_image006_5F00_03896F6D.jpg"&gt;&lt;img width="244" height="88" title="clip_image006" style="margin:0px;border:0px currentColor;overflow:hidden;padding-top:0px;padding-right:0px;padding-left:0px;display:inline;max-width:100%;background-image:none;" alt="clip_image006" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/3441.clip_5F00_image006_5F00_thumb_5F00_0AA8ABE5.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;h3 style="text-align:left;text-transform:none;line-height:18px;text-indent:0px;letter-spacing:normal;font-size:1.15em;font-style:normal;font-variant:normal;word-spacing:0px;white-space:normal;-webkit-text-stroke-width:0px;"&gt;Creating a CDC instance&lt;/h3&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;You can create a CDC instance using the CDC designer configuration MMC which you installed earlier. A CDC instance is defined as an object consisting of:&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;· The source Oracle database connection information&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;· Credentials and properties to connect to the source Oracle databases&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;· Source tables for which you need to capture CDC. You can even configure the instance to capture only a subset of the columns of each table.&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;· Mirror SQL Server database name which will contain the mirror tables for the source tables/columns defined in the previous step&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;You can create the instance as shown in the following steps&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;1. First you should connect to the SQL Server instance on which you created the service&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;&lt;a style="font-weight:normal;text-decoration:none;" href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/6177.clip_5F00_image008_5F00_4EE91331.jpg"&gt;&lt;img width="244" height="151" title="clip_image008" style="margin:0px;border:0px currentColor;overflow:hidden;padding-top:0px;padding-right:0px;padding-left:0px;display:inline;max-width:100%;background-image:none;" alt="clip_image008" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/3438.clip_5F00_image008_5F00_thumb_5F00_6AF9D21C.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;2. Now you can see all the services available for the instance&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;&lt;a style="font-weight:normal;text-decoration:none;" href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/6175.clip_5F00_image010_5F00_163E6924.jpg"&gt;&lt;img width="244" height="87" title="clip_image010" style="margin:0px;border:0px currentColor;overflow:hidden;padding-top:0px;padding-right:0px;padding-left:0px;display:inline;max-width:100%;background-image:none;" alt="clip_image010" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/5187.clip_5F00_image010_5F00_thumb_5F00_1D5DA59C.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;3. Now you can create a new instance using the right click context menu for a service&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;&lt;a style="font-weight:normal;text-decoration:none;" href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/7144.clip_5F00_image012_5F00_768F8F5B.jpg"&gt;&lt;img width="244" height="144" title="clip_image012" style="margin:0px;border:0px currentColor;overflow:hidden;padding-top:0px;padding-right:0px;padding-left:0px;display:inline;max-width:100%;background-image:none;" alt="clip_image012" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/7167.clip_5F00_image012_5F00_thumb_5F00_4FC1791B.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;4. The Oracle CDC Instance wizard opens up and the first pane allows you to define a service name. It will also ask you the name for a mirror database that would be created on the same SQL Server instance as step 1. You can rename the mirror database as well.&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;&lt;a style="font-weight:normal;text-decoration:none;" href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/0714.clip_5F00_image014_5F00_56E0B593.jpg"&gt;&lt;img width="244" height="167" title="clip_image014" style="margin:0px;border:0px currentColor;overflow:hidden;padding-top:0px;padding-right:0px;padding-left:0px;display:inline;max-width:100%;background-image:none;" alt="clip_image014" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/3441.clip_5F00_image014_5F00_thumb_5F00_30129F53.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;5. The next steps will ask you to input the Oracle connection string as well as the user credentials for connecting to the Oracle database. Note that it takes the Oracle connection string in the following format: host[:port][/service name]&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;Note that you should have installed the Oracle client and setup the service naming before this step.&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;&lt;a style="font-weight:normal;text-decoration:none;" href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/3463.clip_5F00_image016_5F00_1E360B86.jpg"&gt;&lt;img width="244" height="166" title="clip_image016" style="margin:0px;border:0px currentColor;overflow:hidden;padding-top:0px;padding-right:0px;padding-left:0px;display:inline;max-width:100%;background-image:none;" alt="clip_image016" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/0724.clip_5F00_image016_5F00_thumb_5F00_1063C58B.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;6. Now you can select the tables you want to include in your CDC instance.&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;&lt;a style="font-weight:normal;text-decoration:none;" href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/4527.clip_5F00_image018_5F00_5099DF05.jpg"&gt;&lt;img width="244" height="168" title="clip_image018" style="margin:0px;border:0px currentColor;overflow:hidden;padding-top:0px;padding-right:0px;padding-left:0px;display:inline;max-width:100%;background-image:none;" alt="clip_image018" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/6574.clip_5F00_image018_5F00_thumb_5F00_3EBD4B38.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;7. You can also edit the instance and select specific columns as well as specify a CDC role to be used when creating the CDC instance on the local SQL server database&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;&lt;a style="font-weight:normal;text-decoration:none;" href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/2376.clip_5F00_image020_5F00_7EF364B2.jpg"&gt;&lt;img width="237" height="215" title="clip_image020" style="margin:0px;border:0px currentColor;overflow:hidden;padding-top:0px;padding-right:0px;padding-left:0px;display:inline;max-width:100%;background-image:none;" alt="clip_image020" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/4024.clip_5F00_image020_5F00_thumb_5F00_58254E72.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;8. In the next steps you would asked to run a script on your source Oracle database which essentially sets up Supplemental logging&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;9. You can click through the wizard to Generate the Oracle CDC instance&lt;/p&gt;&lt;h3 style="text-align:left;text-transform:none;line-height:18px;text-indent:0px;letter-spacing:normal;font-size:1.15em;font-style:normal;font-variant:normal;word-spacing:0px;white-space:normal;-webkit-text-stroke-width:0px;"&gt;Operating a CDC instance&lt;/h3&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;Once you have created the CDC instance you can now start and monitor the CDC instance using the designer MMC. By default the Service would be in INITIAL (stopped) state. You can start it as shown in the figure below.&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;&lt;a style="font-weight:normal;text-decoration:none;" href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/0218.clip_5F00_image022_5F00_31573832.jpg"&gt;&lt;img width="244" height="175" title="clip_image022" style="margin:0px;border:0px currentColor;overflow:hidden;padding-top:0px;padding-right:0px;padding-left:0px;display:inline;max-width:100%;background-image:none;" alt="clip_image022" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/1307.clip_5F00_image022_5F00_thumb_5F00_4D67F71D.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;The service will be started and the status would inform you of the current state of the service, transactions’ SCN for Oracle and the number of transactions being processed at that instance as shown below.&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;&lt;a style="font-weight:normal;text-decoration:none;" href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/1362.clip_5F00_image024_5F00_78AC8E24.jpg"&gt;&lt;img width="244" height="174" title="clip_image024" style="margin:0px;border:0px currentColor;overflow:hidden;padding-top:0px;padding-right:0px;padding-left:0px;display:inline;max-width:100%;background-image:none;" alt="clip_image024" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/2451.clip_5F00_image024_5F00_thumb_5F00_38E2A79F.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;You would notice that a database would be created on the SQL Server instance you specified and the mirrored table would be setup. CDC would have also been enabled on the table and a corresponding _CT table would have been created capturing the changes from the mirrored table as shown below.&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;&lt;a style="font-weight:normal;text-decoration:none;" href="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/5187.clip_5F00_image026_5F00_1214915F.jpg"&gt;&lt;img width="122" height="187" title="clip_image026" style="border:0px currentColor;overflow:hidden;padding-top:0px;padding-right:0px;padding-left:0px;display:inline;max-width:100%;background-image:none;" alt="clip_image026" src="http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-00-74-44-metablogapi/7144.clip_5F00_image026_5F00_thumb_5F00_0037FD92.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="text-align:left;text-transform:none;text-indent:0px;letter-spacing:normal;margin-top:12px;word-spacing:0px;white-space:normal;font-size-adjust:none;font-stretch:normal;-webkit-text-stroke-width:0px;"&gt;This post has been an introduction on how to get up and running with the new CDC for Oracle features introduced in SQL Server 2012.&lt;/p&gt;&lt;img src="http://blogs.microsoft.co.il/aggbug.aspx?PostID=2183799" width="1" height="1"&gt;</description><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/ITPRO/default.aspx">ITPRO</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/DEV/default.aspx">DEV</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/TECH/default.aspx">TECH</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/SSIS+2012/default.aspx">SSIS 2012</category></item><item><title>SSAS distinct count wrong results</title><link>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/06/14/ssas-distinct-count-wrong-results.aspx</link><pubDate>Fri, 14 Jun 2013 20:38:00 GMT</pubDate><guid isPermaLink="false">b5c4f5bc-c09b-4439-a595-91a98c1847df:2163309</guid><dc:creator>Ronen Chenn</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.microsoft.co.il/blogs/bilive/rsscomments.aspx?PostID=2163309</wfw:commentRss><comments>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/06/14/ssas-distinct-count-wrong-results.aspx#comments</comments><description>&lt;p&gt;I have added a connect item today.&lt;/p&gt;&lt;p&gt;please vote for it:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;a href="https://connect.microsoft.com/SQLServer/feedback/details/790216/ssas-distinct-count-wrong-results"&gt;https://connect.microsoft.com/SQLServer/feedback/details/790216/ssas-distinct-count-wrong-results&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Issue:&lt;/p&gt;&lt;p&gt;ssas distinct count results wrong number.&lt;br /&gt;While querying the table as follow:  &lt;br /&gt;SELECT  count (distinct USER_ID ) FROM   Table  &lt;br /&gt;I get this results -- 1033612&lt;br /&gt;&lt;br /&gt;while querying SSAS I get 257.&lt;br /&gt;&lt;br /&gt;sample data for USER_ID:&lt;br /&gt;42348-3648-1368306010878-D41D8CD98F00B204E9800998ECF8427E&lt;br /&gt;42348-3648-1368074987484-B26463A0EE1A5F27718A14533D020E60&lt;br /&gt;42348-3648-1368011144064-65DD703A82FFA13A98305295317C86AD&lt;br /&gt;42348-3648-1368049679418-D41D8CD98F00B204E9800998ECF8427E&lt;br /&gt;&lt;br /&gt;I have also tried to convert this Varchar(100) into checksum()&lt;br /&gt;sample data -235875173&lt;br /&gt;535581043&lt;br /&gt;287814888&lt;br /&gt;-1894147417&lt;br /&gt;&lt;br /&gt;still getting same results.&lt;br /&gt;&lt;br /&gt;the measure is located in stand alone measure group. and configured with default settings.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Solution: &lt;/p&gt;&lt;p&gt;No Solution so far.&lt;/p&gt;&lt;img src="http://blogs.microsoft.co.il/aggbug.aspx?PostID=2163309" width="1" height="1"&gt;</description><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/ITPRO/default.aspx">ITPRO</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/DEV/default.aspx">DEV</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/TECH/default.aspx">TECH</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/SSAS+BUG/default.aspx">SSAS BUG</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/DISTINCT+COUNT/default.aspx">DISTINCT COUNT</category></item><item><title>מרקו רוסו , המומחה מספר 1 בעולם לתחום ,SSAS </title><link>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/06/09/1-ssas.aspx</link><pubDate>Sun, 09 Jun 2013 14:05:00 GMT</pubDate><guid isPermaLink="false">b5c4f5bc-c09b-4439-a595-91a98c1847df:2146750</guid><dc:creator>Ronen Chenn</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.microsoft.co.il/blogs/bilive/rsscomments.aspx?PostID=2146750</wfw:commentRss><comments>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/06/09/1-ssas.aspx#comments</comments><description>&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;font face="Times New Roman" size="3"&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;" dir="RTL"&gt;&lt;b&gt;&lt;span style="font-size:10pt;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-size:10pt;"&gt;7/7/13 מרקו רוסו ,
המומחה מספר 1 בעולם לתחום &lt;/span&gt;&lt;/b&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="font-size:10pt;"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;,SSAS&lt;/span&gt;&lt;/b&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;span style="font-size:10pt;"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt; &lt;span&gt;מגיע לישראל!&lt;/span&gt;&lt;/span&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;" dir="RTL"&gt;&lt;b&gt;&lt;span&gt;מספר
מקומות מוגבל ל-15 משתתפים בלבד. &lt;a href="http://www.naya-college.co.il/,art_catalog,art_39" target="_blank"&gt;מהרו להרשם!!!&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;" dir="RTL"&gt;&lt;b&gt;&lt;span&gt;&lt;img width="180" height="400" align="right" alt="" src="http://blogs.microsoft.co.il/blogs/bilive/marko.png" border="0" vspace="0" hspace="-1" /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;" dir="RTL"&gt;&lt;b&gt;&lt;span&gt;&lt;/span&gt;&lt;/b&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;" dir="RTL"&gt;&lt;b&gt;&lt;span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span&gt;&lt;img width="1" height="1" align="" alt="" border="0" vspace="0" hspace="-1" /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/font&gt;&lt;p&gt;
 
 
  
  
  
  
  
  
  
  
  
  
  
  
 
 
 

 
&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;" dir="RTL"&gt;&lt;font size="3"&gt;&lt;span&gt;&lt;span style="font-size:11pt;mso-ansi-language:EN-US;mso-fareast-font-family:Calibri;mso-fareast-theme-font:minor-latin;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;mso-fareast-language:EN-US;mso-bidi-language:HE;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;" dir="RTL"&gt;&lt;font size="3"&gt;&lt;span&gt;&lt;span style="font-size:11pt;mso-ansi-language:EN-US;mso-fareast-font-family:Calibri;mso-fareast-theme-font:minor-latin;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;mso-fareast-language:EN-US;mso-bidi-language:HE;"&gt;&lt;/span&gt;&amp;nbsp;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;img src="http://blogs.microsoft.co.il/aggbug.aspx?PostID=2146750" width="1" height="1"&gt;</description><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/DEV/default.aspx">DEV</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/TECH/default.aspx">TECH</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/ITP/default.aspx">ITP</category></item><item><title>"GeoFlow"  for Excel 2013 </title><link>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/06/07/quot-geoflow-quot-for-excel-2013.aspx</link><pubDate>Fri, 07 Jun 2013 12:11:00 GMT</pubDate><guid isPermaLink="false">b5c4f5bc-c09b-4439-a595-91a98c1847df:2140257</guid><dc:creator>Ronen Chenn</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.microsoft.co.il/blogs/bilive/rsscomments.aspx?PostID=2140257</wfw:commentRss><comments>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/06/07/quot-geoflow-quot-for-excel-2013.aspx#comments</comments><description>&lt;p&gt;&amp;nbsp;Project codename “GeoFlow” Preview for Excel 2013 allows you to plot geographic and temporal data visually, analyze that data in 3D, and create interactive tours to share with others. This preview gives you an early look into the new features that provide 3D data visualization for Excel and a powerful method for people to look at information in new ways, enabling discoveries in data that might never be seen in traditional 2D tables and charts.&lt;/p&gt;&lt;p&gt;download it from &lt;a href="http://www.microsoft.com/en-us/download/details.aspx?id=38395"&gt;here-&amp;gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.microsoft.co.il/aggbug.aspx?PostID=2140257" width="1" height="1"&gt;</description><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/ITPRO/default.aspx">ITPRO</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/DEV/default.aspx">DEV</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/TECH/default.aspx">TECH</category></item><item><title>Cumulative update package 4 for SQL Server 2012 SP1 </title><link>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/06/02/cumulative-update-package-4-for-sql-server-2012-sp1.aspx</link><pubDate>Sun, 02 Jun 2013 15:18:00 GMT</pubDate><guid isPermaLink="false">b5c4f5bc-c09b-4439-a595-91a98c1847df:2108591</guid><dc:creator>Ronen Chenn</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.microsoft.co.il/blogs/bilive/rsscomments.aspx?PostID=2108591</wfw:commentRss><comments>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/06/02/cumulative-update-package-4-for-sql-server-2012-sp1.aspx#comments</comments><description>&lt;p&gt;&amp;nbsp;This &lt;a href="http://support.microsoft.com/kb/2833645/en-us?wa=wsignin1.0"&gt;post&lt;/a&gt; describes cumulative update package 4 for Microsoft SQL Server 2012          Service Pack 1         (SP1). This update contains hotfixes for issues that were fixed after the release of SQL Server 2012          SP1.       &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Note&lt;/b&gt; The build number of the cumulative update package is 11.0.3368.0.&lt;/p&gt;&lt;p&gt;&lt;a href="http://support.microsoft.com/kb/2833645/en-us?wa=wsignin1.0"&gt;download here&lt;/a&gt;:&lt;br /&gt;&lt;/p&gt;&lt;img src="http://blogs.microsoft.co.il/aggbug.aspx?PostID=2108591" width="1" height="1"&gt;</description><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/DEV/default.aspx">DEV</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/TECH/default.aspx">TECH</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/itpro_3A00_BIUG/default.aspx">itpro:BIUG</category></item><item><title>מפגש BI # 43</title><link>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/05/26/bi-43.aspx</link><pubDate>Sun, 26 May 2013 17:19:00 GMT</pubDate><guid isPermaLink="false">b5c4f5bc-c09b-4439-a595-91a98c1847df:2081565</guid><dc:creator>Ronen Chenn</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.microsoft.co.il/blogs/bilive/rsscomments.aspx?PostID=2081565</wfw:commentRss><comments>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/05/26/bi-43.aspx#comments</comments><description>&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p style="margin:0in 0in 0pt;text-align:right;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;span style="color:black;"&gt;&lt;font size="3"&gt;שלום לכולם&lt;/font&gt;&lt;/span&gt;&lt;span style="color:black;font-size:9pt;"&gt;,&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p style="margin:0in 0in 0pt;text-align:right;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;font size="3"&gt;&lt;span style="color:black;"&gt;ברצוננו להזמין אתכם למפגש קהילת ה – &lt;/span&gt;&lt;span style="color:black;mso-ansi-language:EN;"&gt;BI&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;span style="color:black;"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;. &lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p style="margin:0in 0in 0pt;text-align:right;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;span style="color:black;"&gt;&lt;font size="3"&gt;המפגש הקרוב יתקיים ב - 29.5 במשרדי מיקרוסופט רעננה, אולם&lt;/font&gt;&lt;/span&gt;&lt;span style="color:black;font-size:9pt;"&gt; &lt;/span&gt;&lt;span style="color:black;"&gt;&lt;font size="3"&gt;דקל&lt;/font&gt;&lt;/span&gt;&lt;span style="color:black;font-size:9pt;"&gt;.&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p style="margin:0in 0in 0pt;text-align:right;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;span style="color:black;"&gt;&lt;font size="3"&gt;מצורף&lt;/font&gt;&lt;/span&gt;&lt;span style="color:black;font-size:9pt;"&gt; &lt;/span&gt;&lt;span style="color:black;"&gt;&lt;font size="3"&gt;לו&amp;quot;ז&lt;/font&gt;&lt;/span&gt;&lt;span style="color:black;font-size:9pt;"&gt; &lt;/span&gt;&lt;font size="3"&gt;&lt;span style="color:black;"&gt;&amp;nbsp;לקראת המפגש.&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p style="margin:0in 0in 0pt;text-align:right;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;font size="3"&gt;&lt;font face="Times New Roman"&gt;&lt;span style="color:black;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;text-align:right;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;span style="color:black;"&gt;&lt;font size="3"&gt;לו&amp;quot;ז&lt;/font&gt;&lt;/span&gt;&lt;span style="color:black;font-size:9pt;"&gt; &lt;/span&gt;&lt;font size="3"&gt;&lt;span style="color:black;"&gt;&amp;nbsp;ל &lt;/span&gt;&lt;b&gt;&lt;span style="color:black;mso-ansi-language:EN;"&gt;Bi User Group Meeting #43&lt;/span&gt;&lt;/b&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color:black;"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;(29.5.2013)&lt;/span&gt;&lt;/b&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;text-align:right;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;b&gt;&lt;span style="color:black;"&gt;&lt;font size="3"&gt;להרשמה:
&lt;/font&gt;&lt;a href="http://biug43.eventbrite.com/"&gt;&lt;font size="3"&gt;&lt;span&gt;http://biug43.eventbrite.com&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;/#&lt;/span&gt;&lt;/font&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;text-align:right;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;span&gt;&lt;font size="3"&gt;&lt;font face="Times New Roman"&gt;&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p style="margin:12pt 0in 6pt;text-align:right;line-height:16.8pt;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;span style="color:black;font-size:9pt;"&gt;17:30&lt;/span&gt;&lt;font size="3"&gt;&lt;b&gt;&lt;span style="color:black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; התכנסות&lt;/span&gt;&lt;/b&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p style="margin:12pt 0in 6pt;text-align:right;line-height:16.8pt;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;font size="3"&gt;&lt;span style="color:black;"&gt;18:00&lt;b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color:black;"&gt;Hadoop and BI: a
match made in heaven&lt;/span&gt;&lt;/b&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color:black;"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;?&lt;/span&gt;&lt;/b&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p align="right" style="margin:12pt 0in 6pt;text-align:left;line-height:16.8pt;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;span&gt;&lt;br /&gt;&lt;font size="3"&gt;
&lt;span style="color:black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;font size="3"&gt;&lt;span style="color:black;"&gt;Hadoop
is the stellar Big Data software framework these days. In the session we will
provide context to the rise and rise of this platform, explore various vendors&amp;#39;
Hadoop offerings, specifically relating to the DWH and BI ecosystem, and try to
understand how relevant Hadoop really is for the BI community&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;span style="color:black;"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;.&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p style="margin:12pt 0in 6pt;text-align:right;line-height:16.8pt;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;span style="color:black;font-size:9pt;"&gt;&lt;font face="Times New Roman"&gt;19:30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&lt;/font&gt;&lt;/span&gt;&lt;font size="3"&gt;&lt;b&gt;&lt;span style="color:black;"&gt;הפסקה&lt;/span&gt;&lt;/b&gt;&lt;font face="Times New Roman"&gt;&lt;span style="color:black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p style="margin:12pt 0in 6pt;text-align:right;line-height:16.8pt;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;span style="color:black;font-size:9pt;"&gt;19:45&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;font size="3"&gt;&lt;b&gt;&lt;span style="color:black;"&gt;שאלות ותשובות&lt;/span&gt;&lt;/b&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p style="margin:12pt 0in 6pt;text-align:right;line-height:16.8pt;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;span style="color:black;font-size:9pt;"&gt;20:30&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;font size="3"&gt;&lt;b&gt;&lt;span style="color:black;"&gt;סיום&lt;/span&gt;&lt;/b&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p style="margin:0in 0in 0pt;text-align:justify;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;font size="3"&gt;&lt;font face="Times New Roman"&gt;&lt;span style="color:black;"&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p style="margin:0in 0in 10pt;text-align:justify;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;font size="3"&gt;&lt;b&gt;&lt;span style="color:black;"&gt;המרצה:&lt;/span&gt;&lt;/b&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p style="margin:0in 1in 0pt 0in;text-align:right;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;font size="3"&gt;&lt;span style="color:black;"&gt;יניב מור, מנכ&amp;quot;ל חברת &lt;/span&gt;&lt;span style="color:black;"&gt;XPLENTY&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;span style="color:black;"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;, עוסק בתחום ה – &lt;/span&gt;&lt;span style="color:black;"&gt;DATA &lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;span style="color:black;"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&amp;nbsp;וה – &lt;/span&gt;&lt;span style="color:black;"&gt;BI &lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;span style="color:black;"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&amp;nbsp;כ – 13 שנים.&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p style="margin:0in 0in 0pt;text-align:justify;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;span style="color:black;mso-ansi-language:EN;"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;font face="Times New Roman" size="3"&gt;&amp;nbsp;&lt;/font&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;text-align:right;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;font size="3"&gt;&lt;span style="color:black;"&gt;נשמח
לראותכם!&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="margin:0in 0in 0pt;text-align:right;unicode-bidi:embed;direction:rtl;" dir="RTL"&gt;&lt;font size="3"&gt;&lt;strong&gt;&lt;span style="color:black;"&gt;להרשמה: &lt;/span&gt;&lt;/strong&gt;&lt;span style="color:black;"&gt;&lt;a href="http://biug43.eventbrite.com/"&gt;&lt;strong&gt;&lt;span style="text-decoration:none;text-underline:none;"&gt;http://biug43.eventbrite.com&lt;/span&gt;&lt;/strong&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;strong&gt;&lt;span style="text-decoration:none;text-underline:none;"&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;/#&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;font face="Times New Roman" size="3"&gt;

&lt;/font&gt;&lt;/p&gt;&lt;img src="http://blogs.microsoft.co.il/aggbug.aspx?PostID=2081565" width="1" height="1"&gt;</description><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/DEV/default.aspx">DEV</category><category domain="http://blogs.microsoft.co.il/blogs/bilive/archive/tags/TECH/default.aspx">TECH</category></item><item><title>Cumulative update package 12 for SQL Server 2008 R2 SP1</title><link>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/04/16/cumulative-update-package-12-for-sql-server-2008-r2-sp1.aspx</link><pubDate>Tue, 16 Apr 2013 20:58:10 GMT</pubDate><guid isPermaLink="false">b5c4f5bc-c09b-4439-a595-91a98c1847df:1908860</guid><dc:creator>Ronen Chenn</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.microsoft.co.il/blogs/bilive/rsscomments.aspx?PostID=1908860</wfw:commentRss><comments>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/04/16/cumulative-update-package-12-for-sql-server-2008-r2-sp1.aspx#comments</comments><description>&lt;p&gt;This article describes cumulative update package 12 for Microsoft SQL Server 2008 R2 Service Pack 1 (SP1). This update contains hotfixes for issues that were fixed after the release of SQL Server 2008 R2 SP1. &lt;br /&gt;&lt;b&gt;Note&lt;/b&gt; The build number of the cumulative update package is 10.50.2874.0.&lt;p&gt;&amp;nbsp;&lt;p&gt;For more info:&lt;p&gt;&lt;a title="http://support.microsoft.com/kb/2828727/en-us" href="http://support.microsoft.com/kb/2828727/en-us"&gt;http://support.microsoft.com/kb/2828727/en-us&lt;/a&gt;&lt;img src="http://blogs.microsoft.co.il/aggbug.aspx?PostID=1908860" width="1" height="1"&gt;</description></item><item><title>SQL Server Business Intelligence in Windows Azure Virtual Machines</title><link>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/04/16/sql-server-business-intelligence-in-windows-azure-virtual-machines.aspx</link><pubDate>Tue, 16 Apr 2013 20:57:06 GMT</pubDate><guid isPermaLink="false">b5c4f5bc-c09b-4439-a595-91a98c1847df:1908859</guid><dc:creator>Ronen Chenn</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://blogs.microsoft.co.il/blogs/bilive/rsscomments.aspx?PostID=1908859</wfw:commentRss><comments>http://blogs.microsoft.co.il/blogs/bilive/archive/2013/04/16/sql-server-business-intelligence-in-windows-azure-virtual-machines.aspx#comments</comments><description>&lt;p&gt;The Windows Azure Virtual Machine gallery includes images that contain SQL Server installations. The SQL Server editions supported in the gallery images are the same installation files you can install to on-premises computers and virtual machines. This topic summarizes the SQL Server Business Intelligence (BI) Features installed on the images and configuration steps required after a virtual machine is provisioned. This topic also describes supported deployment topologies for BI features and best practices.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For more info:&lt;/p&gt;&lt;p&gt;&lt;a title="http://msdn.microsoft.com/en-us/library/jj992719.aspx" href="http://msdn.microsoft.com/en-us/library/jj992719.aspx"&gt;http://msdn.microsoft.com/en-us/library/jj992719.aspx&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.microsoft.co.il/aggbug.aspx?PostID=1908859" width="1" height="1"&gt;</description></item></channel></rss>