User smoothdeveloper - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T05:01:08Zhttp://stackoverflow.com/feeds/user/17049http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/311026/does-query-plan-optimizer-works-well-with-joined-filtered-table-valued-functions2Does query plan optimizer works well with joined/filtered table-valued functions?smoothdeveloper2008-11-22T07:30:41Z2009-09-09T04:55:14Z
<p>In SQLSERVER 2005, I'm using table-valued function as a convenient way to perform arbitrary aggregation on subset data from large table (passing date range or such parameters).</p>
<p>I'm using theses inside larger queries as joined computations and I'm wondering if the query plan optimizer work well with them in every condition or if I'm better to unnest such computation in my larger queries.</p>
<ol>
<li>Does query plan optimizer unnest
table-valued functions if it make
sense? </li>
<li>If it doesn't, what do you
recommend to avoid code duplication
that would occur by manually
unnesting them? </li>
<li>If it does, how do
you identify that from the execution
plan?</li>
</ol>
<p>code sample:</p>
<pre><code>create table dbo.customers (
[key] uniqueidentifier
, constraint pk_dbo_customers
primary key ([key])
)
go
/* assume large amount of data */
create table dbo.point_of_sales (
[key] uniqueidentifier
, customer_key uniqueidentifier
, constraint pk_dbo_point_of_sales
primary key ([key])
)
go
create table dbo.product_ranges (
[key] uniqueidentifier
, constraint pk_dbo_product_ranges
primary key ([key])
)
go
create table dbo.products (
[key] uniqueidentifier
, product_range_key uniqueidentifier
, release_date datetime
, constraint pk_dbo_products
primary key ([key])
, constraint fk_dbo_products_product_range_key
foreign key (product_range_key)
references dbo.product_ranges ([key])
)
go
</code></pre>
<p>.</p>
<pre><code>/* assume large amount of data */
create table dbo.sales_history (
[key] uniqueidentifier
, product_key uniqueidentifier
, point_of_sale_key uniqueidentifier
, accounting_date datetime
, amount money
, quantity int
, constraint pk_dbo_sales_history
primary key ([key])
, constraint fk_dbo_sales_history_product_key
foreign key (product_key)
references dbo.products ([key])
, constraint fk_dbo_sales_history_point_of_sale_key
foreign key (point_of_sale_key)
references dbo.point_of_sales ([key])
)
go
create function dbo.f_sales_history_..snip.._date_range
(
@accountingdatelowerbound datetime,
@accountingdateupperbound datetime
)
returns table as
return (
select
pos.customer_key
, sh.product_key
, sum(sh.amount) amount
, sum(sh.quantity) quantity
from
dbo.point_of_sales pos
inner join dbo.sales_history sh
on sh.point_of_sale_key = pos.[key]
where
sh.accounting_date between
@accountingdatelowerbound and
@accountingdateupperbound
group by
pos.customer_key
, sh.product_key
)
go
-- TODO: insert some data
-- this is a table containing a selection of product ranges
declare @selectedproductranges table([key] uniqueidentifier)
-- this is a table containing a selection of customers
declare @selectedcustomers table([key] uniqueidentifier)
declare @low datetime
, @up datetime
-- TODO: set top query parameters
</code></pre>
<p>.</p>
<pre><code>select
saleshistory.customer_key
, saleshistory.product_key
, saleshistory.amount
, saleshistory.quantity
from
dbo.products p
inner join @selectedproductranges productrangeselection
on p.product_range_key = productrangeselection.[key]
inner join @selectedcustomers customerselection on 1 = 1
inner join
dbo.f_sales_history_..snip.._date_range(@low, @up) saleshistory
on saleshistory.product_key = p.[key]
and saleshistory.customer_key = customerselection.[key]
</code></pre>
<p>I hope the sample makes sense.</p>
<p>Much thanks for your help!</p>
http://stackoverflow.com/questions/214487/is-there-a-name-for-this-type-of-page-navigation/720012#7200120Answer by smoothdeveloper for Is there a name for this type of page navigation?smoothdeveloper2009-04-06T01:27:40Z2009-04-06T01:27:40Z<p>thresholded navigation pager?</p>
http://stackoverflow.com/questions/99406/what-is-the-easiest-flv-player-for-embedding-video-on-a-website/620737#6207372Answer by smoothdeveloper for What is the easiest FLV player for embedding video on a website?smoothdeveloper2009-03-06T22:41:29Z2009-03-06T22:41:29Z<p>I haven't tried yet <strong><a href="http://flowplayer.org" rel="nofollow">Flowplayer</a></strong> which seems well documented</p>
<p>it is featured on <strong><a href="http://www.arcticstartup.com/2009/02/12/flowplayer-the-next-open-source-success/" rel="nofollow">arctic startup</a></strong> and only restriction to use it with opensource licence is to have their logo displayed</p>
http://stackoverflow.com/questions/563035/can-i-pass-custom-data-in-the-http-header/563765#5637651Answer by smoothdeveloper for Can I pass custom data in the HTTP header?smoothdeveloper2009-02-19T02:48:46Z2009-02-19T02:48:46Z<p>I've used this concept once to handle logout redirect for ajax calls in an intranet web application (nothing related to webservice).</p>
<p>it was my best solution at hand, but as some other have said it depends if you can push the constraint to clients to treat theses headers for your purpose.</p>
<p>Definitely not a thing you would want to do by default.</p>
http://stackoverflow.com/questions/563740/jquery-how-to-add-a-class-to-every-last-list-item/563753#563753-1Answer by smoothdeveloper for JQuery - How to add a class to every last list item?smoothdeveloper2009-02-19T02:44:09Z2009-02-19T02:44:09Z<p>you can try</p>
<pre><code>$('#sidebar ul li:last').addClass('last');
</code></pre>
http://stackoverflow.com/questions/470495/how-can-i-toggle-a-list-based-on-a-radio-button-with-asp-net-mvc/470600#4706000Answer by smoothdeveloper for How can I toggle a list based on a radio button with asp.net mvc?smoothdeveloper2009-01-22T20:03:52Z2009-01-22T20:13:52Z<p>I'll respond following the flow of my understanding:</p>
<blockquote>
<p>Suppose I have a list of tickets. When the user first goes to the tickets/index page I want to show all the open tickets and check the radio button with the name ticketStatus and value of Open.</p>
</blockquote>
<pre><code><div class="statusfilter">
<%foreach(TicketStatus status in view.PickableTicketStatus){%>
<input
type="radio"
name="ticketStatusFilter"
value="<%=status%>"
<%= viewlogic.IsSelectedStatusFilter(status) ? "selected='selected'" : "" %>
/>
<%}>
</div>
<ul class="tickets">
<%foreach(var t in view.Tickets){%>
<li>
<input type="hidden" name="ticketsToChange" value="<%=t.Key%>" />
<%=t.Title.AsHtmlEncoded()%>
</li>
<%}%>
</ul>
</code></pre>
<blockquote>
<p>If the user checks the Closed radio button with value Closed and name of ticketStatus I want to do a submit and get the list of closed tickets return to my tickets/index page and check the closed radio button.</p>
</blockquote>
<p>1: you need to handle change event on all inputs type="radio"</p>
<pre><code><!-- with jquery -->
$(document).ready(function(){
// register anonymous event handler to status radio change
$('div.statusfilter input[type='radio']")
.change(function(){
// see 2:
});
});
</code></pre>
<p>2: you need to post picked status to the server and get some response, two solutions:</p>
<ul>
<li>ajax request and get response</li>
<li>plain http refresh</li>
</ul>
<p>some recommandations:</p>
<p>if it's your main form: use a and use ajax for the other parts of the UI (searchbox, navigation...)</p>
<p>think why are you posting data (ajax or plain), if only need to display the tickets and switch with some control prefer one of theeses solution:</p>
<ul>
<li>use plain href and get url parameters</li>
<li>use partial refresh of the ticket list</li>
</ul>
<p>to get better design with few items for status, use tab or convenient UI </p>
<p>if you need some more detail, feel free to ask any specific question.</p>
<p>Hope this helps</p>
<p>edit: </p>
<ul>
<li>just to mention that this question would gain not belong to asp.net mvc, it's a general html/http/form scenario</li>
<li>also don't impose ajax to your client, the highest part of navigation should be handled with get/post at primary level, then adding non intrusive ajax to navigate</li>
</ul>
http://stackoverflow.com/questions/359393/jquery-child-of-clicked-element/359407#3594073Answer by smoothdeveloper for jQuery child of clicked elementsmoothdeveloper2008-12-11T13:52:12Z2008-12-11T14:53:40Z<p>I don't see the sample HTML but </p>
<pre><code>$(this).find('a:first').attr('id')
</code></pre>
<p>would do it (fix <em>a:first</em> selector if it's not what you meant)</p>
<p><strong>this</strong> refer to the element that fired your event</p>
http://stackoverflow.com/questions/359516/is-there-an-easy-method-to-read-an-external-web-pages-source-code-asp-net/359535#3595350Answer by smoothdeveloper for Is there an easy method to read an external web page's source code? ASP.NETsmoothdeveloper2008-12-11T14:30:55Z2008-12-11T14:30:55Z<p>You can look at <a href="http://msdn.microsoft.com/en-us/library/system.net.webrequest.aspx" rel="nofollow">System.Net.WebRequest</a> class and the sample</p>
<p>But please, don't make such <em>crappy</em> code as MSDN sample yourself, use the <a href="http://aspnetresources.com/blog/the_very_handy_using_statement.aspx" rel="nofollow">using</a> idiom where appropriate</p>
http://stackoverflow.com/questions/359284/javascript-submitting-of-a-form-within-a-method/359338#3593381Answer by smoothdeveloper for Javascript submitting of a form within a methodsmoothdeveloper2008-12-11T13:27:57Z2008-12-11T14:11:42Z<p>with plain POST (no ajax) you need to store the result of your process (image order id retrieval) in an form field:</p>
<pre><code><input type="hidden" name="imagesorder" value=""/>
</code></pre>
<p>in your function, you can set the value to this field after the orderString is populated:</p>
<pre><code>document.getElementsByName('imagesorder')[0].value = orderString;
</code></pre>
<p>then submit the form, you can do this by replacing your </p>
<pre><code><input type="button" .../>
</code></pre>
<p>with</p>
<pre><code><input type="submit" .../>
</code></pre>
<p>on the server side you will then get the value in the post collection (I'm not php dev)</p>
<pre><code>$_POST['imagesorder']
</code></pre>
http://stackoverflow.com/questions/359343/how-to-set-up-a-not-local-svn-server/359382#3593821Answer by smoothdeveloper for How to set up a not-local svn-server?smoothdeveloper2008-12-11T13:44:11Z2008-12-11T13:44:11Z<p>theses are default directory optionally created with VisualSVN when you setup a repository, this is a longtime convention for repository structure:</p>
<p><em>(disclaimer: I'm not svn lawyer)</em></p>
<p><strong>trunk</strong>: will contain your development mainline, you develop new features here</p>
<p><strong>branches</strong>: are sidelines for your development, branches are generally created from the trunk or another parent branch. You generally use branches to develop new features before merging them in the trunk, or to do maintenance tasks</p>
<p><strong>tags</strong>: is just a place to put your release revision for reference, you can't (by default) overwrite branches created into tags</p>
<p>main thing: in svn all theses are directory, you can branch any existing branch to any other location (tags is restricted), and you can merge them later (with more or less pain) into another branch</p>
<p>theses are all generic descriptions, and there is various usage pattern of branches, if you need more information, thank you for being more precise.</p>
<p>edit: also I recommend to take the time to read <a href="http://svnbook.red-bean.com/en/1.1/ch04.html" rel="nofollow">chapter 4 Branching and Merging</a></p>
http://stackoverflow.com/questions/347918/is-there-an-asp-net-mvc-view-engine-that-supports-javascript-views/347981#3479811Answer by smoothdeveloper for Is there an ASP.Net MVC view engine that supports JavaScript views?smoothdeveloper2008-12-07T19:50:24Z2008-12-07T19:50:24Z<p>You don't necessarily need view engine for that, just return plain text result.</p>
<p>Here is a controller (MonoRail) I've used to render some user culture settings in a javascript object:</p>
<pre><code>[ControllerDetails("js")]
public class JavascriptController : Controller
{
private ISessionContext sessionContext;
public JavascriptController(ISessionContext sessionContext)
{
this.sessionContext = sessionContext;
}
public void CultureInfo()
{
var scriptformat = @"var cultureInfo = {0};";
var json = Context.Services.JSONSerializer.Serialize(getJSONiZableCultureInfo(sessionContext.CurrentCulture));
RenderText(String.Format(scriptformat, json));
}
object getJSONiZableCultureInfo(System.Globalization.CultureInfo culture)
{
return new
{ // add more there
culture.NumberFormat
};
}
}
</code></pre>
<p>for more complex things for which raw text rendering would smell, any view engine would work.</p>
<p>Also you are not forced to use .js extension to put the url in your script tag.</p>
http://stackoverflow.com/questions/338824/are-subversion-externals-an-antipattern/345447#3454473Answer by smoothdeveloper for Are subversion externals an antipattern?smoothdeveloper2008-12-05T22:54:21Z2008-12-05T22:54:21Z<p>If plain external is an anti-pattern because it can break your repository, then one with explicit revision should'nt.</p>
<p>Excerpt from <a href="http://svnbook.red-bean.com/en/1.0/ch07s03.html" rel="nofollow">svn book</a>:</p>
<blockquote>
<p>An externals definition is a mapping of a local directory to the URL**—and possibly a particular revision—**of a versioned resource.</p>
</blockquote>
<p>I think it's all depend your purpose of using the feature, it is not an anti-pattern by itself.</p>
http://stackoverflow.com/questions/221710/are-there-any-good-javascript-graphics-libraries/315820#3158201Answer by smoothdeveloper for Are there any good Javascript graphics libraries?smoothdeveloper2008-11-24T23:08:05Z2008-11-25T01:21:22Z<p>The canvas html element may be the best backing and is used as such in many libraries (I know flot and processingjs mentionned by sibblings are using it)</p>
<p>canvas element is the lower API abstraction level you can get, which may be conceptually similar to <a href="http://www.cairographics.org/" rel="nofollow" title="Cairo graphics library">Cairo</a> or <a href="http://fr.wikipedia.org/wiki/Graphics_Device_Interface" rel="nofollow">GDI</a></p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Canvas_(HTML_element)" rel="nofollow">http://en.wikipedia.org/wiki/Canvas_(HTML_element)</a></li>
<li><a href="https://developer.mozilla.org/En/HTML:Canvas" rel="nofollow">https://developer.mozilla.org/En/HTML:Canvas</a></li>
</ul>
http://stackoverflow.com/questions/311043/how-do-i-select-top-10-rows-in-a-table-without-sorting/311056#3110563Answer by smoothdeveloper for How do I select top 10 rows in a table without sorting?smoothdeveloper2008-11-22T08:01:16Z2008-11-22T08:01:16Z<p>if random order is needed, you can try</p>
<pre><code>select top 10 * from [tablename] order by newid()
</code></pre>
http://stackoverflow.com/questions/189280/problem-using-sqlite-memory-with-nhibernate/193400#193400Comment by smoothdeveloper on Problem using SQLite :memory: with NHibernatesmoothdeveloper2009-04-25T08:00:10Z2009-04-25T08:00:10Zalso take a look at this exemple implementing DriverConnectionProvider:
<a href="http://notepad2.wordpress.com/2008/05/19/unit-testing-castle-active-record-using-sqlite-in-memory-database/" rel="nofollow">notepad2.wordpress.com/2008/05/…</a>http://stackoverflow.com/questions/428376/telerik-ui-controls-vs-client-side-ui-with-jquery/440822#440822Comment by smoothdeveloper on Telerik UI controls vs client-side UI with jQuerysmoothdeveloper2009-04-20T20:53:38Z2009-04-20T20:53:38ZTodd: could you expand on "Telerik's unique advantage is that you can render both client-side and server-side":
I always tick when we are speaking of ASP.NET without javascript (think doPostback), I can't see how it would be with Telerik webcontrols.
I also tick when someone tells javascript avoid accessibility, it depends how obstrusive it is made.http://stackoverflow.com/questions/719924/what-to-return-from-the-dal-to-bll/719990#719990Comment by smoothdeveloper on What to return from the DAL to BLLsmoothdeveloper2009-04-06T01:23:40Z2009-04-06T01:23:40Z@AlteredConcept: you may create another Model project or suchhttp://stackoverflow.com/questions/563740/jquery-how-to-add-a-class-to-every-last-list-item/563760#563760Comment by smoothdeveloper on JQuery - How to add a class to every last list item?smoothdeveloper2009-02-19T02:50:06Z2009-02-19T02:50:06Zthanks for the tip, never tripped on that nowhttp://stackoverflow.com/questions/24450/what-are-the-best-mvc-web-frameworks-on-the-market/30244#30244Comment by smoothdeveloper on What are the best MVC web frameworks on the market?smoothdeveloper2009-02-08T13:01:29Z2009-02-08T13:01:29ZThe site is missleading:
Cache attribute on controller's actions works fine for me.http://stackoverflow.com/questions/470495/how-can-i-toggle-a-list-based-on-a-radio-button-with-asp-net-mvcComment by smoothdeveloper on How can I toggle a list based on a radio button with asp.net mvc?smoothdeveloper2009-01-22T20:05:06Z2009-01-22T20:05:06Zjust put an answer but was before code summon (is there any refresh for the main question as it works for answers?)http://stackoverflow.com/questions/455038/is-there-a-way-to-access-the-collection-of-current-sessions-in-asp-net/455047#455047Comment by smoothdeveloper on Is there a way to access the collection of current sessions in ASP.NET?smoothdeveloper2009-01-18T15:32:37Z2009-01-18T15:32:37ZSession end event wouldn't occur if session is out of process, even in process, it isn't guaranteed that it's trigged: see note on <a href="http://msdn.microsoft.com/en-us/library/system.web.sessionstate.sessionstatemodule.end.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/362956/what-database-does-google-use/363011#363011Comment by smoothdeveloper on What database does Google use?smoothdeveloper2008-12-12T17:44:10Z2008-12-12T17:44:10Zsee <a href="http://xooglers.blogspot.com/2005/12/lets-get-real-database.html" rel="nofollow">xooglers.blogspot.com/2005/12/…</a>http://stackoverflow.com/questions/359284/javascript-submitting-of-a-form-within-a-method/359338#359338Comment by smoothdeveloper on Javascript submitting of a form within a methodsmoothdeveloper2008-12-11T14:59:14Z2008-12-11T14:59:14Zthanks Rexxars, fixed :)http://stackoverflow.com/questions/359516/is-there-an-easy-method-to-read-an-external-web-pages-source-code-asp-net/359522#359522Comment by smoothdeveloper on Is there an easy method to read an external web page's source code? ASP.NETsmoothdeveloper2008-12-11T14:38:49Z2008-12-11T14:38:49ZI didn't know that c# with it's GC was applying the RAII idiom. I thought it would do for (stack allocated) struct but not for full fledged classes. I'm going to check this.http://stackoverflow.com/questions/359516/is-there-an-easy-method-to-read-an-external-web-pages-source-code-asp-net/359522#359522Comment by smoothdeveloper on Is there an easy method to read an external web page's source code? ASP.NETsmoothdeveloper2008-12-11T14:33:06Z2008-12-11T14:33:06Zthis one-liner should'nt be one-liner ;)
string content;
using(var wc = new WebClient()){
content = wc.DownloadString(url);
}
return content;http://stackoverflow.com/questions/359284/javascript-submitting-of-a-form-within-a-method/359385#359385Comment by smoothdeveloper on Javascript submitting of a form within a methodsmoothdeveloper2008-12-11T14:12:30Z2008-12-11T14:12:30Ztry
document.getElementsByName('imagesorder')[0]
too much time I don't use plain DOM, I also just fixed my answerhttp://stackoverflow.com/questions/359393/jquery-child-of-clicked-element/359407#359407Comment by smoothdeveloper on jQuery child of clicked elementsmoothdeveloper2008-12-11T13:54:45Z2008-12-11T13:54:45ZI was just blind :)http://stackoverflow.com/questions/347918/is-there-an-asp-net-mvc-view-engine-that-supports-javascript-views/347981#347981Comment by smoothdeveloper on Is there an ASP.Net MVC view engine that supports JavaScript views?smoothdeveloper2008-12-08T00:05:57Z2008-12-08T00:05:57ZI missed the point of your question (now clearer with the edit).
Seems like you are talking about some javascript helper.
Again, that is achieved with plain helper class which define a somewhat DSL to output javascript
for monorail take at this, see:
<a href="http://markmail.org/message/zzjxhpjwxsnib2uk" rel="nofollow">markmail.org/message/zzjxhpjwxsnib2uk</a>