Re: Migrating to MySQL 5
Posted by: Michael G. Zinner
Date: April 07, 2005 03:27AM

Which version of Oracle are you using? Currently we are testing a gainst 9.2i and 10g. As which user are you connecting?

Could you try to run the select from below in SQL Plus and use a SHOW ERROR; to see what the exact problem is?

SELECT v.*, c.STATUS as CHECK_ENABLED
FROM ALL_VIEWS v, ALL_CONSTRAINTS c
WHERE v.OWNER='GEB_SUCHE_PROD' AND
c.TABLE_NAME(+)=v.VIEW_NAME AND
c.CONSTRAINT_TYPE(+)='V'
ORDER BY v.OWNER, v.VIEW_NAME;

Could you also check if this select returns all columns listed in the 9.2 documentation for ALL_VIEWS?

A link to the documentation is on http://www.lc.leidenuniv.nl/awcourse/oracle/server.920/a96536/ch2159.htm#1164332

You feedback would be much appreciated.

I will replace the SELECT v.* with the actual columns because this will give a better error message in the tool.

Thanks,
Mike

Options: ReplyQuote


Subject
Written By
Posted
January 27, 2005 12:03AM
March 17, 2005 01:29AM
March 17, 2005 02:23AM
April 06, 2005 03:55AM
Re: Migrating to MySQL 5
April 07, 2005 03:27AM
April 11, 2005 09:13AM
April 13, 2005 07:03AM
May 15, 2005 10:24PM
May 18, 2005 05:48AM
May 03, 2005 01:40PM


Sorry, you can't reply to this topic. It has been closed.
This forum is currently read only. You can not log in or make any changes. This is a temporary situation.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.