Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • Monitor Long Running Job Oracle
  • ipcs -l Linux/Unix
  • Processes parameter and its dependencies on OS kernel parameters Linux/Unix
  • upload.html PHP/MYSQL/Wordpress
  • tab.sql Oracle
  • get_aix_vmstat.ksh Oracle
  • cif crons Linux/Unix
  • Find long Running Transaction Linux/Unix
  • Absolute file number and relative file number Oracle
  • Physical Standby switchover with session active Oracle
  • sid_wise_sql.sql Oracle
  • move_arch_files.ksh Linux/Unix
  • Does DBMS_JOB recompute the NEXT_DATE interval after or before Oracle
  • Very clear article about oracle dataguard Oracle
  • To find all disk io ( EMC as well as local) 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

  • Nice notes on wait events Oracle
  • 10g oem configuration Oracle
  • How to connect to Oracle Database with Wallet with Python. Oracle
  • Rman Notes -1 Oracle
  • sesswait.sql Oracle
  • Oracle Release Explaination 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
  • Deleting first line and lastline of a file using sed Linux/Unix
  • USE_NL and INDEX hints example Oracle
  • JSON/XML Types in Oracle Oracle
  • DBMS_UTILITY PACKAGE Oracle
  • Benefits and Usage of RMAN with Standby Databases Oracle
  • Kill a session dynanically using execute immediate Oracle
  • Implementing Listener Security Oracle
  • 751131.1 New Article Error 2819 While Requesting a Systemstate Dump Oracle

Copyright © 2025 pvmehta.com.

Powered by PressBook News WordPress theme