Tagged Questions
The top tag has no wiki summary.
11
votes
4answers
8k views
Network usage top/htop on Linux
is there a htop/top on Linux where I get to sort processes by network usage ?
9
votes
5answers
706 views
Force Oracle to return TOP N rows with SKIP LOCKED
There are a few questions on how to implement a queue-like table (lock specific rows, selecting a certain number of them, and skipping currently locked rows) in Oracle and SQL Server.
How can I ...
7
votes
4answers
2k views
Change the ruby process name in top
I would like to change the name of the ruby process that gets displayed in the linux/unix top command. I have tried the
$0='miname'
approach but it only works with the ps command and in top the ...
6
votes
1answer
469 views
How do I get an Android Top Developer Badge?
Some apps in the Android Market have a Top Developer badge under their name. For example: Facebook for Android.
How can I get one?
6
votes
1answer
160 views
Python memory leaks trackdown?
Somehow the memory my Python program takes more and more memory as it runs (the VIRT and RES) column of the "top" command keep increasing.
However, I double checked my code extremely carefully, and ...
6
votes
4answers
710 views
Inspecting Java threads in Linux using top
I am inspecting a Java process in Linux using
top -H
However, I cannot read the name of the thread in the "COMMAND" column (because it is too long). If I use 'c' to expand the full name of the ...
6
votes
7answers
2k views
A process command in top
The problem comes up when you run couple of python scripts. in top at command, it shows only 'python' with these scripts. How to rename a process or otherwise tag it so that I could tell them apart in ...
5
votes
1answer
69 views
How to plot with x-axis at the top of the figure?
I would like to ask how to produce a plot similar to that in the figure below? Basically, how to have x-axis at the top of the figure. Thanks
Image from: ...
5
votes
2answers
265 views
How is top able to see memory usage
What language is top written in? I want to write a c++ program that can see how much memory individual processes are using in OSX. I can't make use of /proc, because that's not on OSX. top is able to ...
5
votes
2answers
458 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 ...
4
votes
2answers
418 views
T-SQL Is a sub query for an Update restriction Atomic with the update?
I've got a simple queue implementation in MS Sql Server 2008 R2. Here's the essense of the queue:
CREATE TABLE ToBeProcessed
(
Id BIGINT IDENTITY(1,1) PRIMARY KEY NOT NULL,
[Priority] INT ...
4
votes
3answers
3k views
How to measure separate CPU core usage for a process?
Is there any way to measure a specific process CPU usage by cores?
I know top is good for measuring the whole system's CPU usage by cores and taskset can provide information about which CPU core is ...
4
votes
3answers
1k views
How to correctly save the unix top command output into a variable?
I've got to save the output of the top command into a variable and I do this:
myvar=`top -b -n1 | head -n 18`
The problem is that it seems to be ignoring the return characters, so when I echo the ...
4
votes
4answers
2k views
top 1 with a left join
Given the query below there might be multiple rows in dps_markers with the same marker key but we only want to join against the first. If I take this query and remove the top 1 and ORDER BY I get a ...
4
votes
3answers
811 views
How to sort within a sql view
I've created a sql view and I need to sort the results of select by using the ORDER BY on 4 fields, but I'm getting message that ORDER BY cannot be used in views unless I use TOP.
Can someone explain ...
4
votes
5answers
516 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 ...
4
votes
1answer
2k views
SubSonic Collection Top 1
Is there way in next piece of code to only get the first record?
Dal.TreeHtmlExportsCollection treeHtmlExportsCollection =
new ...
3
votes
1answer
33 views
TOP 1 Query from each ID with multiple instances
This query will return the top for all rows in MS Access.
SELECT TOP 1 * FROM [table]
ORDER BY table.[Date] DESC;
I need to return the top date for each id that can have multiple dates.
ID ...
3
votes
1answer
62 views
How to write a Python console program can output like the top command in Linux?
The output of top command in Linux like bellow:
Tasks: 158 total, 1 running, 157 sleeping, 0 stopped, 0 zombie
Cpu(s): 6.3%us, 3.2%sy, 0.0%ni, 89.9%id, 0.2%wa, 0.0%hi, 0.2%si,
...
3
votes
1answer
171 views
jQuery Animate top (From bottom to top)
I am trying to animate a Div a top:275.
I tryed .animate( {marginTop: -820 } but on each screen it ends up to a different position...
So I changed the marginTop to .animate( {top: 275} but the div ...
3
votes
2answers
249 views
MySQL select top N rows out of M groups
I have this table:
CREATE TABLE IF NOT EXISTS `catalog_sites` (
`id` int(10) unsigned NOT NULL auto_increment,
`cat_id` int(10) unsigned NOT NULL,
`date` datetime NOT NULL,
`url` varchar(255) ...
3
votes
1answer
82 views
Huge performance dip with TOP in SQL Server
Consider this SQL performance difference, where in the first, I select all 26,000 rows, and in the second, I just want the first 5.
SELECT tw.*
FROM entity e
JOIN entity_tag et on et.entity_id = e.id
...
3
votes
2answers
107 views
jquery help with back to top
why is this not working?
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function(){
if( jQuery(".page").height() < jQuery(window).height() ) {
...
3
votes
2answers
111 views
SQL Server - use a parameter to select the top X of the result set
I am creating a SQL Server query that will take a parameter and use that as the record number to return.
In pseudo code:
parameter returnCount
select top returnCount * from table where x = y
What ...
3
votes
3answers
103 views
sql server top query
I don't know what's wrong with this query :
select * from products , top 1 * from pic
where products.productId = pic.productId
I have Products and Pic tables , every products could have 1 to n ...
3
votes
4answers
434 views
Optimal algorithm for returning top k values from an array of length N
I have an array of n floats, and I wish to return the top k
(in my case n ~ 100, k ~ 10)
Is there a known optimal solution path for this problem?
Could someone provide a C algorithm?
EDIT: ...
3
votes
1answer
179 views
Getting the avg of the top 10 students from each school
We have a school district with 38 elementary schools. The kids took a test. The averages for the schools are widely dispersed, but I want to compare the averages of JUST THE TOP 10 students from ...
3
votes
3answers
728 views
Will an IO blocked process show 100% CPU utilization in 'top' output?
I have an analysis that can be parallelized over a different number of processes. It is expected that things will be both IO and CPU intensive (very high throughput short-read DNA alignment if anyone ...
3
votes
1answer
775 views
Computation of Cpu percentage by a single process in unix by the “top” command
I would like to know how does the "top" command compute the cpu percentage used by any process.
I have tried reading the "psinfo" binary file in the /proc directory , but it didnt help in finding the ...
3
votes
1answer
188 views
Tap Status Bar Time
I am using a UITableView in my app. After scrolling down, if I tap on the status bar time, the table is repositioned to the top. Any idea how this is done and is it possible to intercept the action. ...
3
votes
3answers
675 views
C++ figure out CPU/Memory usage
I have a C++ app called ./blah (to which I have the source code)
when I run ./blah
I can run "top" and see how much memory & cpu "./blah" is using.
Now, is there anyway for "./blah" to access ...
3
votes
1answer
1k views
PyQt - make window top level
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, None, ...
3
votes
1answer
925 views
How do I reconcile 'top' and 'free -m''s memory usage reporting in linux?
From free -m i can see that there is 377MB of memory used and 1649MB free on the machine(Of which 1567 is cached by ubuntu). See below for the actual output:
caz@riskvm:~$ free -m
total ...
2
votes
2answers
102 views
Detect which script causes server overload - apache + php
I'm trying to find which php scripts are overloading my server's cpu, but by the results of top I cannot see specifically which one it is. Is there any way to relate the top processes with the script ...
2
votes
1answer
37 views
Top property of relative positioned element in TD does not have any effect
I've noticed this issue while trying to vertically align a floating(and relative positioned ) element in a TD.
I'm thinking it might have something to do with the default TD's vertical-align:middle ...
2
votes
4answers
158 views
Top n items in a List ( including duplicates )
Trying to find an efficient way to obtain the top N items in a very large list, possibly containing duplicates.
I first tried sorting & slicing, which works. But this seems unnnecessary. You ...
2
votes
1answer
105 views
How to view all running threads on the iPhone
I would like to know how to view all the threads running on the iPhone. I know that there is a command "top -t" for linux systems and Android for that, but it does not work on the iPhone.
PS : I am ...
2
votes
3answers
193 views
Excel parameter in t/sql SELECT TOP xxx without using SP
This is really only a short question, but I can't find the answer anywhere.
Is it possible to use an Excel parameter in a t/sql query as a SELECT TOP xxxx, where the parameter here defines how many ...
2
votes
2answers
132 views
Best alternative for the Top Clause in Sql Server 2008?
i am working on a table which currently contains 100000 records, and will be more and more in future, now my clients want the LATEST TOP 10 RECORDS...
using top clause diminishes the performance, ...
2
votes
2answers
300 views
Select a percentage of records using CRM 2011 Dynamic Entity
I'm developing service which consumes CRM 2011 data via dynamic entities (as in, Microsoft.Xrm.Sdk.Entity, the late-binding method). I'm deliberately not using Xrm.cs method (early binding) in an ...
2
votes
4answers
34 views
Is css property “top” a string or number in javascript?
say I write the following javascript code:
var top = document.getElementById("SOMEDIVID").style.top;
Would the variable "top" end up storing the top value as a string or as a number? I want it to ...
2
votes
2answers
32 views
PHP DOM with XML finding header like node
I'm having trouble getting the nodeValue of a specific set of nodes. The xml looks like this:
<root>
<SpecialParameter>Some Text</SpecialParameter>
<SpecialInfo ...
2
votes
2answers
385 views
SQL Server: Get Top 1 of Each Group
I have a table which I want to get the latest entry for each group. Here's the table:
DocumentStatusLogs Table
|ID| DocumentID | Status | DateCreated |
| 2| 1 | S1 | 7/29/2011 |
| 3| ...
2
votes
1answer
72 views
How do I run a Ruby script on Linux and have the name of the script show up in TOP COMMAND instead of Ruby?
I have a bunch of scripts that run periodically as part of Gitorious, they all show up in top under command as Ruby how do I get them to show the actual script name that is running?
2
votes
1answer
55 views
Is there any reason to use (window.)top to reference to the current window with javascript?
I am currently trying to display a third-party website in an iFrame on an internal website. They are both located on the same second-level domain.
The third-party website uses some JavaScript script ...
2
votes
2answers
133 views
How to start a PHP process with a name?
I have a PHP script that spawns between 10 and 100 PHP scripts to help share the load of some calculations. The problem is that this parent PHP script starts in the background and runs for ever, so it ...
2
votes
3answers
592 views
How To Log CPU, Memory, Bandwidth for a process on Linux?
I am looking to log the CPU, Memory, Bandwidth for a process running on Linux. Ultimately the data will be stored in a database, but my main question is how to get access to this data to log in the ...
2
votes
5answers
122 views
Resize Array By Last and not by First in C#
I have an Array of Class elements, and by an int variable i need to resize this array to the last X elements.
So for example i have an array with:
Array[0] = Msg1
Array[1] = Msg2
Array[2] = Msg3
...
2
votes
1answer
322 views
CPU usage problem, top batch mode
I have a problem that makes me mad. I am running top in batch mode with the following command,
top -b -n 1
The problem is I can run top in batch mode a 100 times but the CPU usage never changes past ...
2
votes
2answers
1k views
Dynamically change css backgroundPosition left AND top via Jquery
I'm a new programmer and english is not my mother tongue so please forgive me in advance for both programming and english mistakes.
Here is what I want to do: I have a div tag that contains an image ...