Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
6answers
17k views

ROW_NUMBER() in MySQL

Is there a nice way in MySQL to replicate the MS SQL Server function ROW_NUMBER()? For example: SELECT col1, col2, ROW_NUMBER() OVER (PARTITION BY col1, col2 ORDER BY col3 DESC) AS intRow ...
7
votes
2answers
8k views

How To Project a Line Number Into Linq Query Results

How can I project the row number onto the linq query result set. Instead of say: field1, field2, field3 field1, field2, field3 I would like: 1, field1, field2, field3 2, field1, field2, field3 ...
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
6answers
26k views

How do I use ROW_NUMBER() in SQL?

I want to use the ROW_NUMBER() to get... To get the max(ROW_NUMBER()) --> Or i guess this would also be the count of all rows I tried doing: SELECT max(ROW_NUMBER() OVER(ORDER BY UserId)) FROM ...
3
votes
2answers
151 views

How do I utilize Row_Number() (partitioning) for my datapool correctly

we have following table (output is already ordered and separated for understanding): | PK | FK1 | FK2 | ActionCode | CreationTS | SomeAttributeValue | ...
2
votes
4answers
54 views

Dynamic order by when using order by - speeding up

I am using row number to get paged results back from a stored procedure. I am finding that ordering using a dynamic case statement column name is slowing things down - but if I hardcode the order by ...
2
votes
2answers
132 views

Ordering the row_number using LinqToSql in asp.net/C#

I have set of records in a database table lets call it Components Table which is defined as follows. The administrator can disable some of the components using disableflag which is the last column of ...
2
votes
3answers
161 views

Eliminating ROW_NUMBER() for SQL 2000

I have to migrate a sql to work on Microsoft SQL Server 2000. Unfortunately the current sql uses the function ROW_NUMBER() which is not yet supported in this version. Therefore I have to find ...
2
votes
1answer
1k views

Row numbering in PostgreSQL

How to get row number in PostgreSQL when the results are ordered by some column? e.g. SELECT 30+row_number() AS position, * FROM users ORDER BY salary DESC LIMIT 30 OFFSET 30 I supposed that the ...
2
votes
1answer
656 views

In Oracle, why can´t I select rownum in a outer query, when my inner query contains SDO_ANYINTERACT?

