What's the equivalent of Oracle's RowID in SQL Server?

link|improve this question
Stephanie: the assumption is that there is a unique key in the data, which assumes the data is normalized, which is an incorrect assumption sometimes. Thus, what's the equivalent to Oracle's RowID in SQL server. – Christopher Mahan May 25 '11 at 21:06
feedback

9 Answers

From the Oracle docs

ROWID Pseudocolumn

For each row in the database, the ROWID pseudocolumn returns the address of the row. Oracle Database rowid values contain information necessary to locate a row:

  • The data object number of the object
  • The data block in the datafile in which the row resides
  • The position of the row in the data block (first row is 0)
  • The datafile in which the row resides (first file is 1). The file number is relative to the tablespace.

The closest equivalent to this in SQL Server is the rid which has three components File:Page:Slot.

In SQL Server 2008 it is possible to use the undocumented and unsupported %%physloc%% virtual column to see this. This returns a binary(8) value with the Page ID in the first four bytes, then 2 bytes for File ID, followed by 2 bytes for the slot location on the page.

The scalar function sys.fn_PhysLocFormatter or the sys.fn_PhysLocCracker TVF can be used to convert this into a more readable form

SELECT 
      *,
      sys.fn_PhysLocFormatter (%%physloc%%) AS [Physical RID]
FROM master..spt_values

Note that this is not leveraged by the query processor. Whilst it is possible to use this in a WHERE clause

SELECT *
FROM master..spt_values
WHERE %%physloc%% = 0x5201000001000300

SQL Server will not directly seek to the specified row. Instead it will do a full table scan, evaluate %%physloc%% for each row and return the one that matches (if any do).

To reverse the process carried out by the 2 previously mentioned functions and get the binary(8) value corresponding to known File,Page,Slot values the below can be used.

DECLARE @FileId int = 1,
        @PageId int = 338,
        @Slot   int = 3

SELECT CAST(REVERSE(CAST(@PageId AS BINARY(4))) AS BINARY(4)) +
       CAST(REVERSE(CAST(@FileId AS BINARY(2))) AS BINARY(2)) +
       CAST(REVERSE(CAST(@Slot   AS BINARY(2))) AS BINARY(2))
link|improve this answer
It's taken more than 2 and a half years, and at last someone has added a decent answer! Very interesting, thanks. – Xiaofu Jan 5 at 6:17
feedback

Several of the answers above will work around the lack of a direct reference to a specific row, but will not work if changes occur to the other rows in a table. That is my criteria for which answers fall technically short.

A common use of Oracle's ROWID is to provide a (somewhat) stable method of selecting rows and later returning to the row to process it (e.g., to UPDATE it). The method of finding a row (complex joins, full-text searching, or browsing row-by-row and applying procedural tests against the data) may not be easily or safely re-used to qualify the UPDATE statement.

The SQL Server RID seems to provide the same functionality, but does not provide the same performance. That is the only issue I see, and unfortunately the purpose of retaining a ROWID is to avoid repeating an expensive operation to find the row in, say, a very large table. Nonetheless, performance for many cases is acceptable. If Microsoft adjusts the optimizer in a future release, the performance issue could be addressed.

It is also possible to simply use FOR UPDATE and keep the CURSOR open in a procedural program. However, this could prove expensive in large or complex batch processing.

Caveat: Even Oracle's ROWID would not be stable if the DBA, between the SELECT and the UPDATE, for example, were to rebuild the database, because it is the physical row identifier. So the ROWID device should only be used within a well-scoped task.

link|improve this answer
feedback

If you want to uniquely identify a row within the table rather than your result set, then you need to look at using something like an IDENTITY column. See "IDENTITY property" in the SQL Server help. SQL Server does not auto-generate an ID for each row in the table as Oracle does, so you have to go to the trouble of creating your own ID column and explicitly fetch it in your query.

EDIT: for dynamic numbering of result set rows see below, but that would probably an equivalent for Oracle's ROWNUM and I assume from all the comments on the page that you want the stuff above. For SQL Server 2005 and later you can use the new Ranking Functions function to achieve dynamic numbering of rows.

