Roles are useful, though there are a few limitations. This is one limitation of Oracle roles.
Table owned by userA. UserB has "select any table" and creates SQL that sucessfully runs in sql*plus. When userB tries to put the SQL in a package, there is ORA-00942 compile error.
The solution is to directly grant the userA.table_name SELECT privilege to userB. It's not enough to have a role that allows the SELECT permission.
Example:
Create package header with no problems, then try to create package body:
Warning: Package Body created with compilation errors.
SQL> show err
Errors for PACKAGE BODY xPKG:
LINE/COL ERROR
--------
-----------------------------------------------------------------
27/7 PL/SQL: SQL Statement ignored
72/29 PL/SQL: ORA-00942: table or view does not exist
-- In another session, directly grant SELECT on table_name to this user.
-- In this session, re-submit package body.
SQL> /
Package body created.
Wednesday, April 05, 2006
Sunday, March 26, 2006
Move Oracle Indexes To Another Tablespace
Some (mostly old-school) Oracle DBAs like to move indexes into a tablespace other than the tablespace(s) for tables. Moving an index does rebuild the index, for the limited cases when an index rebuild is a good thing.
This SQL will generate the SQL to move indexes.
select 'alter index ' || owner || '.' || index_name || ' rebuild
tablespace &newTablespace'
from sys.dba_indexes
where owner = '&ownerName'
/
This SQL will generate the SQL to move indexes.
select 'alter index ' || owner || '.' || index_name || ' rebuild
tablespace &newTablespace'
from sys.dba_indexes
where owner = '&ownerName'
/
Useful HP-UX Commands
Useful HP-UX commands:
bdf Show disk space.
tusc Trace system calls.
lsof List open files.
/usr/sbin/kmtune Show and sets kernel parameters.
Record system performance:
/usr/bin/sar System activity reporter.
vmstat Virtual memory statistics. Non-zero 'b' column is an I/O blockage.
netstat -i Network status. Large and increasing values for errors and collisions is a symptom of a network problem.
HP-UX operating system administrators may already be running the perfstat tool. If you see rep_server processes running from root, then perfstat is in use.
Perfstat records useful information. Record this info to a readable file with /opt/perf/bin/perfstat -z.
GlancePlus
glance
perfstat -c shows kernel parms.
/usr/sbin/swapinfo
bdf Show disk space.
tusc Trace system calls.
lsof List open files.
/usr/sbin/kmtune Show and sets kernel parameters.
Record system performance:
/usr/bin/sar System activity reporter.
vmstat Virtual memory statistics. Non-zero 'b' column is an I/O blockage.
netstat -i Network status. Large and increasing values for errors and collisions is a symptom of a network problem.
HP-UX operating system administrators may already be running the perfstat tool. If you see rep_server processes running from root, then perfstat is in use.
Perfstat records useful information. Record this info to a readable file with /opt/perf/bin/perfstat -z.
GlancePlus
glance
perfstat -c shows kernel parms.
/usr/sbin/swapinfo
Subscribe to:
Posts (Atom)