RE: ROWID datatype columns and primary keys

2002-02-26 Thread Abdul Aleem
Another thing that I recall, if I am correct, the freed ROWIDs (after deleting rows) are assigned to newly inserted rows. Aleem -Original Message- Sent: Thursday, February 21, 2002 11:18 PM To: Multiple recipients of list ORACLE-L Subject:ROWID datatype columns

ROWID datatype columns and primary keys

2002-02-21 Thread Boivin, Patrice J
Can someone explain to me why some developers like to create ROWID datatype columns in their tables? I am wondering why they sometimes do that instead of using primary keys. I searched for info on this on the Web, but nothing. ROWID access is probably faster than index access, I guess. I

RE: ROWID datatype columns and primary keys

2002-02-21 Thread Deshpande, Kirti
In my previous job, ROWIDs were used left-and-right for performance benefits (accessing a row using ROWIDs is the fastest)and were integral part of the Appl Design at that time. Other than performance, I do not know why one would want to use it. However, it prevented us (Tech Support, SDBA) from

RE: ROWID datatype columns and primary keys

2002-02-21 Thread Whittle Jerome Contr NCI
PROTECTED] 618-622-4145 -Original Message- From: Boivin, Patrice J [SMTP:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 12:18 PM To: Multiple recipients of list ORACLE-L Subject: ROWID datatype columns and primary keys Can someone explain to me why some developers like

Re: ROWID datatype columns and primary keys

2002-02-21 Thread Rick_Cale
: ROWID datatype columns and primary keys Sent by: [EMAIL PROTECTED

Re: ROWID datatype columns and primary keys

2002-02-21 Thread Jared . Still
practice for the reasons you mention. Jared Boivin, Patrice J [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 02/21/02 10:18 AM Please respond to ORACLE-L To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED] cc: Subject:ROWID datatype columns and primary

RE: ROWID datatype columns and primary keys

2002-02-21 Thread Paul . Parker
Patrice, The only reason I can think of creating a column with a datatype of ROWID, is in order to store a rowid. Why you need to store the rowid escapes me as the rowid is available as a pseudocolumn anyway. It is also dangerous to store this rowid in a column, as it can change. During and

RE: ROWID datatype columns and primary keys

2002-02-21 Thread Orr, Steve
A rowid column can be put to very good use in transitional tables for batch processing or temporary tables. For example, check out the CHAINED_ROWS table that Oracle creates via the utlchain.sql script. I've seen this technique in the commercial Banner Utilities application from SCT. It may be a