SHARE
Facebook X Pinterest WhatsApp

sp_fkutils.sql

Apr 9, 1998

Here are five general purpose procedures I wrote for SQL Server 6.0 to reverse engineer and drop foreign key constraints.

The procs are handy for quickly generating a list of all the constraints for a table or for dropping constraints so that you can modify a table. They can be used in conjunction with other scripts to quickly modify the structure of a table, and restore the constraint once changes are complete. The drop scripts can generate a script to drop the constraints, or execute the drop statements directly.

They should work on 6.5 just fine. No guarantees on 7.0…:

  • sp__fkText — used by sp_fkrebuild. generic function.
  • sp__fkRebuild <table name> Generate script for all FK constraints for a
  • tablesp__fkRebuildAll Generate script for all FK constraints
  • sp__fkDrop <table name> [, now (0,1)] — drops all keys for a table, can optionally perform the drops
  • sp__fkDropAll [now (0,1)] — drops all foreign keys in a database, can optionally perform the drops.

Compile the scripts in your master database, and they will be available in all databases. You may or may not want to grant execution right to public on these scripts.

For SQL Server 6.5

Author: Clayton Groom

Download Script:
sp_fkutils.sql



Disclaimer:
We hope that the information on these script pages is
valuable to you. Your use of the information contained in these pages,
however, is at your sole risk. All information on these pages is provided
“as -is”, without any warranty, whether express or implied, of its accuracy,
completeness, or fitness for a particular purpose…

Disclaimer Continued

Back to Database Journal Home

Recommended for you...

What Backups Do I Have?
Gregory Larsen
May 12, 2021
Improving the Performance of a Table Variable using Optimizer Hint RECOMPILE
Gregory Larsen
Apr 1, 2021
TYPE Definition Change in Oracle 21c
Tip 74 – Changing Cost Threshold for Parallelism
Gregory Larsen
Feb 24, 2021
Database Journal Logo

DatabaseJournal.com publishes relevant, up-to-date and pragmatic articles on the use of database hardware and management tools and serves as a forum for professional knowledge about proprietary, open source and cloud-based databases--foundational technology for all IT systems. We publish insightful articles about new products, best practices and trends; readers help each other out on various database questions and problems. Database management systems (DBMS) and database security processes are also key areas of focus at DatabaseJournal.com.

Property of TechnologyAdvice. © 2025 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.