Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
6answers
194 views

Efficiently find top-N values from multiple columns independently in Oracle

Suppose I have 30 billion rows with multiple columns, and I want to efficiently find the top N most-frequent values for each column independently, and with the most elegant SQL possible. For example, ...
4
votes
1answer
870 views

Select top N with “for update skip locked” in Oracle

In Oracle, I can select the top 1 message in a sorted table with select messageid from( select messageid, RANK() over (order by messageid asc) as msg_rank from messages ) ...
4
votes
4answers
5k views

Oracle SELECT TOP 10 records

i have an big problem with an SQL Statement in Oracle. I want to select The TOP 10 Records ordered by STORAGE_DB wich arent in a list from an other select statement. This one works fine for all ...
2
votes
4answers
621 views

predefined function or method available to get second highest salary from an employee table?

is there any predefined function or method available to get second highest salary from an employee table
1
vote
1answer
90 views

How can I select the “maximum” row from a table?

How can I select the maximum row from a table? What does maximum mean -- well my table has two timestamp columns, TIME1 and TIME2. The maximum column is the one with the latest value for TIME1. If ...
1
vote
3answers
335 views

How to produce rank in Oracle

Need to rank the below by salary, with highest salary having rank 1. The RANK column shown is what I'm after: Empname sal address RANK ...
1
vote
1answer
163 views

N Top Record Selection Based on Own SQL Statement in MS-Access

I'm re-writing a small ms-access application to take examinations on. What they want is for the tests to grab a set of random questions based on how large the exam's size is. If each exam was a set ...
1
vote
4answers
316 views

SQL Server: Why do these queries return different result sets?

Query 1 = select top 5 i.item_id from ITEMS i Query 2 = select top 5 i.item_id, i.category_id from ITEMS i Even if I remove the top 5 clause they still return different rows. if I run "select top 5 ...
0
votes
0answers
19 views

How do I force Nutch to fetch URLs equal to -topN?

I injected some URLs in crawl db in Nutch 1.3, but Nutch doesn't fetch URLs from each site equal to -topN. How can I do that?
0
votes
1answer
42 views

what is topN in nutch 1.3?

I read in sites that nutch fetch links from every link equls to topN.I have 4 links but when nutch crawl my links, all result that returned with nutch are equals topN. it means if i have 4 links and ...
-1
votes
1answer
171 views

PostgreSQL: How to force db use the “quicksort” sorting method instead of “top-N heapsort”?

Actually, all my question is written in subj-field. It's it somehow possible in PostgreSQL? Probably at server-config level, or can be configured in query, or in properties of table? I hardly tried to ...