<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for BI Grab Bag</title>
	<atom:link href="http://agilebi.com/ddarden/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://agilebi.com/ddarden</link>
	<description>A random assortment of BI tips, tricks, and information</description>
	<lastBuildDate>Thu, 26 Jan 2012 16:46:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on SQL Server Analysis Services Projects with Multiple Developers by Pavan</title>
		<link>http://agilebi.com/ddarden/2009/05/26/sql-server-analysis-services-projects-with-multiple-developers/#comment-4959</link>
		<dc:creator>Pavan</dc:creator>
		<pubDate>Thu, 26 Jan 2012 16:46:32 +0000</pubDate>
		<guid isPermaLink="false">/cs/blogs/ddarden/archive/2009/05/25/sql-server-analysis-services-projects-with-multiple-developers.aspx#comment-4959</guid>
		<description>Hello ddarden,
I haven&#039;t updated the default Microsoft.PowerShell_profile.ps1 profile file of powershell with the code for loading the ps1 files. I got that fixed by basically replacing the contents of that file with Profile.ps1. Now it is identifying the  Clean-SsasProject method and the clean operation works very well. This was much needed for us to save lot of time in my currrent project implementation. I have done some custom changes as per our project cleanup requirements.
Thanks a lot for this.

One problem that I found is that when the schema contains Unicode characters other than ASCII, then the cleaned file has some non unicode characters. 
Example: &#039;Costo Estándar&#039; is replaced with &#039;Costo EstÃ¡ndar&#039;. This can be problematic if the schema contains any Translations which are non ASCII characters.

I guess this problem is coming because of the way powershell handles the file content. When powershell&#039;s Get-Content function loads the text from the file to [xml][/xml] object, it loads in ASCII format, so it is not able to identify characters like á, thus it changes it to some junk characters Ã¡. 

To get away from this problem, I tried changing the file format to Unicode using 
Get-Content Product.dim &#124; Out-File -Encoding UTF8 Product_ANSI.dim, but it is not able to change those junk characters.

What do you think about this? If you could give me directions on this, it would be great. 

Also, it would be great help to BI community if you can add your project to Codeplex.

