active questions tagged limit - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T02:39:58Zhttp://stackoverflow.com/feeds/tag/limithttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1824267/limit-foreign-key-choices-in-select-in-an-inline-form-in-admin1Limit foreign key choices in select in an inline form in adminmightyhal2009-12-01T06:01:18Z2009-12-02T02:30:40Z
<p>Edited :-) Hopefully a bit clearer now.</p>
<p>The logic is of the model is: </p>
<ul>
<li><p>A <code>Building</code> has many <code>Rooms</code></p></li>
<li><p>A <code>Room</code> may be inside another <code>Room</code> (a closet, for instance--ForeignKey on 'self') </p></li>
<li>A <code>Room</code> can only in inside of another <code>Room</code> in the same building (this is the tricky part) </li>
</ul>
<p>Here's the code I have: </p>
<pre><code>#spaces/models.py
from django.db import models
class Building(models.Model):
name=models.CharField(max_length=32)
def __unicode__(self):
return self.name
class Room(models.Model):
number=models.CharField(max_length=8)
building=models.ForeignKey(Building)
inside_room=models.ForeignKey('self',blank=True,null=True)
def __unicode__(self):
return self.number
</code></pre>
<p>and:</p>
<pre><code>#spaces/admin.py
from ex.spaces.models import Building, Room
from django.contrib import admin
class RoomAdmin(admin.ModelAdmin):
pass
class RoomInline(admin.TabularInline):
model = Room
extra = 2
class BuildingAdmin(admin.ModelAdmin):
inlines=[RoomInline]
admin.site.register(Building, BuildingAdmin)
admin.site.register(Room)
</code></pre>
<p>The inline will display only rooms in the current building (which is what I want). The problem, though, is that for the <code>inside_room</code> drop down, it displays all of the rooms in the Rooms table (including those in other buildings).</p>
<p>In the inline of <code>rooms</code>, I need to limit the <code>inside_room</code> choices to only <code>rooms</code> which are in the current <code>building</code> being displayed by the main form. </p>
<p>I can't figure out a way to do it with either a <code>limit_choices_to</code> in the model, nor can I figure out how exactly to override the admin's inline formset properly (I feel like I should be somehow create a custom inline form, pass the building_id of the main form to the custom inline, then limit the queryset for the field's choices based on that--but I just can't wrap my head around how to do it).</p>
<p>Maybe this is too complex for the admin site, but it seems like something that would be generally useful... </p>
<p>Thanks again for your help!</p>
http://stackoverflow.com/questions/1822531/conditional-limit-in-mysql-query-possible-1Conditional limit in mySQL query possible??? Booosh2009-11-30T21:30:56Z2009-12-01T21:54:03Z
<p>Hi everyone,
i am faced with a decicion regarding handling threaded comments in our project...
I have a simple MySQL table which holds all the comments. There are two types: parents and childs. Childs represent a reply to a parent or another child.</p>
<p><b>My problem:</b></p>
<p>-Comment (depth 0)<br>
-- Reply Child (depth 1)<br>
--- Reply to previous child (depth 2)<br>
-Comment (depth 0)</p>
<p>Imagine the above structure and a MySQL query with LIMIT 2. It would cut of the last reply (depth 2). Actually i would like to say something like: Try to limit to 2, if child left go on until the next parent. Tried several queries with no luck...</p>
<p>What i have right now is as followed:<br>
SELECT
SQL_CALC_FOUND_ROWS
*
FROM
comments
WHERE
comment_post_id = '{$_REQUEST["ID"]}'
ORDER BY
comment_id, comment_date
DESC LIMIT 10"</p>
<p>The important table fields are:<br>
comment_id (index) | comment_parent_id (contains comment_id of parent or NULL)| comment_date </p>
<p>I would be very thankful for any ideas!!! </p>
<p>Saludos,
Booosh</p>
http://stackoverflow.com/questions/1697393/limiting-characters-inside-html-paragraph0Limiting characters inside HTML paragraphSmith2009-11-08T18:12:38Z2009-12-01T13:29:13Z
<p>I want to make it so there's only 350 characters inside the paragraph, regardless of how many characters are put into it, I only want 350 displayed.</p>
<p>How can I do this?
The text is just in a div tag in <p> text.</p>
<p>Cheers</p>
http://stackoverflow.com/questions/1820310/limit-the-of-rows-being-housed-in-a-sql-table-1Limit the # of rows being housed in a SQL tableSean2009-11-30T14:57:51Z2009-11-30T15:27:23Z
<p>This is a table design issue. I have a table that stores IP addresses. The data in the table is queried very heavily. The IPs can have different flags such as "unblocked", "temporarily blocked" and "permanently blocked". 95% - 99% of the IP addresses do not have any type of block on them. </p>
<p>Is there a way to limit the # of rows in the table without excluding any of the data - while keeping all of the data in the same table? </p>
<p>A suggestion that was made to me was to utilize comma delimited values in one of the fields (I presume with unblocked IP addresses). I am not at all familiar with this technique, however. </p>
http://stackoverflow.com/questions/1816354/decrement-in-mysql-goes-past-zero1Decrement in mysql goes past zeroMr_Chimp2009-11-29T18:40:06Z2009-11-29T18:47:02Z
<p>I am trying to do this in mysql:</p>
<p>UPDATE table SET value = value - 1 WHERE blah blah</p>
<p>If value is 0 and this is run value is set to 4294967295. This is because it is an unsigned integer so it is looping round back to the maximum value.</p>
<p>How would I go about making it stay on zero instead? Can I do this purely in the sql?</p>
http://stackoverflow.com/questions/1774361/sql-is-limit-1-recommended-for-query-where-where-condition-is-based-on-pk2SQL: Is "LIMIT 1" recommended for query where WHERE condition is based on PK ?justinl2009-11-21T03:04:13Z2009-11-27T03:24:44Z
<p>I am querying a mySQL database to retrieve the data from 1 particular row. I'm using the table primary key as the WHERE constraint parameter.</p>
<p>E.g.</p>
<pre><code>SELECT name FROM users WHERE userid = 4
</code></pre>
<p>The userid column is the primary key of the table. Is it good practice to use LIMIT 1 on the end of that mySQL statement? Or are there any speed benefits?</p>
http://stackoverflow.com/questions/1799272/does-anyone-know-of-a-way-to-view-all-compiler-warnings-for-a-vb-net-project1Does anyone know of a way to view all compiler warnings for a VB.NET project?Technobabble2009-11-25T19:09:30Z2009-11-26T00:35:36Z
<p>VB.NET has this rather annoying limitation which caps compiler warnings reported at 100.</p>
<pre><code>vbc : warning BC42206: Maximum number of warnings has been exceeded.
</code></pre>
<p>This makes things rather frustrating when trying to size up the amount of effort that would be required to comply with VB.NET best practices, such as enabling Option Strict.</p>
<p>Is there any way where this limitation could either be removed, adjusted, or could warnings be gathered by some other means (such as through a 3rd party code-analysis tool)?</p>
http://stackoverflow.com/questions/1785505/jvm-heap-limit-on-suse1jvm heap limit on SUSEmichelangelo2009-11-23T19:48:28Z2009-11-25T22:03:02Z
<p>hello,
I hope you can help me on the problem we have with SUSE and JDK 1.4.x:
my suse is PAE enabled with 15Gb RAM.
unfotunately jvm cannot allocate more than 1900Mb for heap size.
So java -Xmx2048m gives me an error.
it seems you had the same problem, did you solve it? I hope so :)</p>
<p>thanks
Michelangelo</p>
http://stackoverflow.com/questions/1778865/simple-query-takes-15-30-seconds3Simple query takes 15-30 secondselmonty2009-11-22T14:36:25Z2009-11-24T01:56:56Z
<p>The following query is pretty simple. It selects the last 20 records from a messages table for use in a paging scenario. The first time this query is run, it takes from 15 to 30 seconds. Subsequent runs take less than a second (I expect some caching is involved). I am trying to determine why the first time takes so long.</p>
<p>Here's the query:</p>
<pre><code>SELECT DISTINCT ID,List,`From`,Subject, UNIX_TIMESTAMP(MsgDate) AS FmtDate
FROM messages
WHERE List='general'
ORDER BY MsgDate
LIMIT 17290,20;
</code></pre>
<p>MySQL version: 4.0.26-log</p>
<p>Here's the table:</p>
<pre><code>messages CREATE TABLE `messages` (
`ID` int(10) unsigned NOT NULL auto_increment,
`List` varchar(10) NOT NULL default '',
`MessageId` varchar(128) NOT NULL default '',
`From` varchar(128) NOT NULL default '',
`Subject` varchar(128) NOT NULL default '',
`MsgDate` datetime NOT NULL default '0000-00-00 00:00:00',
`TextBody` longtext NOT NULL,
`HtmlBody` longtext NOT NULL,
`Headers` text NOT NULL,
`UserID` int(10) unsigned default NULL,
PRIMARY KEY (`ID`),
UNIQUE KEY `List` (`List`,`MsgDate`,`MessageId`),
KEY `From` (`From`),
KEY `UserID` (`UserID`,`List`,`MsgDate`),
KEY `MsgDate` (`MsgDate`),
KEY `ListOnly` (`List`)
) TYPE=MyISAM ROW_FORMAT=DYNAMIC
</code></pre>
<p>Here's the explain:</p>
<pre><code>table type possible_keys key key_len ref rows Extra
------ ------ ------------- -------- ------- ------ ------ --------------------------------------------
m ref List,ListOnly ListOnly 10 const 18002 Using where; Using temporary; Using filesort
</code></pre>
<p>Why is it using a filesort when I have indexes on all the relevant columns? I added the ListOnly index just to see if it would help. I had originally thought that the List index would handle both the list selection and the sorting on MsgDate, but it didn't. Now that I added the ListOnly index, that's the one it uses, but it still does a filesort on MsgDate, which is what I suspect is taking so long.</p>
<p>I tried using FORCE INDEX as follows:</p>
<pre><code>SELECT DISTINCT ID,List,`From`,Subject, UNIX_TIMESTAMP(MsgDate) AS FmtDate
FROM messages
FORCE INDEX (List)
WHERE List='general'
ORDER BY MsgDate
LIMIT 17290,20;
</code></pre>
<p>This does seem to force MySQL to use the index, but it doesn't speed up the query at all.</p>
<p>Here's the explain for this query:</p>
<pre><code>table type possible_keys key key_len ref rows Extra
------ ------ ------------- ------ ------- ------ ------ ----------------------------
m ref List List 10 const 18002 Using where; Using temporary
</code></pre>
<p><strong>UPDATES:</strong></p>
<p>I removed DISTINCT from the query. It didn't help performance at all.</p>
<p>I removed the UNIX_TIMESTAMP call. It also didn't affect performance.</p>
<p>I made a special case in my PHP code so that if I detect the user is looking at the last page of results, I add a WHERE clause that returns only the last 7 days of results: </p>
<pre><code>SELECT m.ID,List,From,Subject,MsgDate
FROM messages
WHERE MsgDate>='2009-11-15'
ORDER BY MsgDate DESC
LIMIT 20
</code></pre>
<p>This is a lot faster. However, as soon as I navigate to another page of results, it must use the old SQL and takes a very long time to execute. I can't think of a practical, realistic way to do this for all pages. Also, doing this special case makes my PHP code more complex.</p>
<p>Strangely, only the first time the original query is run takes a long time. Subsequent runs of either the same query or a query showing a different page of results (i.e., only the LIMIT clause changes) are very fast. The query slows down again if it has not been run for about 5 minutes.</p>
<p><strong>SOLUTION:</strong></p>
<p>The best solution I came up with is based on Jason Orendorff and Juliet's idea.</p>
<p>First, I determine if the current page is closer to the beginning or end of the total number of pages. If it's closer to the end, I use ORDER BY MsgDate DESC, apply an appropriate limit, then reverse the order of the returned records.</p>
<p>This makes retrieving pages close to the beginning or end of the resultset much faster (first time now takes 4-5 seconds instead of 15-30). If the user wants to navigate to a page near the middle (currently around the 430th page), then the speed might drop back down. But that would be a rare case.</p>
<p>So while there seems to be no perfect solution, this is much better than it was for most cases.</p>
<p>Thank you, Jason and Juliet.</p>
http://stackoverflow.com/questions/1145337/token-bucket-or-leaking-bucket-for-messages0Token Bucket or Leaking Bucket for messagesHoracio2009-07-17T19:52:20Z2009-11-20T20:00:02Z
<p>I am trying to limit my application send rate to 900kbps but the problem is that the protocol I use is message oriented and the messages have very different sizes. I can have messages from 40 bytes all the way up to 125000 bytes and all messages are send as atomic units.</p>
<p>I tried implementing a token bucket buffer but if I set a low bucket size the big packets never get send and a larger bucket will result in a large burst with no rate limiting at all.</p>
<p>This is my small implementation in C:</p>
<pre><code>typedef struct token_buffer {
size_t capacity;
size_t tokens;
double rate;
uint64_t timestamp;
} token_buffer;
static uint64_t time_now()
{
struct timeval ts;
gettimeofday(&ts, NULL);
return (uint64_t)(ts.tv_sec * 1000 + ts.tv_usec/1000);
}
static int token_buffer_init(token_buffer *tbf, size_t max_burst, double rate)
{
tbf->capacity = max_burst;
tbf->tokens = max_burst;
tbf->rate = rate;
tbf->timestamp = time_now();
}
static size_t token_buffer_consume(token_buffer *tbf, size_t bytes)
{
// Update the tokens
uint64_t now = time_now();
size_t delta = (size_t)(tbf->rate * (now - tbf->timestamp));
tbf->tokens = (tbf->capacity < tbf->tokens+delta)?tbf->capacity:tbf->tokens+delta;
tbf->timestamp = now;
fprintf(stdout, "TOKENS %d bytes: %d\n", tbf->tokens, bytes);
if(bytes <= tbf->tokens) {
tbf->tokens -= bytes;
} else {
return -1;
}
return 0;
}
</code></pre>
<p>Then somewhere in main():</p>
<pre><code>while(1) {
len = read_msg(&msg, file);
// Loop until we have enough tokens.
// if len is larger than the bucket capacity the loop never ends.
// if the capacity is too large then no rate limit occurs.
while(token_buffer_consume(&tbf,msg, len) != 0) {}
send_to_net(&msg, len);
}
</code></pre>
http://stackoverflow.com/questions/1666889/how-can-i-handle-the-problem-whe-autoincrement-hit-its-limit0How can I handle the problem whe AUTO_INCREMENT hit its limit?Ismael2009-11-03T11:56:47Z2009-11-20T18:46:20Z
<p>Is there any good practice for this?</p>
<p>I wish I could solve the problem when primary key hit the limit and <em>not</em> to avoid it. Because this is what will happen in my specific problem.</p>
<p>If it's unavoidable... What can i do?</p>
<blockquote>
<p>This is mysql question, is there Sybase sql anywhere same problem?</p>
</blockquote>
http://stackoverflow.com/questions/1739107/sharepoint-approaching-website-storage-limit-email0SharePoint - Approaching Website Storage Limit EmailEmon2009-11-15T22:34:35Z2009-11-19T07:38:01Z
<p>Hi all,</p>
<p>How can i go about changing the distribution list as well as the email text for the email that goes out to site collection admin when a site collection approaches it's size limit?</p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/1064005/limiting-array-results0Limiting Array resultsBifter2009-06-30T14:30:15Z2009-11-17T08:33:41Z
<p>Hi, I have the following code which currently limits the result into a couple of types (Banana, Orange or all):</p>
<pre><code>function selectFromArray($prefix="", $productArray=array()) {
if(!strlen($prefix)) return $productArray;
return array_filter($productArray,
create_function('$element',
'return (stripos($element[1],'.var_export($prefix, true).') === 0); '));
}
$setype = $_GET[stype];
$list = selectFromArray($setype, $list);
foreach($list as $r)
{
$size2 = $r[2];
echo "<tr>
<td id=\"id\"><span id=\"non_sorting_header\">" .$r[0]. "</span></td>
<td id=\"name\"><span id=\"non_sorting_header\">" .$r[1]. "</span></td>
<td id=\"speed\"><span id=\"sorting_header\">" .kMGTB2($size2). "</span></td>
<td id=\"download\"><span id=\"sorting_header\">" .$r[3]. " Gb<br />per month</span></td>
<td id=\"contract\"><span id=\"sorting_header\">1<br />month</span></td>
<td id=\"info\"><span id=\"non_sorting_header\">".$r[5]."</span></td>
<td id=\"buy\"><span id=\"non_sorting_header\">&pound;".$r[4]."<br />".$r[6]."</span></td>
</tr>";
}
</code></pre>
<p>$r[0] is the product type and $setype = $_GET[stype];
sets the product type.</p>
<p>I need to combine the code above with a way of limiting the results further by using $r[0] which is the id value in the array. The array is created from an XML query from another site - so I have no control over it, so its not just a case of removing the entries from the array.</p>
<p>For instance the array can have upto 50 different id's in it but I want to limit the ones displayed in the table to just 10 (1024,1045,1023 etc).</p>
<p>Please help this is doiung my head in!!!!</p>
http://stackoverflow.com/questions/1740527/restrict-time-limit-while-uploading-file-php0Restrict time limit while uploading file + phpvikas2009-11-16T06:59:51Z2009-11-16T06:59:51Z
<p>Hi,</p>
<p>How to restrict a file upload time limit in php i.e I have to upload only video files which are of time 1 and 4 minutes if user upload more than 6 minutes only 4 min file will be uploaded on server.</p>
http://stackoverflow.com/questions/1736563/what-is-the-equivalent-syntax-of-mysql-limit-clause-in-sql-server3What is the Equivalent syntax of mysql " LIMIT " clause in SQL Server Shyju2009-11-15T04:30:26Z2009-11-15T15:02:21Z
<p>What is the Equivalent syntax of MySQL " LIMIT " clause in SQL Server . I would like to use it for doing paging of my results. (want to show records5 to 10 )</p>
http://stackoverflow.com/questions/1696975/text-limit-inside-span-xhtml0Text limit inside <span> XHTML?Smith2009-11-08T16:04:53Z2009-11-08T16:12:25Z
<p>I would like to limit the text inside a tag so when I add a new article in my ASP admin panel, it only has 350 characters max.</p>
<p>How do I go about doing this?</p>
http://stackoverflow.com/questions/1690408/how-do-i-show-x-number-of-li-from-a-list-using-javascript-no-frameworks0How do I show X number of LI from a list using javascript (no frameworks)?Loony2nz2009-11-06T20:59:45Z2009-11-07T03:18:45Z
<p>I have a menu that is being populated by a server and I have no access to the server. So I am limited to doing this on the client side.</p>
<p>Right now there is a dropdown menu on the navigation with 14 choices. The client wants to only show 3 of them.</p>
<p>They're not using any frameworks like jquery or mootools, so I have to do this the old-fashioned way, yet, I'm at a wall.</p>
<p><code><ul id='mylist'></code><br>
<code><li>option 1</li></code><br>
<code><li>option 2</li></code><br>
<code><li>option 3</li></code><br>
<code><li>option 4</li></code><br>
<code><li>etc</li></code><br>
<code></ul></code> </p>
<p>What's the javascript code to add <code>display:none</code> to list items 4-14?</p>
<p>(this also helps me get back to JS fundamentals and not relying on frameworks).</p>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/1682697/data-bound-drop-down-in-a-gridview-template0Data bound drop down in a gridview templateOmair Aslam2009-11-05T18:43:51Z2009-11-06T05:22:29Z
<p>I need to limit the values in a data bound drop down placed in a template column in a gridview based on the text in another column in that row of the gridview. I also want the dropdown to be databound. Aparently, these two things are not possible at the same time as it gives a data bind error. I think .net prevents it because there is a likelihood of a valid value appearing in the database which doesnt exist in the drop down. </p>
<p>How can I accomplish this using a drop down or any other method.</p>
<p>Kindly help.</p>
http://stackoverflow.com/questions/1676767/howto-limit-the-map-in-android0Howto limit the map in Android?sebrock2009-11-04T21:32:21Z2009-11-04T21:32:21Z
<p>I'm developing my first Android application and it is based partly on displaying some information in Google Maps. I've managed to set a new center point and a new default zoom level (the area I want to display is a city).</p>
<p>Now is it possible to "lock" that new default view somehow? That is, the user should be able to zoom in/out and pan around only within this default area.</p>
http://stackoverflow.com/questions/1664529/process-n-items-at-a-time-using-threads0Process n items at a time (using threads)Vertis2009-11-03T00:17:51Z2009-11-03T00:50:07Z
<p>I'm doing what a lot of people probably need to do, processing tasks that have a variable execution time. I have the following proof of concept code:</p>
<pre><code>threads = []
(1...10000).each do |n|
threads << Thread.new do
run_for = rand(10)
puts "Starting thread #{n}(#{run_for})"
time=Time.new
while 1 do
if Time.new - time >= run_for then
break
else
sleep 1
end
end
puts "Ending thread #{n}(#{run_for})"
end
finished_threads = []
while threads.size >= 10 do
threads.each do |t|
finished_threads << t unless t.alive?
end
finished_threads.each do |t|
threads.delete(t)
end
end
end
</code></pre>
<p>It doesn't start a new thread until one of the previous threads has dropped off. Does anyone know a better, more elegant way of doing this?</p>
http://stackoverflow.com/questions/1656969/php-limit-foreach-statement0PHP: Limit foreach() statement?tarnfeld2009-11-01T11:50:00Z2009-11-02T00:57:57Z
<p>How can i limit a foreach() statement?
Say i only want it to run the first 2 'eaches' or something?</p>
http://stackoverflow.com/questions/1655886/limit-string-chars-php0Limit string chars - PHPtarnfeld2009-10-31T23:14:47Z2009-10-31T23:31:12Z
<p>I am building an RSS script with mysql, and i dont want an extra field in the database... i want to shrink down the body of the article with a "... Read More" but im not sure how i can limit the number of chars echoed out onto the page?</p>
<p>Of course not this syntax, but something along the lines of:</p>
<pre><code>echo(limit($row['newsBody'], 1000));
</code></pre>
<p>I dont mind if it takes 15 lines of code to do this ;)</p>
<p>P.S. I am sure limit() is a function, please dont tell me .. its just an example ;)</p>
<p>Thanks in advanced!</p>
http://stackoverflow.com/questions/1391083/limiting-the-size-of-a-mysql-table2Limiting the size of a mysql tableripper2342009-09-07T21:52:58Z2009-10-29T17:20:10Z
<p>Is it possible to limit the size (in disk size / rows) of a single mysql table?</p>
<p>If it is not possible, what is the easiest way to run multiple mysql engines on one physical computer? (my plan is to set one mysql instance's data files to a separate disk partition)</p>
http://stackoverflow.com/questions/1632430/how-does-tomcat-sandbox-web-apps0How does Tomcat sandbox web apps?tilish2009-10-27T17:33:21Z2009-10-28T14:01:42Z
<p>I have a web app that is being served through Tomcat. My app lets users submit their own workflow which will then be executed on the server. My problem is how to control how much memory each user is taking up on the server. I think Tomcat itself runs apps in a sandbox of its own. I say this because when my app runs out of memory and crashes, Tomcat still keeps running. How does Tomcat sandbox the app (or does it)? Does it run the app on a separate JVM?</p>
<p>On a related note, a similar question about controlling thread CPU and memory usage has been asked before. The solutions suggested were not acceptable for me and I'd like to believe that Tomcat has a different mechanism. But for those who are interested,
<a href="http://stackoverflow.com/questions/1202184/throttling-cpu-memory-usage-of-a-thread-in-java">http://stackoverflow.com/questions/1202184/throttling-cpu-memory-usage-of-a-thread-in-java</a></p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1305325/should-sql-ranking-functionality-be-considered-as-use-with-caution4Should SQL ranking functionality be considered as "use with caution"The Chairman2009-08-20T10:44:53Z2009-10-27T10:49:17Z
<p>This question originates from a discussion on whether to use SQL ranking functionality or not in a <a href="http://stackoverflow.com/questions/1283787/select-top-one-from-left-outer-join/1283994#1283994">particular case</a>.</p>
<p>Any common RDBMS includes some ranking functionality, i.e. it's query language has elements like <code>TOP n ... ORDER BY key</code>, <code>ROW_NUMBER() OVER (ORDER BY key)</code>, or <code>ORDER BY key LIMIT n</code> (<a href="http://troels.arvin.dk/db/rdbms/#select-limit-offset" rel="nofollow">overview</a>).</p>
<p>They do a great job in increasing performance if you want to present only a small chunk out of a huge number of records. But they also introduce a major pitfall: If <code>key</code> is not unique results are non-deterministic. Consider the following example:</p>
<p><hr /></p>
<pre><code>users
user_id name
1 John
2 Paul
3 George
4 Ringo
logins
login_id user_id login_date
1 4 2009-08-17
2 1 2009-08-18
3 2 2009-08-19
4 3 2009-08-20
</code></pre>
<p>A query is supposed to return the person who logged in last:</p>
<pre><code>SELECT TOP 1 users.*
FROM
logins JOIN
users ON logins.user_id = users.user_id
ORDER BY logins.login_date DESC
</code></pre>
<p>Just as expected <code>George</code> is returned and everything looks fine. But then a new record is inserted into <code>logins</code> table:</p>
<pre><code>1 4 2009-08-17
2 1 2009-08-18
3 2 2009-08-19
4 3 2009-08-20
5 4 2009-08-20
</code></pre>
<p>What does the query above return now? <code>Ringo</code>? <code>George</code>? You can't tell. As far as I remember e.g. MySQL 4.1 returns the first record physically created that matches the criteria, i.e. the result would be <code>George</code>. But this may vary from version to version and from DBMS to DBMS. What should have been returned? One might say <code>Ringo</code> since he apparently logged in last but this is pure interpretation. In my opinion both should have been returned, because you can't decide unambiguously from the data available.</p>
<p>So this query matches the requirements:</p>
<pre><code>SELECT users.*
FROM
logins JOIN
users ON
logins.user_id = users.user_id AND
logins.login_date = (
SELECT max(logins.login_date)
FROM
logins JOIN
users ON logins.user_id = users.user_id)
</code></pre>
<p>As an alternative some DBMSs provide special functions (e.g. Microsoft SQL Server 2005 introduces <code>TOP n WITH TIES ... ORDER BY key</code> (suggested by <a href="http://stackoverflow.com/users/27535/gbn">gbn</a>), <code>RANK</code>, and <code>DENSE_RANK</code> for this very purpose).</p>
<p><hr /></p>
<p>If you search SO for e.g. <code>ROW_NUMBER</code> you'll find numerous solutions which suggest using ranking functionality and miss to point out the possible problems.</p>
<p><strong>Question: What advice should be given if a solution that includes ranking functionality is proposed?</strong></p>
http://stackoverflow.com/questions/1626663/limit-3-not-returning-the-first-three-rows-in-sorted-rs-i-think0LIMIT 3 not returning the first three rows in sorted RS (I think)Geoff2009-10-26T18:52:59Z2009-10-26T21:15:53Z
<p>In my table I have looked manually and found that the top three idle units have been idle for 17, 13 and 13 days. When I use this SQL statement to try and pull the three rows with the highest idle column value, I don't get these numbers, I get 8, 7 and 7. Is there some other command I should use to grab the first 3 rows of a sorted resultset?</p>
<p>SELECT * FROM reporttables.idlereport WHERE LEFT(depot,3)='Roc' ORDER BY idle DESC LIMIT 3</p>
<p>Can anyone help me figure out what is wrong with this statement</p>
http://stackoverflow.com/questions/1617580/scala-mailbox-size-limit4scala mailbox size limittilish2009-10-24T10:17:49Z2009-10-25T07:29:38Z
<p>I can see that scala can solve the Producer-Consumer problem using actors. There is a couple of examples on the web but what is worrying me is the unlimited growth of an actor's mailbox.</p>
<p>Suppose the producer produces on a much faster rate than the consumer can consume. Using the traditional synchronized threads approach, I can set up a buffer size and if the buffer is full, I can ask the producer to wait. The scala Actor Model approaches that I have seen so far use the mailbox as a "buffer". But what if a consumer receives too many messages from the producer? The mailbox will keep growing and eventually the program will crash? Can actors specify mailbox size limit or is there some other elegant way of dealing with this in scala?</p>
http://stackoverflow.com/questions/1609869/how-to-impose-a-time-limit-on-a-whole-script-in-python0How to impose a time limit on a whole script in PythonLeonidas2009-10-22T20:49:31Z2009-10-22T23:31:00Z
<p>The user is entering a python script in a Java GUI python-editor and can run it from the editor. Is there a way to take the user's script and impose a time limit on the total script? </p>
<p>I'm familiar with how to this with functions / signal.alarm(but I'm on windows & unix Jython) but the only solution I have come up with is to put that script in a method in another script where I use the setTrace() function but that removes the "feature" that the value of global variables in it persist. ie.</p>
<pre><code>try:
i+=1
except NameError:
i=0
</code></pre>
<p>The value of 'i' increments by 1 with every execution.</p>
http://stackoverflow.com/questions/1595204/how-to-limit-result-based-on-the-fields0how to limit result based on the fieldsjoe2009-10-20T14:51:35Z2009-10-22T11:58:02Z
<p>How to use ' LIMIT' in mysql database query based on fields . just consider a user has 10 phone number and i would like to get only 5 phone number for that user . </p>
<p>I would like to get only 5 phone numbers per user . not only 5 results from database ? </p>
http://stackoverflow.com/questions/1309137/mysql-set-limit-to-string0Mysql set LIMIT to stringRuss2009-08-20T22:16:05Z2009-10-16T10:34:19Z
<p>Hi, </p>
<p>Say I define an alias 'count' in my Select Query and I want to limit the amount returned to count / 5 (or 20% of the table). How can I do this? Mysql doesn't seem to take anything but integers, not functions. </p>