PHP Classes

File: SQL File

Recommend this page to a friend!
  Packages of Jorge Castro   Chaos Machine One   exercise/milkco/truncate.sql   Download  
File: exercise/milkco/truncate.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Chaos Machine One
Generate random data that obeys to formulas
Author: By
Last change:
Date: 8 months ago
Size: 693 bytes
 

Contents

Class file image Download
-- SET FOREIGN_KEY_CHECKS=0; -- EXEC sp_MSforeachtable "ALTER TABLE ? NOCHECK CONSTRAINT all" TRUNCATE TABLE milkco.Branches; TRUNCATE TABLE milkco.Brands; TRUNCATE TABLE milkco.Cities; TRUNCATE TABLE milkco.Containers; TRUNCATE TABLE milkco.Countries; TRUNCATE TABLE milkco.Customers; TRUNCATE TABLE milkco.Employees; TRUNCATE TABLE milkco.InvoiceDetails; TRUNCATE TABLE milkco.Invoices; TRUNCATE TABLE milkco.Products; TRUNCATE TABLE milkco.ProductSubTypes; TRUNCATE TABLE milkco.ProductTypes; TRUNCATE TABLE milkco.Roles; TRUNCATE TABLE milkco.Services; -- SET FOREIGN_KEY_CHECKS=1; -- exec sp_MSforeachtable @command1="print '?'", @command2="ALTER TABLE ? WITH CHECK CHECK CONSTRAINT all"