Cheers !!
Pavan</description>
		<content:encoded><![CDATA[<p>Hello ddarden,<br />
I haven&#8217;t updated the default Microsoft.PowerShell_profile.ps1 profile file of powershell with the code for loading the ps1 files. I got that fixed by basically replacing the contents of that file with Profile.ps1. Now it is identifying the  Clean-SsasProject method and the clean operation works very well. This was much needed for us to save lot of time in my currrent project implementation. I have done some custom changes as per our project cleanup requirements.<br />
Thanks a lot for this.</p>
<p>One problem that I found is that when the schema contains Unicode characters other than ASCII, then the cleaned file has some non unicode characters.<br />
Example: &#8216;Costo Estándar&#8217; is replaced with &#8216;Costo EstÃ¡ndar&#8217;. This can be problematic if the schema contains any Translations which are non ASCII characters.</p>
<p>I guess this problem is coming because of the way powershell handles the file content. When powershell&#8217;s Get-Content function loads the text from the file to [/xml] object, it loads in ASCII format, so it is not able to identify characters like á, thus it changes it to some junk characters Ã¡. </p>
<p>To get away from this problem, I tried changing the file format to Unicode using<br />
Get-Content Product.dim | Out-File -Encoding UTF8 Product_ANSI.dim, but it is not able to change those junk characters.</p>
<p>What do you think about this? If you could give me directions on this, it would be great. </p>
<p>Also, it would be great help to BI community if you can add your project to Codeplex.</p>
<p>Cheers !!<br />
Pavan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQL Server Analysis Services Projects with Multiple Developers by ddarden</title>
		<link>http://agilebi.com/ddarden/2009/05/26/sql-server-analysis-services-projects-with-multiple-developers/#comment-4937</link>
		<dc:creator>ddarden</dc:creator>
		<pubDate>Fri, 06 Jan 2012 19:43:44 +0000</pubDate>
		<guid isPermaLink="false">/cs/blogs/ddarden/archive/2009/05/25/sql-server-analysis-services-projects-with-multiple-developers.aspx#comment-4937</guid>
		<description>You will need to make sure the entire script is executed first in your session (i.e., defining the function) before you can use it.  You can do that by running the file as the first statement in your command, or by running it as part of your Profile.ps1.</description>
		<content:encoded><![CDATA[<p>You will need to make sure the entire script is executed first in your session (i.e., defining the function) before you can use it.  You can do that by running the file as the first statement in your command, or by running it as part of your Profile.ps1.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQL Server Analysis Services Projects with Multiple Developers by Pavan</title>
		<link>http://agilebi.com/ddarden/2009/05/26/sql-server-analysis-services-projects-with-multiple-developers/#comment-4936</link>
		<dc:creator>Pavan</dc:creator>
		<pubDate>Fri, 06 Jan 2012 17:24:31 +0000</pubDate>
		<guid isPermaLink="false">/cs/blogs/ddarden/archive/2009/05/25/sql-server-analysis-services-projects-with-multiple-developers.aspx#comment-4936</guid>
		<description>Hello,
This is very interesting and handy. Tried it out of curiosity on one of my local projects, but ran into the following error:
------------
The term &#039;Clean-SsasProject&#039; is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:18
+ Clean-SsasProject &lt;&lt;&lt; powershell -Command &quot;Clean-SsasProject C:\SampleSSASProjectFolderPath&quot;

Am i missing something? Looking forward to some help.

Thanks</description>
		<content:encoded><![CDATA[<p>Hello,<br />
This is very interesting and handy. Tried it out of curiosity on one of my local projects, but ran into the following error:<br />
&#8212;&#8212;&#8212;&#8212;<br />
The term &#8216;Clean-SsasProject&#8217; is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.<br />
At line:1 char:18<br />
+ Clean-SsasProject &lt;&lt;&lt; powershell -Command &#8220;Clean-SsasProject C:\SampleSSASProjectFolderPath&#8221;</p>
<p>Am i missing something? Looking forward to some help.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Deploying a custom SSRS Assembly to the GAC by Link Resource # 34 : DESC 08 &#8211; DESC 11 &#171; Dactylonomy of Web Resource</title>
		<link>http://agilebi.com/ddarden/2011/10/16/deploying-a-custom-ssrs-assembly-to-the-gac/#comment-4916</link>
		<dc:creator>Link Resource # 34 : DESC 08 &#8211; DESC 11 &#171; Dactylonomy of Web Resource</dc:creator>
		<pubDate>Sat, 10 Dec 2011 11:33:33 +0000</pubDate>
		<guid isPermaLink="false">http://agilebi.com/ddarden/?p=102#comment-4916</guid>
		<description>[...] Deploying a custom SSRS Assembly to the GAC [...]</description>
		<content:encoded><![CDATA[<p>[...] Deploying a custom SSRS Assembly to the GAC [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Demo Materials for PASS Session BIA-304&#8211;Building a Reporting Services Framework by Link Resource # 34 : DESC 08 &#8211; DESC 11 &#171; Dactylonomy of Web Resource</title>
		<link>http://agilebi.com/ddarden/2011/10/16/demo-materials-for-pass-session-bia-304building-a-reporting-services-framework/#comment-4915</link>
		<dc:creator>Link Resource # 34 : DESC 08 &#8211; DESC 11 &#171; Dactylonomy of Web Resource</dc:creator>
		<pubDate>Sat, 10 Dec 2011 11:32:08 +0000</pubDate>
		<guid isPermaLink="false">http://agilebi.com/ddarden/?p=96#comment-4915</guid>
		<description>[...] Demo Materials for PASS Session BIA-304–Building a Reporting Services Framework [...]</description>
		<content:encoded><![CDATA[<p>[...] Demo Materials for PASS Session BIA-304–Building a Reporting Services Framework [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Demo Materials for PASS Session BIA-304&#8211;Building a Reporting Services Framework by Link Resource # 33 : DESC 03-DESC 08 &#171; Dactylonomy of Web Resource</title>
		<link>http://agilebi.com/ddarden/2011/10/16/demo-materials-for-pass-session-bia-304building-a-reporting-services-framework/#comment-4913</link>
		<dc:creator>Link Resource # 33 : DESC 03-DESC 08 &#171; Dactylonomy of Web Resource</dc:creator>
		<pubDate>Thu, 08 Dec 2011 11:04:52 +0000</pubDate>
		<guid isPermaLink="false">http://agilebi.com/ddarden/?p=96#comment-4913</guid>
		<description>[...] Demo Materials for PASS Session BIA-304–Building a Reporting Services Framework [...]</description>
		<content:encoded><![CDATA[<p>[...] Demo Materials for PASS Session BIA-304–Building a Reporting Services Framework [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Deploying a custom SSRS Assembly to the GAC by Link Resource # 33 : DESC 03-DESC 08 &#171; Dactylonomy of Web Resource</title>
		<link>http://agilebi.com/ddarden/2011/10/16/deploying-a-custom-ssrs-assembly-to-the-gac/#comment-4912</link>
		<dc:creator>Link Resource # 33 : DESC 03-DESC 08 &#171; Dactylonomy of Web Resource</dc:creator>
		<pubDate>Thu, 08 Dec 2011 11:02:27 +0000</pubDate>
		<guid isPermaLink="false">http://agilebi.com/ddarden/?p=102#comment-4912</guid>
		<description>[...] Deploying a custom SSRS Assembly to the GAC [...]</description>
		<content:encoded><![CDATA[<p>[...] Deploying a custom SSRS Assembly to the GAC [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Deploying a custom SSRS Assembly to the GAC by Link Resource # 32 : DESC 01-DESC 02 &#171; Dactylonomy of Web Resource</title>
		<link>http://agilebi.com/ddarden/2011/10/16/deploying-a-custom-ssrs-assembly-to-the-gac/#comment-4903</link>
		<dc:creator>Link Resource # 32 : DESC 01-DESC 02 &#171; Dactylonomy of Web Resource</dc:creator>
		<pubDate>Thu, 01 Dec 2011 19:03:38 +0000</pubDate>
		<guid isPermaLink="false">http://agilebi.com/ddarden/?p=102#comment-4903</guid>
		<description>[...] Deploying a custom SSRS Assembly to the GAC [...]</description>
		<content:encoded><![CDATA[<p>[...] Deploying a custom SSRS Assembly to the GAC [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Deploying a custom SSRS Assembly to the GAC by Link Resource # 30 : Nov 01 &#8211; Nov 29 &#171; Dactylonomy of Web Resource</title>
		<link>http://agilebi.com/ddarden/2011/10/16/deploying-a-custom-ssrs-assembly-to-the-gac/#comment-4899</link>
		<dc:creator>Link Resource # 30 : Nov 01 &#8211; Nov 29 &#171; Dactylonomy of Web Resource</dc:creator>
		<pubDate>Tue, 29 Nov 2011 15:15:07 +0000</pubDate>
		<guid isPermaLink="false">http://agilebi.com/ddarden/?p=102#comment-4899</guid>
		<description>[...] Deploying a custom SSRS Assembly to the GAC [...]</description>
		<content:encoded><![CDATA[<p>[...] Deploying a custom SSRS Assembly to the GAC [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Demo Materials for PASS Session BIA-304&#8211;Building a Reporting Services Framework by Link Resource # 30 : Nov 01 &#8211; Nov 29 &#171; Dactylonomy of Web Resource</title>
		<link>http://agilebi.com/ddarden/2011/10/16/demo-materials-for-pass-session-bia-304building-a-reporting-services-framework/#comment-4898</link>
		<dc:creator>Link Resource # 30 : Nov 01 &#8211; Nov 29 &#171; Dactylonomy of Web Resource</dc:creator>
		<pubDate>Tue, 29 Nov 2011 15:13:09 +0000</pubDate>
		<guid isPermaLink="false">http://agilebi.com/ddarden/?p=96#comment-4898</guid>
		<description>[...] Demo Materials for PASS Session BIA-304–Building a Reporting Services Framework [...]</description>
		<content:encoded><![CDATA[<p>[...] Demo Materials for PASS Session BIA-304–Building a Reporting Services Framework [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

