init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,51 @@
|
|||
GO
|
||||
SET ANSI_NULLS, ANSI_PADDING, ANSI_WARNINGS, ARITHABORT, CONCAT_NULL_YIELDS_NULL, QUOTED_IDENTIFIER ON;
|
||||
|
||||
SET NUMERIC_ROUNDABORT OFF;
|
||||
|
||||
|
||||
GO
|
||||
PRINT N'Dropping [dbo].[T_CSOPORTOK_OSZTALYOK].[ELOZOTANEVIREKORDID].[MS_Description]...';
|
||||
|
||||
|
||||
GO
|
||||
EXECUTE sp_dropextendedproperty @name = N'MS_Description', @level0type = N'SCHEMA', @level0name = N'dbo', @level1type = N'TABLE', @level1name = N'T_CSOPORTOK_OSZTALYOK', @level2type = N'COLUMN', @level2name = N'ELOZOTANEVIREKORDID';
|
||||
|
||||
|
||||
GO
|
||||
PRINT N'Dropping [dbo].[FK_Csoportok_Osztalyok_CsoportokId_REF_Csoport]...';
|
||||
|
||||
|
||||
GO
|
||||
ALTER TABLE [dbo].[T_CSOPORTOK_OSZTALYOK] DROP CONSTRAINT [FK_Csoportok_Osztalyok_CsoportokId_REF_Csoport];
|
||||
|
||||
|
||||
GO
|
||||
PRINT N'Dropping [dbo].[FK_Csoportok_Osztalyok_OsztalyokId_REF_Osztaly]...';
|
||||
|
||||
|
||||
GO
|
||||
ALTER TABLE [dbo].[T_CSOPORTOK_OSZTALYOK] DROP CONSTRAINT [FK_Csoportok_Osztalyok_OsztalyokId_REF_Osztaly];
|
||||
|
||||
|
||||
GO
|
||||
PRINT N'Dropping [dbo].[T_CSOPORTOK_OSZTALYOK]...';
|
||||
|
||||
|
||||
GO
|
||||
DROP TABLE [dbo].[T_CSOPORTOK_OSZTALYOK];
|
||||
|
||||
|
||||
GO
|
||||
PRINT N'Refreshing [dbo].[sp_DeleteAllTTF]...';
|
||||
|
||||
|
||||
GO
|
||||
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_DeleteAllTTF]';
|
||||
|
||||
|
||||
GO
|
||||
PRINT N'Update complete.';
|
||||
|
||||
|
||||
GO
|
Loading…
Add table
Add a link
Reference in a new issue