While the IB GBL patching targets were listed in the shared Excel, they were not formally communicated. I have initiated patching for the databases assigned to me and will continue to progress, considering my upcoming leave.
Support@example.com
Get in touch - Saturday: 8:30 am - 6:00 pm
#!/bin/bash
# Usage: ./compare_oracle_patches.sh <OLD_ORACLE_HOME> <NEW_ORACLE_HOME>
OLD_HOME=$1
NEW_HOME=$2
if [[ -z "$OLD_HOME" || -z "$NEW_HOME" ]]; then
echo "Usage: $0 <OLD_ORACLE_HOME> <NEW_ORACLE_HOME>"
exit 1
fi
echo "🔍 Comparing patches..."
echo "Old Home: $OLD_HOME"
echo "New Home: $NEW_HOME"
echo "----------------------------------------"
# Temp files
OLD_FILE=$(mktemp)
NEW_FILE=$(mktemp)
# Extract patch list
$OLD_HOME/OPatch/opatch lsinventory | grep "Patch" | sort > $OLD_FILE
$NEW_HOME/OPatch/opatch lsinventory | grep "Patch" | sort > $NEW_FILE
echo "📌 Patches ONLY in OLD (Bespoke Home):"
comm -23 $OLD_FILE $NEW_FILE
echo ""
echo "📌 Patches ONLY in NEW (Standard Home):"
comm -13 $OLD_FILE $NEW_FILE
echo ""
echo "📌 Common patches:"
comm -12 $OLD_FILE $NEW_FILE
# Cleanup
rm -f $OLD_FILE $NEW_FILE
echo "----------------------------------------"
echo "✅ Comparison complete"
/dbs/2025_Q2_F1/OPatch/opatch lsinventory | grep "Patch" | sort > old.txt
/dbs/2026_Q1_V1/OPatch/opatch lsinventory | grep "Patch" | sort > new.txt
diff old.txt new.txt
comm -3 \
<( /dbs/2025_Q2_F1/OPatch/opatch lsinventory | grep "Patch" | sort ) \
<( /dbs/2026_Q1_V1/OPatch/opatch lsinventory | grep "Patch" | sort )
Currently, TPAC/TPAI access requests require manual follow-ups with approvers on Microsoft Teams, causing delays when members are busy or unavailable. Requesters often check availability and ping multiple people, leading to time loss and chat clutter. The proposed solution is an automated agent that notifies all eligible approvers in real time via Teams. Available members can quickly review and approve the request directly. Once approved, the request is removed from the queue to avoid duplication. This will reduce unnecessary communication and significantly improve approval turnaround time.
Hi Shridhar/Radha,
Thank you for the details.
We have internally completed the assignment of databases for the patching activity and is progressing as planned without major issues.
Please find the progress update below:
Hello Friends! I am aliena part time blogger from Bihar. I am a student and I manage my study as well as my blog. I am 14 years old and I want to help those people who really want to do something on internet.
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit...
Copyright © 201. Metro UI Theme. Designed by: Templateism