Saturday, 20 June 2020
Rolling Upgrade Error in Script
Reports Server Component Status in REPORTS 12C
Friday, 19 June 2020
AVDF Console and Listener Port Change
ORA-28041: Authentication protocol internal error
Expired user accounts can't change password and connect from 11.1.0.7 client to 12.2.0.1 DB+April2018PSU, failing with error
ORA-28041: Authentication protocol internal error.
There is no issue with open user accounts connecting from 11.1.0.7 client to 12.2.0.1 DB+April2018PSU.
Also the expired user account connections from 11.1.0.7 client to 12.2.0.1DB+Jan2018PSU works fine. The issue started only after applying April 2018 PSU patch on DB server.
From Forms 11.1.2.2 and the SQLPLUS 11.1.0.7 that comes with Forms 11.1.2.2, expired user connections fail with below message:
ERROR:
ORA-28041: Authentication protocol internal error
In 12.2.0.1 databases, 11.1 client support has been removed. The following table shows which client and which database version are supported.
Thursday, 11 June 2020
Cluster verification failed with PRVG-4574
select group_number, name,compatibility from v$asm_diskgroup;
GROUP_NUMBER NAME COMPATIBILITY
------------ ------------------------------ ----------------
1 OCR_DG 11.2.0.2.0 Thursday, 4 June 2020
ORA-19571: archived log RECID '***' STAMP '***' not found in control file
It seems that the Controlfile records are over-written.
1. check control_file_record_keep_time
NAME TYPE VALUE
———————————— ———– ——————————
control_file_record_keep_time integer 7
The value is very low. So please increase.
alter system set control_file_record_keep_time=20 scope=both;
System altered.
SQL> show parameter control
NAME TYPE VALUE
———————————— ———– ——————————
control_file_record_keep_time integer 20
2) Next you need to catalog the archivelogs to make the backup run without errors
RMAN> catalog start with '/u01/archive';
3. Now start the backup
Monday, 1 June 2020
Password same as Login Name
select
name as [LoginName]
,'Password is same as Login Name' [Description]
from sys.syslogins
WHERE PWDCOMPARE (name,password) = 1
Password same as Username
Monitoring Long Running Operations
set lines 1000
set pages 1000
COLUMN OP_NAME FORMAT a40
select * from (
SELECT
SID,
OPNAME OP_Name,
TO_CHAR(start_time,'DD-MON-YYYY HH:MI:SS') START_TIME,
TO_CHAR(start_time + (round(TIME_REMAINING/60)/1440 +round(ELAPSED_SECONDS/60)/1440),'DD-MON-YYYY HH:MI:SS') "Expected_End_Time",
round(TIME_REMAINING/60) "Remaining_Minuts",
round(ELAPSED_SECONDS/60) "Elapsed_Minuts",
round(((TIME_REMAINING/(TIME_REMAINING+ELAPSED_SECONDS))*100),2) "% Remaining",
round(((ELAPSED_SECONDS/(TIME_REMAINING+ELAPSED_SECONDS))*100),2) "% Completed"
FROM
V$SESSION_LONGOPS
WHERE
TIME_REMAINING>0) order by 4 desc;
Toad Error - Error downloading resources XML file
….//community-dowloads.quest.com/toadsoft/ORA…
Solution:
1. Launch Toad
2. Go to the menu View
| Toad Options
3. Go to Startup.
Under Automatic Updates, uncheck this option and select "Don't
automatically check for updates".
4. Go to General.
Under Toad Improvement Program, uncheck the option "Participate in the
Toad Improvement program".
5. Go to Network
Utilities. Under Hosts, uncheck the option "Override Proxy for Toad
sites".
6. Hit Apply and OK,
and then restart Toad.