Search found 6161 matches

by jimb
Tue Sep 06, 2022 4:16 pm
Forum: Database Administration
Topic: Creating RMAN Backup With TAG And Retention
Replies: 6
Views: 642

Creating RMAN Backup With TAG And Retention

1) Connect to target rman target / 2) Set destination to Tape or disk: CONFIGURE DEFAULT DEVICE TYPE TO 'SBT_TAPE'; 3) Run backup with TAG: (Note: Replace highlighted with actual tag and retention period) rman target / catalog rcat/pass@host:port/rcat.service RUN { show all; CONFIGURE DEFAULT DEVIC...
by jimb
Tue Sep 06, 2022 4:11 pm
Forum: Database Administration
Topic: Creating Guaranteed Restore Point
Replies: 5
Views: 490

Creating Guaranteed Restore Point

1. Ensure Flashback Database Is ON: SQL> SELECT FLASHBACK_ON FROM V$DATABASE; FLASHBACK_ON ------------------ YES 2. If flashback is OFF, turn it on: SQL> ALTER DATABASE FLASHBACK ON; SQL> SELECT FLASHBACK_ON FROM V$DATABASE; 3. Create a guaranteed restore point: SQL> CREATE RESTORE POINT {restore_...
by jimb
Sat Oct 31, 2015 3:59 pm
Forum: Oracle Error Codes
Topic: ORA-06110
Replies: 4
Views: 514

ORA-06110

Hi twitt,

The errors are usually due to usage, application or configuration issues but in some cases they may be caused by a bug issue.
Refer to OERR: ORA-6110 "NETTCP: message send failure" Reference Note (Doc ID 19930.1).

If you have metalink account, file an SR with Oracle Support.
by jimb
Sat Oct 31, 2015 12:49 pm
Forum: Oracle Error Codes
Topic: ORA-06110: NETTCP: message send failure
Replies: 6
Views: 570

ORA-06110: NETTCP: message send failure

Hi twitt,

The errors are usually due to usage, application or configuration issues but in some cases they may be caused by a bug issue.
Refer to OERR: ORA-6110 "NETTCP: message send failure" Reference Note (Doc ID 19930.1).

If you have metalink account, file an SR with Oracle Support.
by jimb
Wed Jun 03, 2015 5:24 pm
Forum: Backup and Recovery
Topic: Recover Database from ORA-00333: redo log read error block XXX count YYY
Replies: 5
Views: 1318

Recover Database from ORA-00333: redo log read error block XXX count YYY

After restarting the machine, we have mostly got he following error: SQL> startup ORACLE instance started. Total System Global Area ***** bytes Fixed Size ***** bytes Variable Size ***** bytes Database Buffers ***** bytes Redo Buffers ***** bytes Database mounted. ORA-00333: redo log read error bloc...
by jimb
Sat Jun 28, 2014 6:32 pm
Forum: Database Administration
Topic: List Currently Specified But Deprecated Parameters In Oracle Database 11g
Replies: 6
Views: 1363

List Currently Specified But Deprecated Parameters In Oracle Database 11g

select s.name,s.isspecified, p.isdeprecated,s.value
from v$spparameter s, v$parameter p
where s.isspecified='TRUE'
and p.isdeprecated='TRUE'
and s.name=p.name;
by jimb
Sun Mar 30, 2014 9:43 am
Forum: Microsoft Windows
Topic: Enabling User to Appear Offline on Office Communicator 2007 R2
Replies: 6
Views: 2153

Enabling User to Appear Offline on Office Communicator 2007 R2

By default, Office Communicator 2007 R2 enable users to set their presence to one of the following five states: Available Busy Do Not Disturb Be Right Back Away But Administrators can provide users with another option for setting their presence: Appear Offline . When a user selects this option, he o...
by jimb
Wed Jan 15, 2014 2:15 pm
Forum: Database Administration
Topic: Auto Optimizer Statistics
Replies: 16
Views: 1141

Auto Optimizer Statistics

To list execution history: set lines 999 set pages 999 col WINDOW_NAME for a16 col JOB_START_TIME for a40 col JOB_DURATION for a15 col JOB_STATUS for a9 col JOB_INFO for a70 SELECT WINDOW_NAME, JOB_START_TIME,JOB_DURATION,JOB_STATUS,JOB_INFO FROM DBA_AUTOTASK_JOB_HISTORY WHERE client_name ='auto opt...
by jimb
Tue Dec 10, 2013 10:01 am
Forum: Oracle Installation
Topic: Deinstalling Oracle Management Agent
Replies: 4
Views: 1804

Deinstalling Oracle Management Agent

1. Stop agent: $<AGENT_HOME>/bin/emctl stop agent 2. Run the following command from the Oracle home of the Management Agent: $<ORACLE_HOME>/oui/bin/runInstaller -deinstall -silent "REMOVE_HOMES={absolute_path_to_agent_oracle_home}" -removeallfiles e.g. /u01/oracle/base/product/11.2.0.3/oui...