sp_fkutils.sql

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

Previous article
Next article

Get the Free Newsletter!

Subscribe to Cloud Insider for top news, trends & analysis

Latest Articles