Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • Validating ORACLE_SID againt oratab file. Linux/Unix
  • More info about /proc folder and its relation with processes. Linux/Unix
  • Nice notes on wait events Oracle
  • Histogram information Oracle
  • How to check current redo log progress redo_progress.sql Oracle
  • Oracle Material from OTN Oracle
  • checking redhat linux version Linux/Unix
  • avail.sh ( find filesystem spae usage) Linux/Unix
  • import-export with multiple files Oracle
  • get_aix_vmstat.ksh Oracle
  • How To Resolve Stranded DBA_2PC_PENDING Entries ID 401302.1 (Very Good prooven) Oracle
  • SQL Server: How to see current transactions or requests SQL Server
  • Best approach for Oracle database patching sequence to latest/required patchset along with CPU/PSU/any-other-one-off patch ID 865255.1 Oracle
  • oracle_env_10g_CADEV Linux/Unix
  • run this before doing any dbchange pvm_pre_change.sql Oracle

TRUNCATE table and disabling referential constraints.

Posted on 31-Mar-2006 By Admin No Comments on TRUNCATE table and disabling referential constraints.

When you truncate table A, and Table A has some child table that contain data. TRUNCATE fails. For that you need to find table A’s all child tables and diable that referential integrity.

/* before_trunc.sql

This script gives disble constrints script before truncating table

*/

accept tblname prompt ‘Enter the Table Name You want to truncate -> ‘

column head heading “Execute Following Statements To Truncate &tblname, as &tblname is referenced by following foreign keys”

select ‘alter table ‘ || lpad(b.table_name, 30) || ‘ disable constraint ‘ || b.constraint_name || ‘;’ as “Head”

from user_constraints a, user_constraints b

where a.constraint_name = b.r_constraint_name

and a.table_name = upper(‘&tblname’);

Oracle, SQL scripts

Post navigation

Previous Post: Rownum with Order by
Next Post: before_trunc.sql Before Truncate table needs to execute following:

Related Posts

  • Distributed Transaction Troubleshooting. Oracle
  • How to know current SID Oracle
  • How To Transfer Passwords Between Databases (ref note: 199582.1) Oracle
  • Facts about SCN and Rollback Segment Oracle
  • Oracle Standby Database Library Index from Metalink Oracle
  • find_longsql.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)
  • 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
  • Recovering lost SYS password Oracle
  • How to find who is using which Rollback segment and how many rows or blocks in that rollback segments, Oracle
  • Roles and Stored Procs II Oracle
  • Temporary tablespace explaination Oracle
  • The most important Tuning Notes Oracle
  • Passing from Unix to PLSQL using bind variables Linux/Unix
  • Rman Notes -1 Oracle
  • SCRIPT TO LIST RECURSIVE DEPENDENCY BETWEEN OBJECTS UTLDTREE.sql Oracle

Copyright © 2025 pvmehta.com.

Powered by PressBook News WordPress theme