Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • Process Map for CPU and Memory for OS processes Linux/Unix
  • Oracle10g – Using SQLAccess Advisor (DBMS_ADVISOR) with the Automatic Workload Repository Oracle
  • Sort with ASCII order and Numeric Order Linux/Unix
  • shutdown linux Linux/Unix
  • How to connect to Oracle Database with Wallet with Python. Oracle
  • upload.html PHP/MYSQL/Wordpress
  • To see how much time or progress of long transaction Oracle
  • oracle fast start failover best practice Oracle
  • Proc Compilation Oracle
  • EXTPROC Oracle
  • Session_info.ksh Linux/Unix
  • ORA-8031 issue and solution if it is occuring due to truncate. Oracle
  • Windows based Command line mailing program like mailx (Sednmail for windows) PHP/MYSQL/Wordpress
  • SAN Linux/Unix
  • Oracle Recommended Patches — Oracle Database ID 756671.1 Oracle

runon_allpdbs_show_conname.sh

Posted on 23-Apr-2026 By Admin No Comments on runon_allpdbs_show_conname.sh
#!/usr/bin/bash

ORACLE_HOME=/u02/app/oracle/product/19.0.0.0/dbhome_1

for v_inst in `ps -ef| grep pmon | awk '{print $8}' | grep -iv asm | grep -iv apx | awk -F"_" '{print $3}'`
do

echo "Instance name = $v_inst"
export ORACLE_SID=$v_inst

# Fetch the list of PDBs (excluding the Seed PDB)
# We use -S (silent) to keep the output clean for the loop
PDB_LIST=$(sqlplus -S / as sysdba <<EOF
SET HEAD OFF FEEDBACK OFF PAGES 0
SELECT name FROM v\$pdbs WHERE name != 'PDB\$SEED';
EXIT;
EOF
)

echo "----------------------------------------------------"
echo "Iterating through PDBs for SID: $ORACLE_SID"
echo "----------------------------------------------------"

for PDB in $PDB_LIST
do
    echo "Checking PDB: $PDB"

    sqlplus -S / as sysdba <<EOF
    set lines 120 pages 200
    ALTER SESSION SET CONTAINER = $PDB;
    SHOW CON_NAME;
    EXIT;
EOF
    echo "----------------------------------------------------"
done


done
Oracle, SQL scripts

Post navigation

Previous Post: runon_allcdbs_find_pdbs.sql
Next Post: top 10 AI news today

Related Posts

  • Jai Shree Ram Oracle
  • Temporary Tablespace Information and restriction. Oracle
  • pvm_pre_change.sql Oracle
  • 276434.1 Modifying the VIP or VIP Hostname of a 10g or 11g Oracle Clusterware Node Oracle
  • Settting up get_vmstat.sh for colletinf CPU Usage. Oracle
  • get_aix_vmstat.ksh Oracle

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Categories

  • Ansible (0)
  • AWS (2)
  • Azure (1)
  • Django (0)
  • GIT (1)
  • Linux/Unix (149)
  • MYSQL (5)
  • Oracle (403)
  • PHP/MYSQL/Wordpress (10)
  • POSTGRESQL (1)
  • Power-BI (0)
  • Python/PySpark (7)
  • RAC (18)
  • rman-dataguard (26)
  • shell (150)
  • SQL scripts (350)
  • SQL Server (6)
  • Uncategorized (5)
  • Videos (0)

Recent Posts

  • Key Management in Oracle: The Core Issue: Missing Master Key12-May-2026
  • SAT Mathematics 10 questions and answer at the end.30-Apr-2026
  • top 10 AI news today30-Apr-2026
  • runon_allpdbs_show_conname.sh23-Apr-2026
  • runon_allcdbs_find_pdbs.sql23-Apr-2026
  • Running PDB on single node in RAC09-Apr-2026
  • find_arc.sql09-Apr-2026
  • pvm_pre_change.sql08-Apr-2026
  • find_encr_wallet.sql08-Apr-2026
  • find_pdbs.sql08-Apr-2026

Archives

  • 2026
  • 2025
  • 2024
  • 2023
  • 2010
  • 2009
  • 2008
  • 2007
  • 2006
  • 2005
  • Temporary Tablespace Information and restriction. Oracle
  • Oracle 10g for solaris 10 Oracle
  • Physical Standby switchover with session active Oracle
  • sql_doing_fts.sql Oracle
  • Virtual Indexes in Oracle Oracle
  • Rename Tablespace Oracle
  • Passing from Unix to PLSQL using bind variables Linux/Unix
  • online_ts_bkup.sql Oracle

Copyright © 2026 pvmehta.com.

Powered by PressBook News WordPress theme