I have written a query in Oracle that looks like this: select ID, NAME, GEOMETRY from ( select a.*, rownum as rnm from ( select ID, NAME, GEOMETRY from MY_TABLE where ...
2
votes
2answers
806 views

Is it possible to add a identity to a GROUP BY using SQL?

Is it possible to add a identity column to a GROUP BY so that each duplicate has a identity number? My original data looks like this: 1 AAA [timestamp] 2 AAA [timestamp] 3 BBB ...
2
votes
0answers
351 views

Consolidated: SQL 2005+ Dynamic Pagination using SET ROWCOUNT or RowNumber()?

I've a complex SP which applies multiple JOINs and lookup and come complex filters like comma-separated values, etc... On top of it, I've to deploy two complex yet performance-effective features: 1. ...
2
votes
2answers
251 views

Returning Every Other Record with LINQ

I have a query that returns 10000's of records that are used as plot points on a map. In an effort to reduce load, and increase app speed we're trying to implement what basically amounts to Level of ...
1
vote
1answer
67 views

return mySQL original row number

I want to get the row_number of the original record in the database. Is there any way to retrieve the original row number of a record in mysql? Suppose my statement is select course_id from course ...
1
vote
1answer
86 views

MySQL - Select row number of a record

I have a table in MySQL populated as follows. Now I need to select the row number of a record in its sorted order. For example, the row number of words starting with 'c' should be 4. Words ===== ...
1
vote
1answer
71 views

Rownumber() unsopported in reports?

I have the following query (This is returned by tablevalued function) SELECT ROW_NUMBER() OVER (ORDER BY ClientHId) AS RowNumber, ClientHId, FirstName, LastName, FROM Client Then I populate my ...
1
vote
2answers
107 views

SQL Server 2008 sort date in ROW_NUMBER()

The following query generate an error message (SELECT ROW_NUMBER() OVER(ORDER BY (CASE @SortBy WHEN 'AccessionNumber' THEN [AccessionNumber] WHEN 'CreatedDate' THEN CreatedDate END))AS ...
1
vote
1answer
43 views

In Sql Server 2008,How to number shipments for each customer

I have two tables : Customer ------>> Shipment I want to give each shipment a unique number for each customer, for example CustomerID ShipmentID ShipmnetNumber 10 50 ...
1
vote
1answer
219 views

Row_number() function with Informix

Informix has a function similar to the row_number() SQLServer and Oracle? I have to make a query using row_number() between two values, but I don't know how. This is my query in SQLServer: SELECT ...
1
vote
2answers
202 views

MySQL query: Using UNION and getting row number as part of SELECT

I have a union query as follows: (SELECT t.id, t.name, c.company AS owner, t.creation_date AS date, t.notes FROM tool t, client c WHERE t.id_customer = '15' AND t.trash_flag = '1') UNION (SELECT ...
1
vote
3answers
413 views

SQL Query: How can I get data of row with number 1000 direclty?

If I have a SQL Table called Persons that contain about 30000 rows and I want to make a SQL query that retrieve the data of row number 1000 ... I got it by non professional way by making the following ...
1
vote
2answers
518 views

Oracle rownum in db2 - Java data archiving

I have a data archiving process in java that moves data between db2 and sybase. FYI - This is not done through any import/export process because there are several conditions on each table that are ...
1
vote
2answers
692 views

INNER JOIN And Row_Num() Function Problem

I have a stored Procedure which do Sorting and Paging like the Sorting Custom Paged Results of of Scott Michell . I have two tables: Article and Category ,My StoredProcedure works fine for Article ...
1
vote
1answer
761 views

Combine row_number() and string column in Postgres

I need to combine to a string column and the result of a row_number() calculation into one column. What I've got is column 1, containing strings and column 2, containing the row_number() result. Now ...
1
vote
5answers
7k views

Add a sequential number on create / insert - Teradata

In oracle we would use rownum on the select as we created this table. Now in teradata, I can't seem to get it to work. There isn't a column that I can sort on and have unique values (lots of ...
1
vote
1answer
87 views

How can I get a batch at a time of all the rows in a sql table?

I have a table with 40 million rows. I want to pick up about 2 million at a time and "process" them. Why? Cos processing processing 10million+ rows degrades performance, and often times out. (I need ...
1
vote
2answers
245 views

How can I delete or select a row from a table that has a specific row number?

I have a question about Microsoft SQL Server 2005. How can I delete or select a row from a table that has a specific row number?
1
vote
2answers
863 views

TSQL: Howto add a char to a select statement

I have the following statement SELECT id, descr from mytable which returns 1, 'Test1' 4, 'Test4' 6, 'Test6' 8, 'Test8' 22, 'Test22' Now I want the display to Add a sequential character to the ...
1
vote
4answers
436 views

What is wrong with this query? Can't get ROW_NUMBER() to work

SELECT * FROM (SELECT ROW_NUMBER() OVER (ORDER BY hrl.Frn) as Row, hrl.unq, hrl.LcnsId, hc.Business,hc.Name,hc.Phone, hrl.Frn,hrl.CallSign, hrl.gsamarkettypeid, gmt.[Market Type Code] + ' - ' + ...
0
votes
0answers
7 views

How to keep focus on row when applying new filter on paged grid

I have a paged grid implemented with the ROW_NUMBER() SQL function. The client is controlling the page using the "start-index" and "page-size" parameters. The problem: When focusing on a row and ...
0
votes
1answer
55 views

Datagrid Blank Row's Row Number

I have a WPF Datagrid and I am populating the row numbers for it on the LoadingRow Event: private void GridAccounts_LoadingRow(object sender, DataGridRowEventArgs e) { e.Row.Header = ...
0
votes
3answers
65 views

how to avoid duplicate on Joining two tables

Student Table SID Name 1 A 2 B 3 C Marks Table id mark subject 1 50 physics 2 40 biology 1 50 chemistry 3 30 mathematics SELECT ...
0
votes
2answers
183 views

CTE, ROW_NUMBER and ROWCOUNT

I am trying to return a page of data and also row count of all data in one stored procedure which looks like following: WITH Props AS ( SELECT *, ROW_NUMBER() OVER (ORDER BY PropertyID) AS ...
0
votes
3answers
435 views

How to use ROW_NUMBER() in HQL?

My databse is MS SQL. I want to use ROW_NUMBER() in HQL. Is it possible? How? I know about Custom Functions. But prefer a way that does not need to modify web.config. UPDATE: My final goal is to ...
0
votes
2answers
61 views

Usage of aliases in OVER() clause

May i number results via row_number() OVER() by counted rows? e.g. SELECT *, users::numeric/population::numeric*100 AS penetration, row_number() OVER(ORDER BY penetration DESC) FROM states ...
0
votes
1answer
396 views

EF4 SPROC Complex Type Mapping - Problem with ROW_NUMBER()

I've been working with EF4/Stored Procedures/Complex Types for a while now, but i haven't seen this issue before. I have a stored proc which returns a bunch of fields, mapped to a collection of ...
0
votes
4answers
207 views

Interesting Row_Number() bug

I was playing with the Stack Exchange Data Explorer and ran this query: http://odata.stackexchange.com/stackoverflow/q/2828/rising-stars-top-50-users-ordered-on-rep-per-day Notice down in the ...
0
votes
1answer
221 views

EntityFramework & RowNumber

How can I query RowNumber with Entity Framework? For example: var result = data.Users .OrderByDescending("Birthday") .ThenBy("LastName") ...
0
votes
1answer
565 views

row number over text column sort

I'm having problems with dynamic sorting using ROW Number in SQL Server. I have it working but it's throwing errors on non numeric fields. What do I need to change to get sorts with Alpha Working??? ...
0
votes
2answers
106 views

how to number the datas from mysql

Hi This is a doubt on mysql select query let me axplain my doubt with a simple example consider this is my query SELECT dbCountry from tableCountry tableCountry has fields dbCuntryId, ...
0
votes
3answers
177 views

the row no in query output

I have a numeric field (say num) in table along with pkey. select * from mytable order by num now how I can get the row no in query output of a particular row for which I have pkey. I'm using ...
0
votes
6answers
3k views

SSRS Row Group + Column Group = RowNumber Issue

I'm back with another SSRS question :-) I'm dealing with survey data. I have a procedure that's returning an organization's response counts per question. So my report is defined as Group on ...
0
votes
1answer
118 views

Iterating 1 row at a time with massive amounts of links/joins

Ok, basically what is needed is a way to have row numbers while using a lot of joins and having where clauses using these rownumbers. such as something like select ADDRESS.ADDRESS FROM ADDRESS ...
0
votes
2answers
52 views

What is the problem with below query?

Hi I tried to execute the below query to get results as paging manner but when i tried to execute i'm getting error like Invalid column name 'RowNum' can you try it once DECLARE @PageNum AS INT; ...
0
votes
3answers
910 views

Database Deadlocks when using Rownum?

If I have the following code being called from multiple threads in an application, is there a deadlock risk? The transaction used to connect to the database for this is opened just before this call ...
0
votes
2answers
2k views

Case statement in SQL Rownumber() Order By clause not working on varchar and int values

Why doesn't this work? DECLARE @temp table (ShipNo int, Supplier varchar(10) ) INSERT INTO @temp VALUES (1,'CFA') INSERT INTO @temp VALUES (1, 'TFA') INSERT INTO @temp VALUES (2, 'LRA') INSERT INTO ...