Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • db_status.sql Oracle
  • Oracle GoldenGate lag monitoring shell script Linux/Unix
  • copying/removing directory with all its subdirectory Linux/Unix
  • Processes parameter and its dependencies on OS kernel parameters Linux/Unix
  • remove archfiles only when it is applied to DR rm_archfiles.sh Linux/Unix
  • Oracle Recommended Patches — Oracle Database ID 756671.1 Oracle
  • move_arch_files.ksh /* Good One */ Linux/Unix
  • DBA_HIST_SQLSTAT contents Oracle
  • tuning commmand for cpu, ip and memory stats Linux/Unix
  • Good Link from metalink 1 Oracle
  • Check SQL Server edition SQL Server
  • remove archfiles only when it is applied to DR rm_archfiles.sh Linux/Unix
  • Oracle Connections expire_time and firewall Oracle
  • grep multuple patterns Linux/Unix
  • Finding last recovered file on DR and remove all chanracters before any “/” 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

  • To check whether standby is recovering properly or not?? Oracle
  • Oracle Connections expire_time and firewall Oracle
  • Implementing Listener Security Oracle
  • cache buffer chain latch Oracle
  • DB Console Mainenance. Oracle
  • Kill a session dynanically using execute immediate 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
  • sql_doing_fts.sql Oracle
  • Caching sequence in Memory Oracle
  • Single character replacement in Unix Linux/Unix
  • Establishing trusted relationship between dbmonitor( central monitoring) and monitoring targets. Linux/Unix
  • temp_use.sql diplays usage of temp ts Oracle
  • DBMS_SQL for alter session. Oracle
  • proc.sql Oracle
  • Zip and unzip with tar Linux/Unix

Copyright © 2025 pvmehta.com.

Powered by PressBook News WordPress theme