Results 1 to 2 of 2
  1. #1
    manik's Avatar
    manik is online now Om Shanti!
    Join Date
    Apr 2008
    Location
    Boston, MA
    Posts
    13,232
    Thanks
    745
    Thanked 729 Times in 564 Posts
    Blog Entries
    4
    Feedback Score
    4 (100%)

    Default How to Delete All Data From All Non-System Tables - MSSQL

    Sometimes we need to clean data from all non-system tables before we can populate them with the fresh new set of data.

    Here are couple of ways.

    a) Delete data from all tables without resetting the identity columns
    -- disable referential integrity
    EXEC sp_MSForEachTable 'ALTER TABLE ? NOCHECK CONSTRAINT ALL'
    GO

    EXEC sp_MSForEachTable 'DELETE FROM ?'
    GO
    -- enable referential integrity again
    EXEC sp_MSForEachTable 'ALTER TABLE ? CHECK CONSTRAINT ALL'
    GO

    b) Delete data from all tables resetting identity columns
    -- disable referential integrity
    EXEC sp_MSForEachTable 'ALTER TABLE ? NOCHECK CONSTRAINT ALL'
    GO

    EXEC sp_MSForEachTable 'TRUNCATE TABLE ?'
    GO

    -- enable referential integrity again
    EXEC sp_MSForEachTable 'ALTER TABLE ? CHECK CONSTRAINT ALL'
    GO
    Free Classified Ads & BUSINESS/PROFESSIONAL SOCIAL NETWORK


  2. #2
    sandy712 is offline Freshman
    Join Date
    Aug 2012
    Posts
    12
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Feedback Score
    0

    Default

    i am agree with the above statement......

Similar Threads

  1. Cannot perform '<=' operation on MySql.Data.Types.MySqlDateTime and System.String.
    By brijeshtiwari1984 in forum Web Development - Programming & Coding
    Replies: 0
    Last Post: 02-01-2012, 03:51 AM
  2. Replies: 1
    Last Post: 10-13-2011, 09:00 AM
  3. Pulling Data From Multiple Tables
    By slanluc in forum PHP
    Replies: 3
    Last Post: 08-25-2011, 03:28 AM
  4. How to test data loading in Data base testing ?
    By deveshraigniit in forum Databases
    Replies: 4
    Last Post: 06-07-2011, 09:02 AM
  5. Windows | cPanel |.NET,ASP,AJAX,XML,MSSQL|@ 6.95!
    By TEE06 in forum Other Hosting Offers
    Replies: 0
    Last Post: 08-18-2010, 03:33 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Partners: BOSTON WEB DEVELOPER, LLC   |   WEBCOSMO CLASSIFIEDS