From 4334cc7d6de30ab56e64ddef603c197917c5ce21 Mon Sep 17 00:00:00 2001 From: OB Date: Thu, 2 Oct 2025 13:30:15 +0530 Subject: [PATCH] Chore: formatting and add missing code blocks in IFS Deployment Steps Guide --- steps.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/steps.md b/steps.md index ccdd880..c1b63c8 100644 --- a/steps.md +++ b/steps.md @@ -27,6 +27,8 @@ This guide details the steps for installing a new delivery package in IFS, cover * Run the following commands to configure `kube`: ```bash .\main.ps1 -resource 'GETKUBECONFIG' + ``` + ```bash copy .\config\kube\config $HOME\.kube\ ``` 8. **Verify Namespace and Pods:** @@ -60,7 +62,9 @@ This guide details the steps for installing a new delivery package in IFS, cover * Set the Oracle environment ID: ```bash . oraenv + ``` # OR + ```bash set oracle_sid= ``` 12. **Verify Instance and PDB Status:** @@ -77,6 +81,8 @@ This guide details the steps for installing a new delivery package in IFS, cover * Check the recovery file destination and size parameters: ```sql show parameter db_recovery_file_dest_size + ``` + ```sql show parameter db_recovery_file_dest ``` 15. **Create Temporary Directory:** @@ -88,14 +94,22 @@ This guide details the steps for installing a new delivery package in IFS, cover * If the database is in `no archive log` mode, configure the destination: ```sql db_recovery_file_dest_size=100G + ``` + ```sql db_recovery_file_dest=/u02/TEST ``` 17. **Set Database to Archive Log Mode:** * **Change DB to Archivelog:** ```sql shutdown immediate + ``` + ```sql startup mount + ``` + ```sql alter database archivelog; + ``` + ```sql alter database open; ``` * *(The "No Archivelog" commands are provided here for later reference.)*