Thursday, December 18, 2025

MSSQL vs Oracle on patching the binary before installing them

 Slipstream in MSSQL:  Apply CU on SQL binary even before setting up the instance


cd <Downloaded SQL binary path>\

setup.exe /Action=Upgrade /UpdateEnabled=True /UpdateSource="<path of downloaded CU>"


You do the same in oracle using..


./runInstaller -applyRU <RUBinary> -applyOneOffs <oneoff1>,<oneoff2> etc...


All these helps in applying the fix while an upgrade is attempted. So you dont need any workarounds :)

No comments:

Post a Comment

Ingest csv data into Apache Iceberg using spark notebook

  Objective: Ingest csv data into Apache Iceberg using spark notebook Steps: 1. Start our VM 2. start our docker containers cd /opt/de [root...