Tagged Questions
7
votes
9answers
20k views
7
votes
3answers
3k views
What can cause an Oracle ROWID to change?
AFAIK ROWID in Oracle represents physical location of a record in appropriate datafile.
In which cases ROWID of a record may change ?
The one known to me is UPDATE on partitioned table that "moves" ...
2
votes
8answers
522 views
Can a rowid be invalidated right after being inserted in Oracle?
I'm running queries that look something like this:
INSERT INTO foo (...) VALUES (...) RETURNING ROWID INTO :bind_var
SELECT ... FROM foo WHERE ROWID = :bind_var
Essentially, I'm inserting a row ...
2
votes
3answers
390 views
Is there an open-source SQL database that has the concept of Oracle's “rowid” pseudo-column?
I am aware that MySQL and PostgreSQL[1] do not have that concept, so I am interested in finding out of there is an open-source SQL database that does have the concept.
[1] It was later pointed out ...
1
vote
5answers
1k views
HOW TO get records with given rowid list IN STRING from a table (Oracle)?
Any one can help me to resolve the FIXME ?
-- Task: Get records with given rowid IN STRING from a table.
-- NOTICE: I do not known where the given rowid comes from.
-- OUTPUT 'AAAAB0AABAAAAOhAAA'
...
1
vote
2answers
435 views
Oracle Join View - which rowid is used
CREATE VIEW EVENT_LOCATION ("EVENT_ID", "STREET", "TOWN") AS
SELECT A.EVENT_ID, A.STREET, A.TOWN
FROM TBLEVENTLOCATION A
JOIN TBLEVENTS B
ON A.EVENT_ID = B.EVENT_ID
WHERE B.REGION = 'South';
...
1
vote
6answers
11k views
SQL to return the rownum of a specific row? (using Oracle db)
In Oracle 10g, I have this SQL:
select dog.id as dogId from CANINES dog order by dog.codename asc
which returns:
id
--
204
203
206
923
I want to extend this query to determine the oracle rownum ...
0
votes
3answers
60 views
SQLite select x-th row
let's suppose I have this table, where I deleted the row with rowid=3:
rowid | something
------+-----------
1 | ...
2 | ...
4 | ...
5 | ...
How to select the third row (the one with ...
0
votes
1answer
835 views
Informix: How to get the rowid of the last insert statement
This is an extension of a question I asked before: C#: How do I get the ID number of the last row inserted using Informix
I am writing some code in C# to insert records into the informix db using the ...