2
votes
2answers
79 views
SQL: Is “LIMIT 1” recommended for query where WHERE condition is based on PK ?
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.
E.g.
SELECT name FROM users WHERE u …
0
votes
2answers
27 views
SharePoint - Approaching Website Storage Limit Email
Hi all,
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 siz …
3
votes
2answers
59 views
What is the Equivalent syntax of mysql “ LIMIT “ clause in SQL Server
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 )
0
votes
3answers
61 views
How can I handle the problem whe AUTO_INCREMENT hit its limit?
Is there any good practice for this?
I wish I could solve the problem when primary key hit the limit and not to avoid it. Because this is what will happen in my specific problem.
…
0
votes
0answers
12 views
Restrict time limit while uploading file + php
Hi,
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 wi …
0
votes
1answer
50 views
Limiting characters inside HTML paragraph
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.
How can I do this?
The text is …
0
votes
4answers
44 views
How do I show X number of LI from a list using javascript (no frameworks)?
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.
Right now there is a dropdown menu on the …
0
votes
4answers
134 views
PHP: Limit foreach() statement?
How can i limit a foreach() statement?
Say i only want it to run the first 2 'eaches' or something?
0
votes
2answers
40 views
Text limit inside <span> XHTML?
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.
How do I go about doing this?
0
votes
1answer
52 views
Process n items at a time (using threads)
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:
threads = []
(1...10000).eac …
0
votes
3answers
57 views
Limit string chars - PHP
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 …
4
votes
2answers
132 views
scala mailbox size limit
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 ma …
0
votes
0answers
31 views
Howto limit the map in Android?
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 leve …
0
votes
1answer
23 views
Data bound drop down in a gridview template
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 drop …
0
votes
1answer
39 views
LIMIT 3 not returning the first three rows in sorted RS (I think)
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 …
