Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I include an oracle rowid in a Crystal report?

Status
Not open for further replies.

heatherh

Programmer
May 22, 2001
1
GB
All Oracle tables include a a system generated numbercolumn called rowid which provides a unique identifier for a record in a table. Can I include this column in a Crystal report as it does not appear on the list of database columns.
 
Someone else may have run into this, but if it doesn't appear in the list, I can't see any way to make it usable. Probably means that it isn't stored as a true column in the table. Ken Hamady
On-site custom Crystal Reports Training and Consulting.
Quick Reference Guide to using Crystal in VB.
 
There is a function in Oracle that will allow you to call the row-id. However this must be done thru a PL/SQL store procedure. Thus it would have to be process on the server side and then it could be available on the application side (Crystal). Could you please provide more details why you are trying to access the row-id? I hope this helps!

Keith Boyer-CDSE
Enterprise Reporting Practice Manager
888.394.1664
 
SELECT ROWID, SYSDATE FROM DUAL

ROWID SYSDATE
AAAADDAABAAAAHSAAA 05-JUN-2001
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top