Dallas Time: Friday 4th of April 2025 08:35:22 AM


dbms_scheduler sql notes Upgrade Installing db rman performance tuning
roles EnterpriseManager dbconsole generateSQL tune recovery vi certification notes

 

backup exec Backup & Recovery(what's new) Backup & Recover 11.1

 

9iTuning
plsql notes
obiee

 

archiving free space pfile Create User global_name sysdba
backup controlfile cursors tkprof Add Logfile Group sorts to disk check64bit
Check Archive Log mode Listener nls date format datafiles Finding Locks synonym
killsession password file setsuid redo logs create control file invalid objects
Defrag a table   ipcs     9iPerformance Cert
check temp space orainst.loc location PLSQL_code_type undo Retention ISSYS_MODIFIABLE drop object by object_id

My favorite DB installation note:

http://www.oracle.com/technology/pub/articles/smiley-11gr1-install.html

My favorite database resources:

http://ss64.com/ora/ ( no commericals)

http://psoug.org/reference/tablespaces.html ( lots of commercials)

http://www.adp-gmbh.ch/ora/sql/alter_database.html (not much just google ads)

DIAG
SELECT * FROM V$DIAG_INFO;

 

Defrag a Table

How to defragment a table - Do it in test first

1. Always take backup of the tables before moving the data

2. Ensure the tablespace in which the object currently exists has sufficient space. It should have at least 2 times the size of the index free

3. alter table <owner>.<table_name> move;

4. Rebuild indexes associated with the table. Check the index status with this sql:

select owner, index_name, status from dba_indexes
where table_owner = upper('&OWNER') and
table_name = upper('&SEGMENT_NAME');

 alter index <owner>.<index_name> rebuild online;

5. Collect statistics for the tables.

For example:
exec fnd_stats.gather_table_stats ('APPLSYS','FND_CONCURRENT_REQUESTS',PERCENT=>99);

 

Running the SQL*Plus script below (substituting &Owner and &NewUser) 
will produce a listing of all the permissions to allow the New   
User to access all the objects owned by OWNER. Review the output of the script   
and then run it to Grant the new permissions to NewUser. 

http://ss64.com/orad/USER_OBJECTS.html

Set pagesize 0
define OWNER=Kent
define NEWUSER=Frosty
Spool new_grants.txt

Select
decode(OBJECT_TYPE,
'TABLE','GRANT SELECT, INSERT, UPDATE, DELETE , REFERENCES ON '||'&OWNER'||'.',
'VIEW','GRANT SELECT ON '||'&OWNER'||'.',
'SEQUENCE','GRANT SELECT ON '||'&OWNER'||'.',
'PROCEDURE','GRANT EXECUTE ON '||'&OWNER'||'.',
'PACKAGE','GRANT EXECUTE ON '||'&OWNER'||'.',
'FUNCTION','GRANT EXECUTE ON '||'&OWNER'||'.' )||object_name||' TO &NewUser;'
From USER_OBJECTS where OBJECT_TYPE IN ( 'TABLE', 'VIEW', 'SEQUENCE', 'PROCEDURE', 'PACKAGE', 'FUNCTION')
Order By OBJECT_TYPE;

Spool Off

 

 

Install a package:

rpm -ivh <package name>

Check if a package is installed:

rpm -q <package name>

NLS_DATE_FORMAT

alter session set NLS_DATE_FORMAT='DD-MON-YYYY HH24:MI:SS';


select to_char(sysdate,'DD/MON/RR HH24:MI:SS') time from dual


update gl_interface 
set attribute2=TO_CHAR(TO_DATE(ATTRIBUTE2,'yyyy-mm-dd'),'DD-MON-RR'

create a password file

orapwd file=orapwTEST password=<password> entries=10

Backup controlfile to trace;

Alter database backup controlfile to trace;

Create a listener using: Net Configuration Assistant (NETCA)

$ORACLE_HOME/bin/netca

start / stop a listener

lsnrctl start/stop/status TEST

 

Add OPatch to your path.

PATH=$PATH:$ORACLE_HOME/OPatch
export PATH

 

Point to a different orainst.loc

$ORACLE_HOME/OPatch/opatch lsinventory -invPtrLoc $ORACLE_HOME/oraInst.loc

Check Patch conflicts for a specific patch

opatch prereq CheckConflictAgainstOHWithDetail -invPtrLoc $ORACLE_HOME/oraInst.loc -phBaseDir ./9352179

Verify the OracleAS 10g Release 3 (10.1.3) Patch Set 5 (10.1.3.5) Installation

 

$ORACLE_HOME/OPatch/opatch lsinventory -detail -invPtrLoc $ORACLE_HOME/oraInst.loc

 

$ORACLE_HOME/OPatch/opatch apply -invPtrLoc $ORACLE_HOME/oraInst.loc

 

Kill a database session

alter system kill sessioni 'sid,serial#';

sql to find the session to kill

ALTER SYSTEM KILL SESSION 'sid,serial#';
col schemaname format a8
col sid format 9999999
col osuser format a8
col machine format a10
select sid
,serial#
,osuser
,process
,machine
--,substr(machine,10)as machine
,program
,schemaname
from v$session
where osuser in ('scott','mo')
order by osuser,schemaname

trace / tkprof

Enabling /Disabling SQL trace

Instance level:

SQL_TRACE = {TRUE|FALSE}

session level:
alter session set sql_trace = {True|False};
execute dbms_session.set_sql_trace ({True|False});
execute dbms_system.set_sql_trace_in_session (session_id, serial_id,{True|False});
execute dbms_system.set_sql_trace_in_session(32,591,true)
tkprof tracefile.trc output.txt {options}
tkprof tfxp_ora_22366.trc.1 mo.trc sys=n explain=mo/mo123 sort=prsela,fchela,exeela
 
Check Free Space
select b.tablespace_name
       ,tbs_size SizeMb
       ,a.free_space FreeMb
  from 
    (select tablespace_name
            ,round(sum(bytes)/1024/1024 as free_space 
    from dba_free_space 
    group by tablespace_name) a, 
    (select tablespace_name
            , sum(bytes)/1024/1024 as tbs_size 
    from dba_data_files 
    group by tablespace_name
    UNION
    select tablespace_name
           ,sum(bytes)/1024/1024 tbs_size
    from dba_temp_files
    group by tablespace_name ) b
    where a.tablespace_name(+)=b.tablespace_name;

 

Create User
select * from dba_users; 

create user xxgl
identified by password
default tablespace APPS_TS_TOOLS
temporary tablespace temp;

grant connect to xxgl

 

Add a Logfile Group

COLUMN value FORMAT 999,999,999,990
COLUMN name FORMAT a31


SELECT a.name,b.value
FROM v$statname a,v$sysstat b
WHERE a.statistic# = b.statistic#
AND a.name like '%redo%';

alter database add logfile group 3
('/u09/oracle/frienddata/log3a.dbf',
 '/u11/oracle/frienddata/log3b.dbf'
)
size 40M;
alter database drop logfile group 2
alter database add logfile group 2
('/u09/oracle/frienddata/log2a.dbf',
'/u11/oracle/frienddata/log2b.dbf'
)
size 40M;
alter database drop logfile group 1
alter database add logfile group 1
('/u09/oracle/frienddata/log1a.dbf',
'/u11/oracle/frienddata/log1b.dbf'
)
size 40M;
alter database
add logfile member
'/u09/oracle/frienddata/log1c.dbf'
to group 1;
alter database
add logfile member
'/u09/oracle/frienddata/log2c.dbf'
to group 2;
alter database add logfile group 1
('/u09/oracle/frienddata/log1a.dbf',
'/u11/oracle/frienddata/log1b.dbf',
'/u09/oracle/frienddata/log1c.dbf')
size 100M;

 

Undo Retention
ORA-01555 select max(maxquerylen) from v$undostat;
SELECT FILE_ID,AUTOEXTENSIBLE 
FROM DBA_DATA_FILES 
WHERE TABLESPACE_NAME='&UNDOTBS';

To make those datafile auto extensible, run the following command.

ALTER DATABASE DATAFILE '&FILE_ID' AUTOEXTEND ON;
If you wish to switch off auto extend and to reuse the UNEXPIRED 
space, do the following


ALTER DATABASE DATAFILE '&FILE_ID' AUTOEXTEND OFF;

(a) If good number of extents in UNEXPIRED status, it could be due to high undo_retention.

SELECT DISTINCT STATUS, SUM(BYTES), COUNT(*)   
  FROM DBA_UNDO_EXTENTS GROUP BY STATUS;
ALTER DATABASE DATAFILE 39 RESIZE 3000M;

SQL> startup pfile=$ORACLE_HOME/dbs/inittest.ora

CREATE PFILE='<pfile_name>' FROM SPFILE;
CREATE PFILE='<pfile_name>' FROM SPFILE='<spfile_name>'; 

CREATE SPFILE FROM PFILE='<pfile_name>';


  If you do not have a text initialization parameter, re-create one and 
then re-create your server parameter file from it:

Determine if a parameter is dynamic by querying the ISSYS_MODIFIABLE column of the V$PARAMETER view. The value IMMEDIATE indicates this is a dynamic parameter

SELECT name, type, value, issys_modifiable
FROM v$parameter  
WHERE name = '<parameter name>';

ALTER SYSTEM SET <parameter name>=<new value>;
IF issys_modifiable = false use 
ALTER SYSTEM SET <parameter name>=<new value> SCOPE=SPFILE; 
SHOW PARAMETER <parameter name>;


Check log mode
archive log list
select name, log_mode from v$database;
select name, value from v$parameter where is default = 'FALSE'

archiving

Enable ARCHIVELOG mode:

Check the current archive mode:

SQL> SELECT LOG_MODE FROM SYS.V$DATABASE;

Startup mount

alter database archivelog;

alter database open

Alter system archive log start

Unset in ArchiveLog mode:

Startup mount

alter database noarchivelog;

alter database open

Where are your archive logs:

 

SQL> select DEST_NAME,STATUS,DESTINATION from V$ARCHIVE_DEST;

Alter database add logfile

Manually archive groups of online redo log files with the following command:

ALTER SYSTEM ARCHIVE LOG ALL;

 

Alter system switch log

file Alter system archive log current

 

Temporarily Changing the Destination of the archive logs Using SQL*Plus

ARCHIVE LOG START '<your new destination>';


To permanently change the destination, you must change the initialization parameter

ALTER SYSTEM SET log_archive_dest_1='LOCATION=<your new destination>';
 
V$DATABASE Identifies whether the database is in ARCHIVELOG or NOARCHIVELOG mode and whether MANUAL (archiving mode) has been specified
V$ARCHIVED_LOG Displays historical archived log information from the control file. If you use a recovery catalog, the RC_ARCHIVED_LOG view contains similar information.
V$ARCHIVE_DEST Describes the current instance, all archive destinations, and the current value, mode, and status of these destinations.
V$ARCHIVE_PROCESSES Displays information about the state of the various archive processes for an instance.
V$BACKUP_REDOLOG Contains information about any backups of archived logs. If you use a recovery catalog, the RC_BACKUP_REDOLOG contains similar information.
V$LOG Displays all redo log groups for the database and indicates which need to be archived.
V$LOG_HISTORY Contains log history information such as which logs have been archived and the SCN range for each archived log.

 

PROBLEM: How to insert a “&” character into a string in ORACLE sqlplus without being prompted to reenter the value.

SOLUTION: Place this command at the top of your text file: set scan off; This turns off the ORACLE defines and other similarly annoying features and allows your text file to run as you intended.

ROBLEM: How to pass a greater-than-or-equal symbol HTML representation (or other HTML entity) from ORACLE DB to a form and back successfully.
SOLUTION: I used the ISO-8859-1 decimal Code representation for the symbol. So instead of passing “≥” I passed ? which worked because IE did not convert it but would display the symbol as I needed.

http://www.richandstephsipe.com/wordpress/2005/01/21/oracle-sqlplus-character-in-string/


How to ensure the SYS account has required privilege.

1. Login to the system with account ORACLE

2. Connect to Oracle Database using the following command.

#  sqlplus /nolog
#  connect / as sysdba
#  column sysoper format a10;
#  column sysdba format a10;
#  select * from v$pwfile_users;

 

select * from v$pwfile_users;

How to check whether the Oracle Application is 32bit or 64bit.

1. Login to the system with root account.
2. Change the directory to Oracle Home directory

# cd $ORACLE_HOME/bin

3.  Type at the prompt


# file oracl*


This will display the file type of your oracle binaries.

For Example , If you are running 64 bit binaries, then the output will be as follow

oracle: ELF 64-bit MSB executable SPARCV9 Version 1, dynamically linked, not stripped


How to check whether IPv6 is enabled or not.

Use the IFCONFIG command to see the INET6 entries. INET6 indicates that IPv6 is enabled.


IFCONFIG


How to disable the IPv6.

1. Edit the modprobe.conf file on the Linux box.

# vi /etc/modprobe.conf

Add line: alias net-pf-10 off

2. Reboot the Linux server to ensure the changes take effect.

 

Oracle 8.1.X, 9.X.X, 10.X.X or 11.X.X  
-------------------------------------    
*** NEW IN 8i AND ABOVE ***       
A 'relink' script is provided in the $ORACLE_HOME/bin directory.       
% cd $ORACLE_HOME/bin       
% relink      ...this will display all of the command's options.         
usage: relink <parameter>         
accepted values for parameter: all, oracle, network, client,          
client_sharedlib, interMedia, precomp, utilities, oemagent, ldap        
 Note: ldap option is available only from 9i. In 8i, you would have to manually relink    
ldap.      
You can relink most of the executables associated with an Oracle Server Installation    
by running the following command:       % relink all        
This will not relink every single executable Oracle provides(you can    
discern which executables were relinked by checking their timestamp with    
'ls -l' in the $ORACLE_HOME/bin directory).  However, 'relink all' will     
recreate the shared libraries that most executables rely on and thereby    
resolve most issues that require a proper relink. 



$ORACLE_HOME/bin relink all

 

truss
truss -aefo sqlplus.trc sqlplus /nolog
connect / as sysdba
(AIX, Solaris)
or
strace -f -o sqlplus.trc sqlplus /nolog
connect / as sysdba
(Linux)

SQL> oradebug ipc

Information written to trace file. Trace file is written to USER_DUMP_DEST. The shared memory segment id can be found by looking in the trace file for Shmid:

Then look to verify this is running with the following command

% ipcs -b

or

$ORACLE_HOME/bin/sysresv

Remove all the problematic shared memory segments from the memory:

check the $ORACLE_HOME/dbs directory for lk<SID> files and remove them.

 

 

ipcs

Remove all the problematic semaphores from the memory:

ipcrm -m <shared memory id>

ipcrm -s <semaphore id>

 

create synonym
create synonym pbs_apps_gl_interface for apps.gl_interface@apps_pbs;

 

session cached cursors

select a.value, s.username, s.sid, s.serial#
from v$sesstat a, v$statname b, v$session s
where a.statistic# = b.statistic# and s.sid=a.sid
and b.name = 'opened cursors current'

 

Max open cursor

 

select max(a.value) as highest_open_cur, p.value as max_open_cur 
        from   v$sesstat a, v$statname b, v$parameter p 
        where a.statistic# =   b.statistic# 
        and b.name = 'opened cursors current' 
        and   p.name= 'open_cursors'
        group by p.value; 
       
     

 

 

\

SETSUID
% cd ORACLE_HOME/bin 
% ls -l oracle          
% -rwxr-x--x      As the Oracle user, you do the following:           
% chmod 6751 oracle 

-rwsr-s--x 1 oraman dba 210824714 May 31 11:22 oracle




-rws--x--- 1 root dba 45411 May 31 11:21 nmo

chmod 6751 nmo changes it to: -rwsr-s--x 1 root dba 45411 May 31 11:21 nmo

 

sorts to disk
Examine the SQL statement currently being run by the session
experiencing waits to see what is causing the sorts. Query V$TEMPSEG_USAGE to find
the SQL statement that is generating the sort. Also query the statistics from
V$SESSTAT for the session to determine the size of the sort. See if it is possible to
reduce the sorting by tuning the SQL statement. If WORKAREA_SIZE_POLICY is
MANUAL, then consider increasing the SORT_AREA_SIZE for the system (if the sorts
are not too big) or for individual processes. If WORKAREA_SIZE_POLICY is AUTO, then
investigate whether to increase PGA_AGGREGATE_TARGET. See "PGA Memory
Management" on page 7-42.

 

Query V$LOCK to find the sessions holding the lock. For every session waiting for the
 event enqueue, there is a row in V$LOCK with REQUEST <> 0. Use one of the following
two queries to find the sessions holding the locks and waiting for the locks.
 If there are enqueue waits, you can see these using the following statement:

 

Finding Locks and Lock Holders
 
         
         SELECT * FROM V$LOCK WHERE request > 0;
       
To show only holders and waiters for locks being waited on, use the following:
SELECT DECODE(request,0,'Holder: 
','Waiter: ') || sid sess
, id1, id2
, lmode
, request
, type         
FROM V$LOCK        
 WHERE (id1, id2, type) IN (SELECT id1, id2, type FROM V$LOCK WHERE request > 0)     
ORDER BY id1, request;


home

 

Go to top

© 2007-2025 LMU. All rights reserved.