Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: crystal reports dll and oracle
amos_at_cvidya.com (amos) wrote in message news:<39801319.0410180030.78fee63e_at_posting.google.com>...
> hi
Sounds like it is doing a select from the first table it sees in the all_tables view.
If you can attach with sqlplus as these users, try this command:
select table_name, owner from all_tables where upper(table_name) = 'YOURTABLENAMEINCAPS' order by owner;
If that doesn't work, substitute dba_tables for all_tables.
This is an oracle feature, which could be a CR feature, too, if CR handles it reasonably. The caps stuff is ordinarily not needed, but may be screwed with by non-oracle tools if they make lower or mixed case tablenames.
You probably shouldn't be giving DBA access to tools for non-DBA purposes.
You can also use OEM (among others) to see what CR is passing to oracle.
jg
-- @home.com is bogus. http://biz.yahoo.com/ap/041015/oracle_peoplesoft_5.htmlReceived on Mon Oct 18 2004 - 18:38:15 CDT