How can we help you today? How can we help you today?
DOKMANC2
Eddie, Yes, I did misread your reply. Sorry about that. I do see these errors in the verbose log. I know that we've seen other permissions issues related to the upgrade but to my knowledge, they were "all" fixed. I will forward these to the DBA in hopes that he does not tell me that I should not have access to these views. This is the expected default reply. Let's see what he says... SELECT s.sowner as owner, s.vname as mview_name, decode(bitand(s.flag, 262144), 262144, 'Y', 'N') as reduced_precisions    FROM sys.snap$ s WHERE ((s.sowner = 'FDS_MAINT' OR s.sowner = 'FDS_APPS' OR s.sowner = 'FDS_BASE') );   --1 ORA-00942: table or view does not exist SQL2.sql 2 34  SELECT  u.username as OWNER, o.NAME as TABLE_NAME, p.periodname as PERIOD_NAME, p.flags as FLAGS, p.periodstart as PERIOD_START, p.periodend as PERIOD_END FROM sys.sys_fba_period p,sys.tab$ t,sys.obj$ o, all_users u, m_owners WHERE p.obj# = t.obj# AND t.obj# = o.obj# AND o.owner# = u.user_id AND u.username = m_owners.owner; --ORA-00942: table or view does not exist SELECT     u.username as OWNER,     o.NAME as TABLE_NAME,     c.NAME as COLUMN_NAME,     c.property,     decode(bitand(c.property, 137438953472 + 274877906944), 137438953472, 'YES', 274877906944, 'YES', 'NO') AS IDENTITY_COLUMN,     decode(bitand(c.property, 68719476736), 68719476736, 'YES','NO') AS IDENTITY_ONNULL,     decode(bitand(c.property, 137438953472), 137438953472, 'YES','NO') AS IDENTITY_ALWAYS,     decode(bitand(c.property, 274877906944), 274877906944, 'YES', 'NO') AS IDENTITY_DEFAULT,     'NO' AS IDENTITY_FAIL FROM     sys.col$ c,     sys.tab$ t,     sys.obj$ o,     all_users u,     m_owners WHERE c.obj# = t.obj#     AND t.obj# = o.obj#     AND o.owner# = u.user_id     AND u.username = m_owners.owner     AND decode(bitand(c.property, 137438953472 + 274877906944), 137438953472, 'YES', 274877906944, 'YES', 'NO') = 'YES'; -- ORA-00942: table or view does not exist SQL2.sql 38 3  / comments
Eddie,Yes, I did misread your reply. Sorry about that. I do see these errors in the verbose log. I know that we've seen other permissions issues related to the upgrade but to my knowledge, they wer...
0 votes