Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • secure crt settings Linux/Unix
  • fdisk -l explaination about Primary-Logical-Extended Partitions Linux/Unix
  • oracle tips… from http://www.bijoos.com/oracle/douknow.htm Oracle
  • To Find Orphan OS processes. Linux/Unix
  • V$transaction notes for finding XID composition. Oracle
  • Difference between SYNC and AFFIRM Oracle
  • Temporary Tablespsace Temp tablespace behaviour Oracle
  • ORA-3136 Oracle
  • arch_configUOCIOTTO.ora Oracle
  • Settting up get_vmstat.sh for colletinf CPU Usage. Oracle
  • cache buffer chain latch Oracle
  • Find Command Linux/Unix
  • DBMS_UTILITY PACKAGE Oracle
  • Gather Stats manually using DBMS_STATS after disabling DBMS_SCHEDULER jobs as previous entry Oracle
  • normal maintenance for exp-imp and renaming table Oracle

find_pk.sql /* Find Primary Key */

Posted on 02-Aug-2005 By Admin No Comments on find_pk.sql /* Find Primary Key */

set pagesize 300

set linesize 205

set head on

set echo off

spool tblwopk

accept usrid prompt ‘Enter User Name : ‘

accept table_name prompt ‘Enter Table Name : ‘

column PrimaryKey format a80 heading ‘Follwoing Are Primary Keys’

select substr(a.column_name, 1, 20) || ‘ Position : ‘ || to_char(a.position) PrimaryKey

from dba_cons_columns a, dba_constraints b

where b.table_name = upper(‘&TABLE_NAME’)

and b.owner = upper(‘&usrid’)

and a.constraint_name = b.constraint_name

and b.constraint_type = ‘P’

order by a.position;

Oracle, SQL scripts

Post navigation

Previous Post: fkwoindex.sql /* Find FK without Index */
Next Post: tblwopk.sql /* Find Tables Without PK */

Related Posts

  • Explain Plan Doesn’T Change For Sql After New Statistics Generated Oracle
  • executing Function from SQLPLUS prompt Oracle
  • Kill a session dynanically using execute immediate Oracle
  • DBMS_PROFILER for tuning PLSQL programs. Oracle
  • Adding or Dropping Online Redo Log Files When Physical Standby in place Oracle
  • How To Transfer Passwords Between Databases (ref note: 199582.1) Oracle

Leave a Reply Cancel reply

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

Categories

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

Recent Posts

  • Trace a SQL session from another session using ORADEBUG30-Sep-2025
  • SQL Server Vs Oracle Architecture difference25-Jul-2025
  • SQL Server: How to see historical transactions25-Jul-2025
  • SQL Server: How to see current transactions or requests25-Jul-2025
  • T-SQL Vs PL/SQL Syntax25-Jul-2025
  • Check SQL Server edition25-Jul-2025
  • Checking SQL Server Version25-Jul-2025
  • Oracle vs MYSQL Architecture differences (For DBAs)24-Jul-2025
  • V$INSTANCE of Oracle in MYSQL24-Jul-2025
  • Day to day MYSQL DBA operations (Compared with Oracle DBA)24-Jul-2025

Archives

  • 2025
  • 2024
  • 2023
  • 2010
  • 2009
  • 2008
  • 2007
  • 2006
  • 2005
  • move_arch_files.ksh Linux/Unix
  • plan10g.sql good Oracle
  • Rman Notes -1 Oracle
  • Mutating Table Error while using database trigger Oracle
  • Good Oracle Architecture In Short and point to point Oracle
  • OEM-troubleshooting on 20-MAY-08 Oracle
  • alter database backup controlfile to trace Oracle
  • How to change hostname in Linux Linux/Unix

Copyright © 2025 pvmehta.com.

Powered by PressBook News WordPress theme