how to get the rowid/rownumbes of a table in sqlserver
Answers were Sorted based on User's Feedback
Answer / payal nath
SELECT ROW_NUMBER() OVER(ORDER BY <FieldName>)
FROM <TableName>
Is This Answer Correct ? | 27 Yes | 5 No |
Answer / renu
Row_number() works on SQL 2005 and upper version, if u r
trying it on 2000 it will not work.
Is This Answer Correct ? | 8 Yes | 2 No |
Answer / vimal
SELECT ROW_NUMBER() OVER(ORDER BY eName ASC) AS Rno, *
FROM emp
asc or desc required
Is This Answer Correct ? | 7 Yes | 3 No |
Answer / dhivakar
SELECT
ROW_NUMBER() OVER (ORDER BY emp_id) AS rowid,
*
FROM employee
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / samar
hi i had tried same but i am getting error
Server: Msg 195, Level 15, State 10, Line 1
'row_number' is not a recognized function name
here querry is
select row_number() over(order by Income_Verification_id
) from Dim_Income_Verification
plz reply !!
Is This Answer Correct ? | 5 Yes | 7 No |
Answer / raman
If you want row id as ROWID in Oracle, use %%physloc%% to
get unique id for each row in a table.
Ex. Query to get physical address/rowid of first row in
table.
SELECT TOP 1 %%physloc%% AS ROWID FROM <UrTable>
Is This Answer Correct ? | 1 Yes | 3 No |
create procedure proc1 (@a int) as begin if @a=1 create table #temp(a1 int) else create table #temp(a1 int) end while executeing the above code it shows error like '#temp already exist' .why it shows an error?
what is the maximum size of sql row in mssql?
what is spatial nonclustered index
What do you mean by normalisation?
You have developed an application which uses many stored procedures and triggers to update various tables users ocassionally get locking problems which tool is best suited to help you diagnose the problem?
What does the on delete cascade option do?
you added a row to a view, but the row is not shown on the view. Explain how this can happen, and how you can remedy the situation
What is the difference between indexing and hashing?
Can sql servers linked to other servers like oracle?
Can a cursor be updated? If yes, how you can protect which columns are updated?
Can foreign key be duplicate?
What happens if we shrink log file in sql server?