For example I do this on a query of mine:

select row_number() over (order by rn_execution_date asc) as 'Row Number', rn_execution_date as 'Execution Date', count(*) as 'Count'
from td.run
where rn_execution_date >= '2009-05-19'
group by rn_execution_date
order by rn_execution_date asc

Will give you:

Row Number  Execution Date           Count
----------  -----------------        -----
1          2009-05-19 00:00:00.000  280
2          2009-05-20 00:00:00.000  269
3          2009-05-21 00:00:00.000  279

There's also an article on support.microsoft.com on dynamically numbering rows.

link|improve this answer
I think an identity column uniquely identifies a row in a table but not in a database. – tuinstoel May 26 '09 at 6:56
This is true, but that fits the definition of ROWID that I see in the Oracle docs: "The external datatype ROWID identifies a particular row in a database table"... but I see you're saying this because of my typo at the top. :) Thanks for pointing that out. – Xiaofu May 26 '09 at 7:56
That's only part of the definition. It doesn't change from query to query... – Stephanie Page Mar 4 '11 at 22:12
A row "number" is not a ROWID. The ROWID contains the physical location of the row it something different than a unique number. Especially it's unique accross all tables in the database (with some exceptions when special storage techniques are used) – a_horse_with_no_name Sep 24 '11 at 9:27
feedback

ROWID is a hidden column on Oracle tables, so, for SQL Server, build your own. Add a column called ROWID with a default value of NEWID().

How to do that: Add column, with default value, to existing table in SQL Server

link|improve this answer
feedback

Check out the new ROW_NUMBER function. It works like this:

SELECT ROW_NUMBER() OVER (ORDER BY EMPID ASC) AS ROWID, * FROM EMPLOYEE
link|improve this answer
3  
I think this is a replacement for rownum and not rowid. – tuinstoel May 26 '09 at 6:54
1  
@Stephanie Page - why don't you do something useful like answering the question then? – Calanus Jun 29 '10 at 13:44
@Stephanie Page, could you at least point out which answer you think is the correct one? That would be way more helpful than pointing out idiotic answers ;) – Daren Thomas Mar 1 '11 at 8:28
Identifying bad answer is just as valuable. I'm sorry yours is one of the bad ones. – Stephanie Page Mar 2 '11 at 20:45
@Daren: see another of her comments to balexandre's answer: "There is no direct equivalent to Oracle's rowid in SQL Server". Fully exercising her downvoting and free speech rights on SO! :) – Xiaofu Mar 5 '11 at 3:58
feedback

I've always found uses of ROWID kind of doubtful and avoid it if at all possible. Is Oracle's ROWID stable over, say and update where we update a small varchar2 value to a much larger varchar2 value and thus get a row migration?

link|improve this answer
feedback

I took this example from MS SQL example and you can see the @ID can be interchanged with integer or varchar or whatever. This was the same solution I was looking for, so I am sharing it. Enjoy!!

-- UPDATE statement with CTE references that are correctly matched.
DECLARE @x TABLE (ID int, Stad int, Value int, ison bit);
INSERT @x VALUES (1, 0, 10, 0), (2, 1, 20, 0), (6, 0, 40, 0), (4, 1, 50, 0), (5, 3, 60, 0), (9, 6, 20, 0), (7, 5, 10, 0), (8, 8, 220, 0);
DECLARE @Error int;
DECLARE @id int;

WITH cte AS (SELECT top 1 * FROM @x WHERE Stad=6)
UPDATE x -- cte is referenced by the alias.
SET ison=1, @id=x.ID
FROM cte AS x

SELECT *, @id as 'random' from @x
GO
link|improve this answer
feedback

if you just want basic row numbering for a small dataset, how about someting like this?

SELECT row_number() OVER (order by getdate()) as ROWID, * FROM Employees
link|improve this answer
3  
Not what a rowid is. – Stephanie Page Apr 14 '10 at 20:32
feedback

Your Answer

 
or
required, but never shown