<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>sql server 2000 &#8211; diditho.com</title>
	<atom:link href="https://diditho.com/tag/sql-server-2000/feed/" rel="self" type="application/rss+xml" />
	<link>https://diditho.com</link>
	<description>&#34; Knowing is not enough we must apply. Willing is not enough we must do &#34; - Bruce Lee</description>
	<lastBuildDate>Mon, 08 Jan 2024 09:50:47 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://diditho.com/wp-content/uploads/2023/11/cropped-diditho-photo-logo-512-x-512-32x32.png</url>
	<title>sql server 2000 &#8211; diditho.com</title>
	<link>https://diditho.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>SSAS: MDX Average Script On SSAS 2008</title>
		<link>https://diditho.com/2011/06/07/ssas-mdx-average-script-on-ssas-2008/</link>
					<comments>https://diditho.com/2011/06/07/ssas-mdx-average-script-on-ssas-2008/#respond</comments>
		
		<dc:creator><![CDATA[diditho]]></dc:creator>
		<pubDate>Tue, 07 Jun 2011 06:32:37 +0000</pubDate>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[analysis service]]></category>
		<category><![CDATA[bi]]></category>
		<category><![CDATA[mdx]]></category>
		<category><![CDATA[olap]]></category>
		<category><![CDATA[sql server 2000]]></category>
		<category><![CDATA[sql server 2008]]></category>
		<category><![CDATA[ssas]]></category>
		<guid isPermaLink="false">http://dev.diditho.net/?p=342</guid>

					<description><![CDATA[The MDX script on Microsoft Analysis Service (SSAS) 2008 and 2005 are different from SQL 2000. Here&#8217;s an example how to calculate average using MDX script on Analysis Service 2008. SSAS 2008, How to calculate Net Value By Date (NetValue / Date) AVG( Descendants( [Time].[Calendar].CurrentMember, [Time].[Calendar].[Date] ), [Measures].[NetValue] ) Old one, SSAS 2000, How to... <span class="more"><a class="more-link" href="https://diditho.com/2011/06/07/ssas-mdx-average-script-on-ssas-2008/">Continue reading <span class="meta-nav">&#8594;</span></a></span>]]></description>
		
					<wfw:commentRss>https://diditho.com/2011/06/07/ssas-mdx-average-script-on-ssas-2008/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Kill a lock process</title>
		<link>https://diditho.com/2008/07/18/18/</link>
					<comments>https://diditho.com/2008/07/18/18/#respond</comments>
		
		<dc:creator><![CDATA[diditho]]></dc:creator>
		<pubDate>Fri, 18 Jul 2008 05:57:15 +0000</pubDate>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[kill]]></category>
		<category><![CDATA[lock]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[sql server 2000]]></category>
		<guid isPermaLink="false">http://dev.diditho.net/?p=18</guid>

					<description><![CDATA[The last method (workaround) to solve a lock status is by killing the process. Write this line to Kill a process in sql server: --This example shows how to terminate SPID 55. KILL 55 --This example generates a status of the rollback process for the specific spid. KILL 55 WITH STATUSONLY &#8211;This is the progress... <span class="more"><a class="more-link" href="https://diditho.com/2008/07/18/18/">Continue reading <span class="meta-nav">&#8594;</span></a></span>]]></description>
		
					<wfw:commentRss>https://diditho.com/2008/07/18/18/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Multiple IIf Logic Block</title>
		<link>https://diditho.com/2008/06/25/multiple-iif-logic-block/</link>
					<comments>https://diditho.com/2008/06/25/multiple-iif-logic-block/#respond</comments>
		
		<dc:creator><![CDATA[diditho]]></dc:creator>
		<pubDate>Wed, 25 Jun 2008 10:30:18 +0000</pubDate>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[analysis service]]></category>
		<category><![CDATA[if]]></category>
		<category><![CDATA[iif]]></category>
		<category><![CDATA[logic]]></category>
		<category><![CDATA[mdx]]></category>
		<category><![CDATA[olap]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sql server 2000]]></category>
		<category><![CDATA[ssas]]></category>
		<guid isPermaLink="false">http://dev.diditho.net/?p=17</guid>

					<description><![CDATA[IIf function often used in MultiDimensionalExpression (MDX), It&#8217;s quiet simple to implement single block of IIf block. This an example of Multiple IIf logic block. Example1: IIf(Measures.[Store Sales] &#62; 50000, "Good", IIf(Measures.[Store Sales] &#62; 30000, "Average", IIf(Measures.[Store Sales] &#62; 10000, "Poor", "No")))]]></description>
		
					<wfw:commentRss>https://diditho.com/2008/06/25/multiple-iif-logic-block/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>If…Then..Else… in MultiDimensionalExpression</title>
		<link>https://diditho.com/2008/06/25/ifthenelse-in-multidimensionalexpression/</link>
					<comments>https://diditho.com/2008/06/25/ifthenelse-in-multidimensionalexpression/#respond</comments>
		
		<dc:creator><![CDATA[diditho]]></dc:creator>
		<pubDate>Wed, 25 Jun 2008 02:15:15 +0000</pubDate>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[analysis service]]></category>
		<category><![CDATA[else]]></category>
		<category><![CDATA[if]]></category>
		<category><![CDATA[logic]]></category>
		<category><![CDATA[mdx]]></category>
		<category><![CDATA[olap]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sql server 2000]]></category>
		<category><![CDATA[ssas]]></category>
		<category><![CDATA[then]]></category>
		<guid isPermaLink="false">http://dev.diditho.net/?p=16</guid>

					<description><![CDATA[A logical script in MDX to perform an &#8220;If..Then.. Else..&#8221; block. IIf(&#171;Logical Expression&#187;, &#171;Numeric/String Expression1&#187;, &#171;Numeric/String Expression2&#187;) Example1:The following example returns 0 if Measures.CurrentMember is an empty cell, 1 otherwise: IIf(IsEmpty(Measures.CurrentMember), 0, 1) Example2:The following string returns the string &#8220;Yes&#8221; if Measures.CurrentMember is an empty cell, the string, &#8220;No&#8221; otherwise: IIf(IsEmpty(Measures.CurrentMember), "Yes", "No") Example3: IIf(... <span class="more"><a class="more-link" href="https://diditho.com/2008/06/25/ifthenelse-in-multidimensionalexpression/">Continue reading <span class="meta-nav">&#8594;</span></a></span>]]></description>
		
					<wfw:commentRss>https://diditho.com/2008/06/25/ifthenelse-in-multidimensionalexpression/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Relative Contribution to Total Value (Percentage)</title>
		<link>https://diditho.com/2008/06/24/relative-contribution-to-total-value-percentage/</link>
					<comments>https://diditho.com/2008/06/24/relative-contribution-to-total-value-percentage/#respond</comments>
		
		<dc:creator><![CDATA[diditho]]></dc:creator>
		<pubDate>Tue, 24 Jun 2008 12:16:24 +0000</pubDate>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[analysis service]]></category>
		<category><![CDATA[contribution]]></category>
		<category><![CDATA[mdx]]></category>
		<category><![CDATA[olap]]></category>
		<category><![CDATA[percentage]]></category>
		<category><![CDATA[ratio]]></category>
		<category><![CDATA[relative]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sql server 2000]]></category>
		<category><![CDATA[ssas]]></category>
		<guid isPermaLink="false">http://dev.diditho.net/?p=15</guid>

					<description><![CDATA[There&#8217;s a few scenario to calculate a percentage of a measure in OLAP CUBE (Analysis Service 2000). A Percentage is common calculation in MDX , and it can be solved by divide a measure to&#160; total value (Grand Total). Sample 1:Measures.[Value Contribution to Total]: (Measures.[Value] / (Measures.[Value], Time.[All Time], Products.[All Products],&#8230;) Sample 2:Measures.[Value Contribution to... <span class="more"><a class="more-link" href="https://diditho.com/2008/06/24/relative-contribution-to-total-value-percentage/">Continue reading <span class="meta-nav">&#8594;</span></a></span>]]></description>
		
					<wfw:commentRss>https://diditho.com/2008/06/24/relative-contribution-to-total-value-percentage/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Shrink the log file on mssql server 2000</title>
		<link>https://diditho.com/2008/05/12/shrink-the-log-file-on-mssql-server-2000/</link>
		
		<dc:creator><![CDATA[diditho]]></dc:creator>
		<pubDate>Mon, 12 May 2008 12:54:39 +0000</pubDate>
				<category><![CDATA[dev]]></category>
		<category><![CDATA[log]]></category>
		<category><![CDATA[log file]]></category>
		<category><![CDATA[shrink]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sql server 2000]]></category>
		<category><![CDATA[truncate]]></category>
		<guid isPermaLink="false">http://dev.diditho.net/2008/05/12/shrink-the-log-file-on-mssql-server-2000/</guid>

					<description><![CDATA[sql server 2000 one of most powerful and easy to use database application. It&#8217;s nicely handle giga size data. Unfortunately the growth of the log file can be very frustrating. Sometimes there&#8217;s a certain difficulty when we want to shrink the log file, mainly because the database still running a process. usually we can use... <span class="more"><a class="more-link" href="https://diditho.com/2008/05/12/shrink-the-log-file-on-mssql-server-2000/">Continue reading <span class="meta-nav">&#8594;</span></a></span>]]></description>
		
		
		
			</item>
	</channel>
</rss>
