Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • Oracle Metalink useful notes Oracle
  • TABLE SIZING WITH DB_BLOCK ARCHITECTURE Reference : Metalink note : 10640.1 Oracle
  • To Find Orphan OS processes. Linux/Unix
  • To see mem usage and CPU usage system wide. Linux/Unix
  • move_arch_files.ksh Linux/Unix
  • find_string_in_database.sql Oracle
  • Unix split command to split files Linux/Unix
  • New OFA for 11g Oracle
  • Insert cause enqueue locks Oracle
  • DB Console Mainenance. Oracle
  • In Addition to previous note, following grants needed on PERFSTAT user. Oracle
  • Oracle Standby Database Library Index from Metalink Oracle
  • cif crons Linux/Unix
  • Find total file sizes Linux/Unix
  • chk_space_SID.ksh Linux/Unix

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

  • Pending Transaction Neighbors Script Oracle
  • Temporary Tablespace Information and restriction. Oracle
  • Ports used by Oracle Software Oracle
  • Facts about SCN and Rollback Segment Oracle
  • v$backup.status information Oracle
  • How to check current redo log progress redo_progress.sql 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 (393)
  • PHP/MYSQL/Wordpress (10)
  • POSTGRESQL (1)
  • 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

  • Complete Git Tutorial for Beginners25-Dec-2025
  • Postgres DB user and OS user.25-Dec-2025
  • 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

Archives

  • 2025
  • 2024
  • 2023
  • 2010
  • 2009
  • 2008
  • 2007
  • 2006
  • 2005
  • Removing first line Linux/Unix
  • Find Multiple levels of object dependencies : depen.sql Oracle
  • How to find where datafile is created dbf_info.sql Oracle
  • Changing unix system clock when Oracle database is running. Oracle
  • How to change hostname in Linux Linux/Unix
  • Find all users who have DML privileges Oracle
  • Finding locked objects Oracle
  • Rename Oracle Instance Name Oracle

Copyright © 2026 pvmehta.com.

Powered by PressBook News WordPress theme