1
vote
2answers
55 views
SQL: How do I use parameter for TOP like in SELECT TOP @amount?
In the vs2008 query builder, I’m trying to make a query that gets a parameter for the "TOP" Command, but it won't let me, and it say's "Error in top expression"
Works:
SELECT TOP 5 * FROM …
1
vote
2answers
31 views
automate: finding non-used servers from a list of servers
i have access to a few linux clusters at school. sometimes they are busy and sometimes they are not. i usually log into each machine manually, use the "top" command to see if the server is busy (to …
0
votes
4answers
53 views
jQuery: Scroll to anchor when calling URL, replace browsers behaviour
Hey there,
I already know the jQuery plugin ScrollTo, but I didn't find any way up to now to realize the following:
The users gets to my site (by typing, NOT by clicking a link on my page) …
0
votes
0answers
17 views
Is my centOS dedicated server caching disk files appropriately, or not? [closed]
Here's the head of the top output from my centOS 5 server, at a moment with very low load. What I want to know is whether it is using its free memory wisely to cache files from disk. Of 2G of RAM, …
1
vote
2answers
53 views
IE6 _top links inside iframe between domains
I have a domain containing an iframe with contents from another domain. Inside this iframe are _top links. On IE6 nothing at all happens when you click them. I have prepared a minimal example of this. …
4
votes
5answers
229 views
Should SQL ranking functionality be considered as “use with caution”
This question originates from a discussion on whether to use SQL ranking functionality or not in a particular case.
Any common RDBMS includes some ranking functionality, i.e. it's query language has …
0
votes
0answers
83 views
What software is the most famous in the world? [closed]
What software is the most famous in the world up-to-date?
I would like to hear some opinions :-)
1
vote
4answers
146 views
SQL to produce Top 10 and Other
Imagine I have a table showing the sales of Acme Widgets, and where they were sold. It's fairly easy to produce a report grouping sales by country. It's fairly easy to find the top 10. But what I'd …
1
vote
0answers
128 views
How to understand the memory usage and load average in linux server [closed]
Hi,
I am using a linux server which has 128GB of memory and 24 cores. I use top to see how much it is used. Its output is pasted at the end of the post. Here are two questions:
(1) I see that each …
0
votes
1answer
256 views
How can I do paging in Sybase without making temp table? (oracle rownum issue)
In Oracle, usually query like this for paging.
SELECT * FROM (SELECT *, rownum rid FROM TABLEA WHERE rownum <= #pageend#)
WHERE rid > #pagestart#
However, there is no "rownum" function in …
1
vote
1answer
249 views
SQL query for Top 5 of every category
Hi there,
I have a table that has three columns: Category, Timestamp and Value.
What I want is a SQL select that will give me the 5 most recent values of each category. How would I go about and do …
0
votes
2answers
92 views
Selecting “latest” row (up to a date) from a table (Sql Server 2008)
I have quite a few stored procedures following the pattern of selecting the row for which a date column is the latest up to a certain date, inclusive. I see two forms in use:
select top 1 x, y, z …
1
vote
1answer
104 views
how to solve the problem “ error: invalid use of ‘this’ at top level”?
I'm try to add multi-interface in ns2 following the paper Adding Multiple Interface Support in NS-2. When changing the file channel.cc, I add code below:
nextX_[this−>index()]
…
2
votes
3answers
171 views
Retrieve TOP X members of each group using SQL Server 2005
I've seen this question asked a couple of times, and I've written my own query, but it's quite slow, and I would be extremely grateful if someone could offer advice on how to speed it up.
In a …
2
votes
1answer
236 views
PyQt - make window top level
Hello, i need to make my window top level when i need.
Code of creating window:
class Application(QtGui.QMainWindow):
def __init__(self, parent=None):
QtGui.QMainWindow.__init__(self, …
