<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://devpinoy.org/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>αρχάριος - All Comments</title><link>http://devpinoy.org/blogs/marl/default.aspx</link><description>greek, noun,  pron. &amp;quot;archarios&amp;quot; - beginner, learner, neophyte, novice</description><dc:language>en</dc:language><generator>CommunityServer 2008 (Build: 30417.1769)</generator><item><title>re: The “ALL” Parameter In SQL Server Reporting Services 2005</title><link>http://devpinoy.org/blogs/marl/archive/2008/10/18/the-all-parameter-in-sql-server-reporting-services-2005.aspx#30253</link><pubDate>Tue, 21 Oct 2008 06:16:08 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:30253</guid><dc:creator>marl</dc:creator><description>&lt;p&gt;@Keith &lt;/p&gt;
&lt;p&gt;&amp;quot;I try not to add a parameter called &amp;#39;ALL&amp;#39; in my reports. I learned from experience that users tend to think that they are selecting everything if they don&amp;#39;t specify any parameter thus i make use of a NULL check on my scripts.&amp;quot;&lt;/p&gt;
&lt;p&gt;Lol! You&amp;#39;re right! I changed the &amp;quot;ALL&amp;quot; into &amp;quot;&amp;lt;None&amp;gt;&amp;quot; in the production report. &amp;lt;None&amp;gt; is still lame, but it is more &amp;quot;politically&amp;quot; correct than &amp;quot;ALL&amp;quot;.&lt;/p&gt;
&lt;p&gt;Please expound more on &amp;quot;eliminating ALL-like feature&amp;quot;. What I originally wanted to do was just to deal with it will NULL checkbox; but I lost the checkbox when I added a &amp;quot;From Query&amp;quot; values to the parameter.&lt;/p&gt;
&lt;p&gt;Your thoughts on this?&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Marl&lt;/p&gt;
&lt;p&gt;- See you at the Code Camp @ USC&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=30253" width="1" height="1"&gt;</description></item><item><title>re: The “ALL” Parameter In SQL Server Reporting Services 2005</title><link>http://devpinoy.org/blogs/marl/archive/2008/10/18/the-all-parameter-in-sql-server-reporting-services-2005.aspx#30215</link><pubDate>Mon, 20 Oct 2008 23:19:12 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:30215</guid><dc:creator>keithrull</dc:creator><description>&lt;p&gt;Hi Marl,&lt;/p&gt;
&lt;p&gt;I try not to add a parameter called &amp;#39;ALL&amp;#39; in my reports. I learned from experience that users tend to think that they are selecting everything if they don&amp;#39;t specify any parameter thus i make use of a NULL check on my scripts.&lt;/p&gt;
&lt;p&gt;I agree with you that COALESCE is better than ISNULL. What i pointed out on my previous comment is just to show how to do this without &amp;#39;ALL&amp;#39;-like feature without using a UNION ALL.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Keith&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=30215" width="1" height="1"&gt;</description></item><item><title>re: The “ALL” Parameter In SQL Server Reporting Services 2005</title><link>http://devpinoy.org/blogs/marl/archive/2008/10/18/the-all-parameter-in-sql-server-reporting-services-2005.aspx#30204</link><pubDate>Mon, 20 Oct 2008 20:27:35 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:30204</guid><dc:creator>marl</dc:creator><description>&lt;p&gt;@Keith&lt;/p&gt;
&lt;p&gt;Thanks for the tip there! That will be helpful in my other tasks.&lt;/p&gt;
&lt;p&gt;The data source of my drop down column is from &amp;quot;Select Distinct&amp;quot; statement (which is returning 3 columns). I do not have the &amp;quot;ALL&amp;quot; word in my column; hence, the union all:&lt;/p&gt;
&lt;p&gt;Select &amp;#39;ALL&amp;#39; as column1, NULL as column2, Null as column3&lt;/p&gt;
&lt;p&gt;UNION ALL&lt;/p&gt;
&lt;p&gt;Select Distinct column1, column2, column3&lt;/p&gt;
&lt;p&gt;The post above pertains only to that one dropdown parameter I have in that report. So I do not need the &amp;quot;Where&amp;quot; clause because I only need the list that I needed for the parameter.&lt;/p&gt;
&lt;p&gt;For optionality, which I will discuss later, I use COALESCE rather than ISNULL.&lt;/p&gt;
&lt;p&gt;-Marl &amp;nbsp; &lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=30204" width="1" height="1"&gt;</description></item><item><title>re: The “ALL” Parameter In SQL Server Reporting Services 2005</title><link>http://devpinoy.org/blogs/marl/archive/2008/10/18/the-all-parameter-in-sql-server-reporting-services-2005.aspx#30184</link><pubDate>Mon, 20 Oct 2008 16:11:38 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:30184</guid><dc:creator>keithrull</dc:creator><description>&lt;p&gt;Hmmm... The better approach would be to have an ISNULL check on your WHERE clause:&lt;/p&gt;
&lt;p&gt;WHERE Name = ISNULL(@NameParameter, Name)&lt;/p&gt;
&lt;p&gt;This way the Name field always matches the Name value if @NameParameter is null and you don&amp;#39;t need to write the same query over again.&lt;/p&gt;
&lt;p&gt;;)&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=30184" width="1" height="1"&gt;</description></item><item><title>re: PDF to TEXT Using open-source library (PDFBox): Another Sample for Grade 1 Pupils</title><link>http://devpinoy.org/blogs/marl/archive/2008/03/04/pdf-to-text-using-open-source-library-pdfbox-another-sample-for-grade-1-pupils.aspx#27416</link><pubDate>Fri, 19 Sep 2008 13:09:08 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:27416</guid><dc:creator>Bhagat</dc:creator><description>&lt;p&gt;Thank you.&lt;/p&gt;
&lt;p&gt;Provided much help.&lt;/p&gt;
&lt;p&gt;Thanks again.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=27416" width="1" height="1"&gt;</description></item><item><title>Work at home moms.</title><link>http://devpinoy.org/blogs/marl/archive/2008/05/09/system-net-mail-everything-that-you-need-to-know.aspx#27152</link><pubDate>Sat, 06 Sep 2008 07:54:44 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:27152</guid><dc:creator>Work at home moms.</dc:creator><description>&lt;p&gt;Work from home moms. Top work at home moms. Moms work from home. Work for stay at home moms.&lt;/p&gt;
&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=27152" width="1" height="1"&gt;</description></item><item><title>Lexapro medication.</title><link>http://devpinoy.org/blogs/marl/archive/2008/03/14/link-a-luv-and-get-a-swag.aspx#27044</link><pubDate>Tue, 26 Aug 2008 20:23:42 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:27044</guid><dc:creator>Lexapro.</dc:creator><description>&lt;p&gt;Lexapro forum. Lexapro. Side effects of drug lexapro. Lexapro withdrawal.&lt;/p&gt;
&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=27044" width="1" height="1"&gt;</description></item><item><title>Lipitor.</title><link>http://devpinoy.org/blogs/marl/archive/2008/03/14/link-a-luv-and-get-a-swag.aspx#27032</link><pubDate>Mon, 25 Aug 2008 17:50:39 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:27032</guid><dc:creator>Lipitor banned.</dc:creator><description>&lt;p&gt;Stomatitis associated with lipitor. Benefits of lipitor. Lipitor. Genaric lipitor.&lt;/p&gt;
&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=27032" width="1" height="1"&gt;</description></item><item><title>Cheap zolpidem.</title><link>http://devpinoy.org/blogs/marl/archive/2008/03/14/link-a-luv-and-get-a-swag.aspx#26733</link><pubDate>Thu, 07 Aug 2008 07:06:10 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:26733</guid><dc:creator>Zolpidem.</dc:creator><description>&lt;p&gt;Zolpidem.&lt;/p&gt;
&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=26733" width="1" height="1"&gt;</description></item><item><title>Cephalexin.</title><link>http://devpinoy.org/blogs/marl/archive/2008/01/26/southern-california-code-camp-day-1.aspx#26570</link><pubDate>Wed, 30 Jul 2008 00:11:55 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:26570</guid><dc:creator>Cephalexin prices.</dc:creator><description>&lt;p&gt;Cephalexin. Cephalexin and herpes. Cephalexin dog instructions.&lt;/p&gt;
&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=26570" width="1" height="1"&gt;</description></item><item><title>Cheap zolpidem.</title><link>http://devpinoy.org/blogs/marl/archive/2008/03/01/testing-my-fios.aspx#26519</link><pubDate>Sat, 26 Jul 2008 12:31:05 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:26519</guid><dc:creator>Zolpidem next day delivery.</dc:creator><description>&lt;p&gt;Cheap zolpidem. Cheap zolpidem persriptions. Zolpidem fedex. Zolpidem with alcohol. Zolpidem abuse. Zolpidem.&lt;/p&gt;
&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=26519" width="1" height="1"&gt;</description></item><item><title>Valium.</title><link>http://devpinoy.org/blogs/marl/archive/2008/03/01/testing-my-fios.aspx#26345</link><pubDate>Wed, 16 Jul 2008 08:43:16 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:26345</guid><dc:creator>Valium.</dc:creator><description>&lt;p&gt;Valium.&lt;/p&gt;
&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=26345" width="1" height="1"&gt;</description></item><item><title>Vicodin and valium mix.</title><link>http://devpinoy.org/blogs/marl/archive/2008/04/14/internet-explorer-8.aspx#26076</link><pubDate>Sat, 28 Jun 2008 08:28:36 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:26076</guid><dc:creator>Valium liquid form.</dc:creator><description>&lt;p&gt;Valium without prescription. What does valium look like. Valium.&lt;/p&gt;
&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=26076" width="1" height="1"&gt;</description></item><item><title>Propecia.</title><link>http://devpinoy.org/blogs/marl/archive/2008/01/22/windows-vs-mac-os-x-you-won-t-believe-this.aspx#26075</link><pubDate>Sat, 28 Jun 2008 08:03:32 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:26075</guid><dc:creator>Compare prices on propecia generic mg pill.</dc:creator><description>&lt;p&gt;Propecia. Pill propecia. Propecia moins cher. Propecia side effects fre.&lt;/p&gt;
&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=26075" width="1" height="1"&gt;</description></item><item><title>Valium.</title><link>http://devpinoy.org/blogs/marl/archive/2008/03/14/link-a-luv-and-get-a-swag.aspx#26074</link><pubDate>Sat, 28 Jun 2008 08:02:42 GMT</pubDate><guid isPermaLink="false">99090821-4da1-4a75-98c2-a35884625ff7:26074</guid><dc:creator>Buy valium online.</dc:creator><description>&lt;p&gt;Roche valium for sale. Valium no prescription. Barmeister com drink recipe italian valium. Valium.&lt;/p&gt;
&lt;img src="http://devpinoy.org/aggbug.aspx?PostID=26074" width="1" height="1"&gt;</description></item></channel></rss>