Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> strange problem with v$recover_file ???
All, I got a problem with v$recover_file. Somehow the query failed if selecting is on ONLINE column.
SQL> desc v$recover_file;
Name Null? Type ----------------------------- -------- --------------- FILE# NUMBER ONLINE VARCHAR2(7) ERROR VARCHAR2(18) CHANGE# NUMBER TIME DATE
These are OK:
However these gave me error:
*
ERROR at line 1:
ORA-00936: missing expression
SQL> select v.name, b.online
2 from v$datafile v, v$recover_file b
3 where v.file# = b.file#;
select v.name, b.online
*
What's happening?! Thank you.
Andrea
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Mon Aug 27 2001 - 16:09:16 CDT
![]() |
![]() |