DEFINITIONS

Definitions More Info.
Definition ID60
TitleSQL
CategorySCRIPT
Definitiondelete_all_constraints
Definition Description --IKI KERE CALISTIR!!!!!!!!!!!!!!!!!!!! -- t-sql scriptlet to drop all constraints on a table DECLARE @database nvarchar(50) DECLARE @table nvarchar(50) set @database = 'DSMART_SAP' set @table = 'select ''dbo.''+name from sys.tables where type = ''U''AND SCHEMA_ID=1' DECLARE @sql nvarchar(255) WHILE EXISTS(select * from INFORMATION_SCHEMA.TABLE_CONSTRAINTS where constraint_catalog = @database and table_name = @table) BEGIN select @sql = 'ALTER TABLE ' + @table + ' DROP CONSTRAINT ' + CONSTRAINT_NAME from INFORMATION_SCHEMA.TABLE_CONSTRAINTS where constraint_catalog = @database and table_name = @table exec sp_executesql @sql END
RecordBycunay
Record Date15-02-2012 16:12:50
Düzenle
Kopyala
Sil