What's the equivalent of Oracle's RowID in SQL Server?
feedback
|
The closest equivalent to this in SQL Server is the In SQL Server 2008 it is possible to use the undocumented and unsupported The scalar function
Note that this is not leveraged by the query processor. Whilst it is possible to use this in a
SQL Server will not directly seek to the specified row. Instead it will do a full table scan, evaluate To reverse the process carried out by the 2 previously mentioned functions and get the
| ||||
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. | |||
|
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:
Will give you:
There's also an article on support.microsoft.com on dynamically numbering rows. | |||||||||
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 How to do that: Add column, with default value, to existing table in SQL Server | ||||
|
feedback
|
|
Check out the new ROW_NUMBER function. It works like this:
| |||||||||||||||
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? | |||
|
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!!
| ||||
|
feedback
|
|
if you just want basic row numbering for a small dataset, how about someting like this?
| |||||
feedback
|