2071 lines
44 KiB
Transact-SQL
2071 lines
44 KiB
Transact-SQL
GO
|
|
SET ANSI_NULLS, ANSI_PADDING, ANSI_WARNINGS, ARITHABORT, CONCAT_NULL_YIELDS_NULL, QUOTED_IDENTIFIER ON;
|
|
|
|
SET NUMERIC_ROUNDABORT OFF;
|
|
|
|
|
|
|
|
GO
|
|
PRINT N'Altering [dbo].[T_ALKALMAZOTT]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_ALKALMAZOTT]
|
|
ADD [C_A30KREDITESKURZUSOKLEVELSZAM] NVARCHAR (30) NULL;
|
|
|
|
|
|
GO
|
|
PRINT N'Altering [dbo].[T_DASHBOARDUZENET]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_DASHBOARDUZENET] ALTER COLUMN [C_EGYEDIAZONOSITO] NVARCHAR (50) NOT NULL;
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_DASHBOARDUZENET].[UK_4028849]...';
|
|
|
|
|
|
GO
|
|
CREATE UNIQUE NONCLUSTERED INDEX [UK_4028849]
|
|
ON [dbo].[T_DASHBOARDUZENET]([C_EGYEDIAZONOSITO] ASC) WHERE ([TOROLT]='F');
|
|
|
|
|
|
GO
|
|
PRINT N'Altering [dbo].[T_FELHASZNALO]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FELHASZNALO]
|
|
ADD [C_EGYEDIAZONOSITO] NVARCHAR (255) NULL;
|
|
|
|
|
|
GO
|
|
PRINT N'Altering [dbo].[T_FELTOLTOTTFAJL]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FELTOLTOTTFAJL]
|
|
ADD [C_KEPTEREMID] INT NULL,
|
|
[C_DOKUMENTUMTEREMID] INT NULL;
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FELTOLTOTTFAJL].[I_T_4028886_4028884]...';
|
|
|
|
|
|
GO
|
|
CREATE NONCLUSTERED INDEX [I_T_4028886_4028884]
|
|
ON [dbo].[T_FELTOLTOTTFAJL]([C_KEPTEREMID] ASC);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FELTOLTOTTFAJL].[I_T_4028889_4028887]...';
|
|
|
|
|
|
GO
|
|
CREATE NONCLUSTERED INDEX [I_T_4028889_4028887]
|
|
ON [dbo].[T_FELTOLTOTTFAJL]([C_DOKUMENTUMTEREMID] ASC);
|
|
|
|
|
|
GO
|
|
CREATE UNIQUE NONCLUSTERED INDEX [NCU_FeltoltottFajl_DokumentumTeremId]
|
|
ON [dbo].[T_FELTOLTOTTFAJL]([C_DOKUMENTUMTEREMID] ASC) WHERE ([C_DOKUMENTUMTEREMID] IS NOT NULL);
|
|
|
|
|
|
GO
|
|
PRINT N'Altering [dbo].[T_TANTARGY]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_TANTARGY]
|
|
ADD [C_ISAMITANTARGY] CHAR (1) DEFAULT ('F') NOT NULL;
|
|
|
|
|
|
GO
|
|
PRINT N'Altering [dbo].[T_TAVOLLETSTATUSZ]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_TAVOLLETSTATUSZ] DROP COLUMN [C_SAPKOD];
|
|
|
|
|
|
GO
|
|
PRINT N'Altering [dbo].[T_TAVOLLETTIPUS]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_TAVOLLETTIPUS]
|
|
ADD [C_SAPKOD] NVARCHAR (50) NULL;
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO]...';
|
|
|
|
|
|
GO
|
|
CREATE TABLE [dbo].[T_FOGLALKOZASAMITANULO] (
|
|
[ID] INT IDENTITY (1, 1) NOT NULL,
|
|
[C_AMIFOTARGYID] INT NOT NULL,
|
|
[C_AMITAGOZATID] INT NOT NULL,
|
|
[C_AMITANTARGYKOTELEZOSEGID] INT NOT NULL,
|
|
[C_EVFOLYAMTIPUSID] INT NOT NULL,
|
|
[C_TANULOID] INT NOT NULL,
|
|
[C_FOGLALKOZASID] INT NOT NULL,
|
|
[C_INTEZMENYID] INT NOT NULL,
|
|
[C_TANEVID] INT NOT NULL,
|
|
[TOROLT] CHAR (1) NOT NULL,
|
|
[SERIAL] INT NOT NULL,
|
|
[LASTCHANGED] DATETIME NOT NULL,
|
|
[CREATED] DATETIME NOT NULL,
|
|
[MODIFIER] INT NULL,
|
|
[CREATOR] INT NULL,
|
|
[ELOZOTANEVIREKORDID] INT NULL,
|
|
[NNID] INT NULL,
|
|
CONSTRAINT [PK_T_4028872] PRIMARY KEY CLUSTERED ([ID] ASC)
|
|
);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[I_T_4028872_4028873]...';
|
|
|
|
|
|
GO
|
|
CREATE NONCLUSTERED INDEX [I_T_4028872_4028873]
|
|
ON [dbo].[T_FOGLALKOZASAMITANULO]([C_INTEZMENYID] ASC, [C_TANEVID] ASC, [C_AMIFOTARGYID] ASC);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[I_T_4028872_4028874]...';
|
|
|
|
|
|
GO
|
|
CREATE NONCLUSTERED INDEX [I_T_4028872_4028874]
|
|
ON [dbo].[T_FOGLALKOZASAMITANULO]([C_INTEZMENYID] ASC, [C_TANEVID] ASC, [C_AMITAGOZATID] ASC);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[I_T_4028872_4028875]...';
|
|
|
|
|
|
GO
|
|
CREATE NONCLUSTERED INDEX [I_T_4028872_4028875]
|
|
ON [dbo].[T_FOGLALKOZASAMITANULO]([C_INTEZMENYID] ASC, [C_TANEVID] ASC, [C_AMITANTARGYKOTELEZOSEGID] ASC);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[I_T_4028872_4028876]...';
|
|
|
|
|
|
GO
|
|
CREATE NONCLUSTERED INDEX [I_T_4028872_4028876]
|
|
ON [dbo].[T_FOGLALKOZASAMITANULO]([C_INTEZMENYID] ASC, [C_TANEVID] ASC, [C_EVFOLYAMTIPUSID] ASC);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[I_T_4028880_4028878]...';
|
|
|
|
|
|
GO
|
|
CREATE NONCLUSTERED INDEX [I_T_4028880_4028878]
|
|
ON [dbo].[T_FOGLALKOZASAMITANULO]([C_TANULOID] ASC);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[I_T_4028883_4028881]...';
|
|
|
|
|
|
GO
|
|
CREATE NONCLUSTERED INDEX [I_T_4028883_4028881]
|
|
ON [dbo].[T_FOGLALKOZASAMITANULO]([C_FOGLALKOZASID] ASC);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[I_T_402887202_402887200]...';
|
|
|
|
|
|
GO
|
|
CREATE NONCLUSTERED INDEX [I_T_402887202_402887200]
|
|
ON [dbo].[T_FOGLALKOZASAMITANULO]([C_INTEZMENYID] ASC);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[I_T_402887205_402887203]...';
|
|
|
|
|
|
GO
|
|
CREATE NONCLUSTERED INDEX [I_T_402887205_402887203]
|
|
ON [dbo].[T_FOGLALKOZASAMITANULO]([C_TANEVID] ASC);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating unnamed constraint on [dbo].[T_FOGLALKOZASAMITANULO]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO]
|
|
ADD DEFAULT ((0)) FOR [SERIAL];
|
|
|
|
|
|
GO
|
|
PRINT N'Creating unnamed constraint on [dbo].[T_FOGLALKOZASAMITANULO]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO]
|
|
ADD DEFAULT ('F') FOR [TOROLT];
|
|
|
|
|
|
GO
|
|
PRINT N'Creating unnamed constraint on [dbo].[T_FOGLALKOZASAMITANULO]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO]
|
|
ADD DEFAULT (getdate()) FOR [LASTCHANGED];
|
|
|
|
|
|
GO
|
|
PRINT N'Creating unnamed constraint on [dbo].[T_FOGLALKOZASAMITANULO]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO]
|
|
ADD DEFAULT (getdate()) FOR [CREATED];
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[FK_4028880_4028878]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO] WITH NOCHECK
|
|
ADD CONSTRAINT [FK_4028880_4028878] FOREIGN KEY ([C_TANULOID]) REFERENCES [dbo].[T_TANULO] ([ID]);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[FK_4028883_4028881]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO] WITH NOCHECK
|
|
ADD CONSTRAINT [FK_4028883_4028881] FOREIGN KEY ([C_FOGLALKOZASID]) REFERENCES [dbo].[T_FOGLALKOZAS] ([ID]);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[FK_402887202_402887200]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO] WITH NOCHECK
|
|
ADD CONSTRAINT [FK_402887202_402887200] FOREIGN KEY ([C_INTEZMENYID]) REFERENCES [dbo].[T_INTEZMENY] ([ID]);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[FK_402887205_402887203]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO] WITH NOCHECK
|
|
ADD CONSTRAINT [FK_402887205_402887203] FOREIGN KEY ([C_TANEVID]) REFERENCES [dbo].[T_TANEV] ([ID]);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[FK_4028872_4028873]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO] WITH NOCHECK
|
|
ADD CONSTRAINT [FK_4028872_4028873] FOREIGN KEY ([C_AMIFOTARGYID], [C_INTEZMENYID], [C_TANEVID]) REFERENCES [dbo].[T_AMIFOTARGY] ([ID], [C_ALINTEZMENYID], [C_ALTANEVID]);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[FK_4028872_4028874]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO] WITH NOCHECK
|
|
ADD CONSTRAINT [FK_4028872_4028874] FOREIGN KEY ([C_AMITAGOZATID], [C_INTEZMENYID], [C_TANEVID]) REFERENCES [dbo].[T_AMITAGOZAT] ([ID], [C_ALINTEZMENYID], [C_ALTANEVID]);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[FK_4028872_4028875]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO] WITH NOCHECK
|
|
ADD CONSTRAINT [FK_4028872_4028875] FOREIGN KEY ([C_AMITANTARGYKOTELEZOSEGID], [C_INTEZMENYID], [C_TANEVID]) REFERENCES [dbo].[T_AMITANTARGYKOTELEZOSEG] ([ID], [C_ALINTEZMENYID], [C_ALTANEVID]);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[FK_4028872_4028876]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO] WITH NOCHECK
|
|
ADD CONSTRAINT [FK_4028872_4028876] FOREIGN KEY ([C_EVFOLYAMTIPUSID], [C_INTEZMENYID], [C_TANEVID]) REFERENCES [dbo].[T_EVFOLYAMTIPUS] ([ID], [C_ALINTEZMENYID], [C_ALTANEVID]);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[FK_4028886_4028884]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FELTOLTOTTFAJL] WITH NOCHECK
|
|
ADD CONSTRAINT [FK_4028886_4028884] FOREIGN KEY ([C_KEPTEREMID]) REFERENCES [dbo].[T_TEREM] ([ID]);
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[FK_4028889_4028887]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FELTOLTOTTFAJL] WITH NOCHECK
|
|
ADD CONSTRAINT [FK_4028889_4028887] FOREIGN KEY ([C_DOKUMENTUMTEREMID]) REFERENCES [dbo].[T_TEREM] ([ID]);
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[T_ALKALMAZOTT_OSSZES]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[T_ALKALMAZOTT_OSSZES]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[T_FELHASZNALO_OSSZES]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[T_FELHASZNALO_OSSZES]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[T_FELTOLTOTTFAJL_OSSZES]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[T_FELTOLTOTTFAJL_OSSZES]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[T_TANTARGY_OSSZES]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[T_TANTARGY_OSSZES]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[T_TAVOLLETSTATUSZ_OSSZES]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[T_TAVOLLETSTATUSZ_OSSZES]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[T_TAVOLLETTIPUS_OSSZES]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[T_TAVOLLETTIPUS_OSSZES]';
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO_OSSZES]...';
|
|
|
|
|
|
GO
|
|
CREATE VIEW [dbo].T_FOGLALKOZASAMITANULO_OSSZES
|
|
AS
|
|
SELECT *
|
|
FROM dbo.T_FOGLALKOZASAMITANULO
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumIntezmenyPedagogusok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumIntezmenyPedagogusok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumTanuloiAlapadatok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumTanuloiAlapadatok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumKozossegiSzolgalatOsztalyonkent]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumKozossegiSzolgalatOsztalyonkent]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumMegtartottOrak]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumMegtartottOrak]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumTanulokFeljegyzesei]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumTanulokFeljegyzesei]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumMulasztasokOsztalyonkentReszletes]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumMulasztasokOsztalyonkentReszletes]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumOsztalyTanuloinakMegtartottOrakTantargyankent]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumOsztalyTanuloinakMegtartottOrakTantargyankent]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumTanulokGyorsFeljegyzeseiHavibontasban]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumTanulokGyorsFeljegyzeseiHavibontasban]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumTanuloMentessegei]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumTanuloMentessegei]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetTanuloTantargyMulasztasMegtartottOra]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetTanuloTantargyMulasztasMegtartottOra]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetTanuloTantargyMulasztasOsszesOra]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetTanuloTantargyMulasztasOsszesOra]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumErtekelesekMuveszetiOktatasbanOsztalyonkent]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumErtekelesekMuveszetiOktatasbanOsztalyonkent]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumOsztalyTanuloinakMegtarthatoOrakTantargyankent]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumOsztalyTanuloinakMegtarthatoOrakTantargyankent]';
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[ID].[MS_Description]...';
|
|
|
|
|
|
GO
|
|
EXECUTE dev.uspAddOrUpdateExtendedProperty @name = N'MS_Description', @value = N'A rekord egyedi azonosítója, generált IDENTITY(1, 1) (kivéve altáblák esetén, ahol a főtábla ID-ját kapja)', @level0type = N'SCHEMA', @level0name = N'dbo', @level1type = N'TABLE', @level1name = N'T_FOGLALKOZASAMITANULO', @level2type = N'COLUMN', @level2name = N'ID';
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[C_INTEZMENYID].[MS_Description]...';
|
|
|
|
|
|
GO
|
|
EXECUTE dev.uspAddOrUpdateExtendedProperty @name = N'MS_Description', @value = N'Az intézmény ID-ja, amihez a rekord tartozik', @level0type = N'SCHEMA', @level0name = N'dbo', @level1type = N'TABLE', @level1name = N'T_FOGLALKOZASAMITANULO', @level2type = N'COLUMN', @level2name = N'C_INTEZMENYID';
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[C_TANEVID].[MS_Description]...';
|
|
|
|
|
|
GO
|
|
EXECUTE dev.uspAddOrUpdateExtendedProperty @name = N'MS_Description', @value = N'A tanév ID-ja, amihez a rekord tartozik', @level0type = N'SCHEMA', @level0name = N'dbo', @level1type = N'TABLE', @level1name = N'T_FOGLALKOZASAMITANULO', @level2type = N'COLUMN', @level2name = N'C_TANEVID';
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[TOROLT].[MS_Description]...';
|
|
|
|
|
|
GO
|
|
EXECUTE dev.uspAddOrUpdateExtendedProperty @name = N'MS_Description', @value = N'A rekord logikai töröltségét jelző flag', @level0type = N'SCHEMA', @level0name = N'dbo', @level1type = N'TABLE', @level1name = N'T_FOGLALKOZASAMITANULO', @level2type = N'COLUMN', @level2name = N'TOROLT';
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[SERIAL].[MS_Description]...';
|
|
|
|
|
|
GO
|
|
EXECUTE dev.uspAddOrUpdateExtendedProperty @name = N'MS_Description', @value = N'Minden C# kódból történő módosítás esetén eggyel nő az értéke. Hogy párhuzamos módosítás esetnán ne íródjanak felül az adatok', @level0type = N'SCHEMA', @level0name = N'dbo', @level1type = N'TABLE', @level1name = N'T_FOGLALKOZASAMITANULO', @level2type = N'COLUMN', @level2name = N'SERIAL';
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[LASTCHANGED].[MS_Description]...';
|
|
|
|
|
|
GO
|
|
EXECUTE dev.uspAddOrUpdateExtendedProperty @name = N'MS_Description', @value = N' A rekord utolsó módosításának időpontja', @level0type = N'SCHEMA', @level0name = N'dbo', @level1type = N'TABLE', @level1name = N'T_FOGLALKOZASAMITANULO', @level2type = N'COLUMN', @level2name = N'LASTCHANGED';
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[CREATED].[MS_Description]...';
|
|
|
|
|
|
GO
|
|
EXECUTE dev.uspAddOrUpdateExtendedProperty @name = N'MS_Description', @value = N'A rekord létrehozásának időpontja ', @level0type = N'SCHEMA', @level0name = N'dbo', @level1type = N'TABLE', @level1name = N'T_FOGLALKOZASAMITANULO', @level2type = N'COLUMN', @level2name = N'CREATED';
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[MODIFIER].[MS_Description]...';
|
|
|
|
|
|
GO
|
|
EXECUTE dev.uspAddOrUpdateExtendedProperty @name = N'MS_Description', @value = N'A rekordot utoljára módosító felhasználó ID-ja', @level0type = N'SCHEMA', @level0name = N'dbo', @level1type = N'TABLE', @level1name = N'T_FOGLALKOZASAMITANULO', @level2type = N'COLUMN', @level2name = N'MODIFIER';
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[CREATOR].[MS_Description]...';
|
|
|
|
|
|
GO
|
|
EXECUTE dev.uspAddOrUpdateExtendedProperty @name = N'MS_Description', @value = N'A rekordot létrehozó felhasználó ID-ja', @level0type = N'SCHEMA', @level0name = N'dbo', @level1type = N'TABLE', @level1name = N'T_FOGLALKOZASAMITANULO', @level2type = N'COLUMN', @level2name = N'CREATOR';
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[ELOZOTANEVIREKORDID].[MS_Description]...';
|
|
|
|
|
|
GO
|
|
EXECUTE dev.uspAddOrUpdateExtendedProperty @name = N'MS_Description', @value = N'A rekord előző tanévben lévő ID-ja', @level0type = N'SCHEMA', @level0name = N'dbo', @level1type = N'TABLE', @level1name = N'T_FOGLALKOZASAMITANULO', @level2type = N'COLUMN', @level2name = N'ELOZOTANEVIREKORDID';
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FOGLALKOZASAMITANULO].[NNID].[MS_Description]...';
|
|
|
|
|
|
GO
|
|
EXECUTE dev.uspAddOrUpdateExtendedProperty @name = N'MS_Description', @value = N'A rekord régi, Neptun Naplóban lévő ID-ja. (migrációval került be)', @level0type = N'SCHEMA', @level0name = N'dbo', @level1type = N'TABLE', @level1name = N'T_FOGLALKOZASAMITANULO', @level2type = N'COLUMN', @level2name = N'NNID';
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_ALKALMAZOTT].[C_A30KREDITESKURZUSOKLEVELSZAM].[MS_Description]...';
|
|
|
|
|
|
GO
|
|
EXECUTE dev.uspAddOrUpdateExtendedProperty @name = N'MS_Description', @value = N'nexiusos kurzusok oklevelszama', @level0type = N'SCHEMA', @level0name = N'dbo', @level1type = N'TABLE', @level1name = N'T_ALKALMAZOTT', @level2type = N'COLUMN', @level2name = N'C_A30KREDITESKURZUSOKLEVELSZAM';
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_FELHASZNALO].[C_EGYEDIAZONOSITO].[MS_Description]...';
|
|
|
|
|
|
GO
|
|
EXECUTE dev.uspAddOrUpdateExtendedProperty @name = N'MS_Description', @value = N'tanéveken átívelo azonosító, felhasználók azonosítására használja a központi és nexius rendszer', @level0type = N'SCHEMA', @level0name = N'dbo', @level1type = N'TABLE', @level1name = N'T_FELHASZNALO', @level2type = N'COLUMN', @level2name = N'C_EGYEDIAZONOSITO';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetLemorzsolodottTanulokByFelhely]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetLemorzsolodottTanulokByFelhely]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumTanulokAdatai]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumTanulokAdatai]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetIktatottDokumentumok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetIktatottDokumentumok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumErtekelesekOsztalyonkent]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumErtekelesekOsztalyonkent]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumTanulokEvesOraszamaiOsztalynkonet]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumTanulokEvesOraszamaiOsztalynkonet]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumTanulokTanultTantargyai]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumTanulokTanultTantargyai]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetKapcsolodoTantargyak]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetKapcsolodoTantargyak]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_Global_GetDatabaseErrors]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_Global_GetDatabaseErrors]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_Check4TValidation]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_Check4TValidation]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_FoglalkozasArchiv]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_FoglalkozasArchiv]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetAdminDashboardNaplo]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetAdminDashboardNaplo]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetAttanitasok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetAttanitasok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetHelyettesitesekAjanlasa]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetHelyettesitesekAjanlasa]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetIntezmenyFeltoltottsegeRiport]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetIntezmenyFeltoltottsegeRiport]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetPedagogusStatuszRiport]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetPedagogusStatuszRiport]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetRiportTantargyiOktatok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetRiportTantargyiOktatok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetShowNatKerdoivPopup]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetShowNatKerdoivPopup]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTantargyiStatuszPedagogusonkent]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTantargyiStatuszPedagogusonkent]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTantargyStatuszRiport]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTantargyStatuszRiport]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_SetRendszerErtesitesek]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_SetRendszerErtesitesek]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_ImportASC]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_ImportASC]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_KIRImportTanarok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_KIRImportTanarok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_KIRImportTanulok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_KIRImportTanulok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_AktivTanevValtasa]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_AktivTanevValtasa]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetAdminDashboardStatisztika]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetAdminDashboardStatisztika]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetAlkalmazottMunkaugyiExport]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetAlkalmazottMunkaugyiExport]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetFelhasznaloBelepesAlkalmazottExportData]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetFelhasznaloBelepesAlkalmazottExportData]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetIktSzandeknyilatkozatAdatok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetIktSzandeknyilatkozatAdatok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetOsszesFelhasznaloBelepesData]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetOsszesFelhasznaloBelepesData]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_TantargyfelosztasImport]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_TantargyfelosztasImport]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetMunkaidoElszamoloLap]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetMunkaidoElszamoloLap]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspValidateTanuloListTanuloMenessegToErtekeles]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspValidateTanuloListTanuloMenessegToErtekeles]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_Nyomtatvany_Excel_OsztalyTanuloinakMulasztasiSzazalekStatisztika]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_Nyomtatvany_Excel_OsztalyTanuloinakMulasztasiSzazalekStatisztika]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspGetAllSchemaKikuldendoErtekeles]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspGetAllSchemaKikuldendoErtekeles]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetOrarendiOrakhozTartozoTanarok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetOrarendiOrakhozTartozoTanarok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_CheckFelhasznaloHasSzerepkor]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_CheckFelhasznaloHasSzerepkor]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_ExportEsl_A03T01_1]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_ExportEsl_A03T01_1]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetAdminDashboardAdminisztracio]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetAdminDashboardAdminisztracio]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetElozoOraAdatai]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetElozoOraAdatai]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetErettsegiEredmenyekData]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetErettsegiEredmenyekData]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetESL_A03T01_1]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetESL_A03T01_1]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetFaliujsagBejegyzesek]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetFaliujsagBejegyzesek]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetFelhasznaloOsztalyaiByFoglalkozas]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetFelhasznaloOsztalyaiByFoglalkozas]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetFeljegyzesBeirasokData]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetFeljegyzesBeirasokData]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetFeljegyzesElektronikusUzenetekListaNezetData]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetFeljegyzesElektronikusUzenetekListaNezetData]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetFeljegyzesElektronikusUzenetekModifyPopupData]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetFeljegyzesElektronikusUzenetekModifyPopupData]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetFeljegyzesElektronikusUzenetekNaploNezetData]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetFeljegyzesElektronikusUzenetekNaploNezetData]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetFeljegyzesFaliujsagBejegyzesekData]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetFeljegyzesFaliujsagBejegyzesekData]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetHazifeladatOrarend]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetHazifeladatOrarend]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetHozzatartozok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetHozzatartozok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetIgazolasInfo]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetIgazolasInfo]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetKozossegiSzolgalatokData]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetKozossegiSzolgalatokData]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetMulasztasokNaploNezetData]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetMulasztasokNaploNezetData]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetNapkozisCsoportTanuloinakHaviMulasztasiOsszesitoje_1]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetNapkozisCsoportTanuloinakHaviMulasztasiOsszesitoje_1]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetOraMentessegList]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetOraMentessegList]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetOsszesNemBejegyzettOra]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetOsszesNemBejegyzettOra]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetRiportBetoltetlenAllashelyek]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetRiportBetoltetlenAllashelyek]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetRiportTanariAdatok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetRiportTanariAdatok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetRiportTanulokAdatai]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetRiportTanulokAdatai]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetRiportTanuloKorfa]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetRiportTanuloKorfa]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTanevrendjeErintettOrarendiOrai]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTanevrendjeErintettOrarendiOrai]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_IsEPenztarcaLetezik]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_IsEPenztarcaLetezik]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_TeremKapacitasTullepesVizsgalat]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_TeremKapacitasTullepesVizsgalat]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspGetFelhasznaloOsztalyaiByFoglalkozasAndOsztfo]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspGetFelhasznaloOsztalyaiByFoglalkozasAndOsztfo]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspGetIktatottDokumentumKulcsszavak]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspGetIktatottDokumentumKulcsszavak]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspGetSzamonkeresElorejelzesDetailDataSet]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspGetSzamonkeresElorejelzesDetailDataSet]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspGetSzamonkeresElorejelzesekByDateRange]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspGetSzamonkeresElorejelzesekByDateRange]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspGetTanulokSzamonkeresElorejelzesei]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspGetTanulokSzamonkeresElorejelzesei]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetESL_A03T02_1]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetESL_A03T02_1]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetESL_A03T03_1]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetESL_A03T03_1]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetSzakmaiGyNaplo]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetSzakmaiGyNaplo]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspImportTanuloBesorolasOsztaly]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspImportTanuloBesorolasOsztaly]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTanoranKivuliNaplo]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTanoranKivuliNaplo]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetDokumentumHelyettesitesekByDateInterval]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetDokumentumHelyettesitesekByDateInterval]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTanuloiAdatlapAdatok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTanuloiAdatlapAdatok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetElfogadottTantargyfelosztasok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetElfogadottTantargyfelosztasok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTanulokFeljegyzesekReszletezese]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTanulokFeljegyzesekReszletezese]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTanulokFelmentesekHatarozatok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTanulokFelmentesekHatarozatok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTanulokJegyeiReszletezes]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTanulokJegyeiReszletezes]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTanulokMulasztasokReszletezese]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTanulokMulasztasokReszletezese]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTanulokTantargyMulasztasokReszletezese]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTanulokTantargyMulasztasokReszletezese]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTanuloszerzodes]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTanuloszerzodes]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetFogadooraInfo]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetFogadooraInfo]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetHianyzoDuplikaltTanarok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetHianyzoDuplikaltTanarok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_Nyomtatvany_Excel_OsztalyTanuloinakGyakorlatiOraMulasztasiSzazalekStatisztika]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_Nyomtatvany_Excel_OsztalyTanuloinakGyakorlatiOraMulasztasiSzazalekStatisztika]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetIskolalatogatasiIgazolas]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetIskolalatogatasiIgazolas]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetKozossegiJelentkezesLap]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetKozossegiJelentkezesLap]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetNapkozisNaplo]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetNapkozisNaplo]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_FollowUpAlkalmazottPEP]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_FollowUpAlkalmazottPEP]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_FollowUpAlkalmazottTovabbiMunkaugy]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_FollowUpAlkalmazottTovabbiMunkaugy]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_FollowUpAlkalmazottVegzettseg]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_FollowUpAlkalmazottVegzettseg]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_FollowUpAlkalmazottVegzettsegKK]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_FollowUpAlkalmazottVegzettsegKK]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_FollowUpEszkoz]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_FollowUpEszkoz]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_FollowUpTanuloFelmentes]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_FollowUpTanuloFelmentes]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_FollowUpTerem]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_FollowUpTerem]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetDokumentumTanuloNaploSorszam]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetDokumentumTanuloNaploSorszam]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetDokumentumTanuloOrarend]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetDokumentumTanuloOrarend]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetDokumentumTanuloOrarendOsztalyonkent]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetDokumentumTanuloOrarendOsztalyonkent]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetErtekelesFotargyiFoglalkozasData]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetErtekelesFotargyiFoglalkozasData]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetFelhasznaloBelepesGondviseloExportData]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetFelhasznaloBelepesGondviseloExportData]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetFelhasznaloBelepesTanuloExportData]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetFelhasznaloBelepesTanuloExportData]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetFelhasznaloFoglalkozasokErtekelesekhez]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetFelhasznaloFoglalkozasokErtekelesekhez]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetFeljegyzesBeirasokReszletek]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetFeljegyzesBeirasokReszletek]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetFeljegyzesElektronikusUzenetekNaploNezetReszletek]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetFeljegyzesElektronikusUzenetekNaploNezetReszletek]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetHelyettesitesiNaplo]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetHelyettesitesiNaplo]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetKozossegiSzolgalatokReszletek]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetKozossegiSzolgalatokReszletek]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetKozossegiSzolgalatOsszesOraszam]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetKozossegiSzolgalatOsszesOraszam]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetNaplozasMulasztasList]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetNaplozasMulasztasList]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetNemKotottMunkaidoReszletezo]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetNemKotottMunkaidoReszletezo]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetOralatogatasok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetOralatogatasok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetOrarendErvenyesseggelExcelExportData]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetOrarendErvenyesseggelExcelExportData]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetOrarendExcelExportData]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetOrarendExcelExportData]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetOrarendKereszttabla_Osztaly]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetOrarendKereszttabla_Osztaly]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetOrarendKereszttabla_Pedagogus]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetOrarendKereszttabla_Pedagogus]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetOrarendOsztalyonkent]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetOrarendOsztalyonkent]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetOsztalyokEvesOraszama]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetOsztalyokEvesOraszama]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetOsztalyTanuloinakHaviMulasztasaiOsszesitoje_honapra]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetOsztalyTanuloinakHaviMulasztasaiOsszesitoje_honapra]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetPedagogusAltalAdottErtekelesek]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetPedagogusAltalAdottErtekelesek]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTanarOrarendLefedettseg]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTanarOrarendLefedettseg]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTanevKozbenKilepettTanulok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTanevKozbenKilepettTanulok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTanuloExport]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTanuloExport]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTanuloGondviseloExportData]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTanuloGondviseloExportData]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTanuloiAlapadatok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTanuloiAlapadatok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTanuloiEgyebAdatok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTanuloiEgyebAdatok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTanulokJelenletiIvAlkalmankent]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTanulokJelenletiIvAlkalmankent]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_Nyomtatvany_Excel_IdoszakiOsztalyokCsoportokTantargyiStatisztika]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_Nyomtatvany_Excel_IdoszakiOsztalyokCsoportokTantargyiStatisztika]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_Nyomtatvany_Excel_IdoszakiOsztalyokTantargyiStatisztika]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_Nyomtatvany_Excel_IdoszakiOsztalyokTantargyiStatisztika]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_Nyomtatvany_Excel_IdoszakiOsztalyStatisztika]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_Nyomtatvany_Excel_IdoszakiOsztalyStatisztika]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_Nyomtatvany_Excel_IdoszakiTanuloStatisztika]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_Nyomtatvany_Excel_IdoszakiTanuloStatisztika]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_PedagogusNemBejegyzettOrai]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_PedagogusNemBejegyzettOrai]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_PedagogusNemBejegyzettOraiOsszes]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_PedagogusNemBejegyzettOraiOsszes]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_TanuloKIRStatAdatokGyorsExport]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_TanuloKIRStatAdatokGyorsExport]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspFollowUpFelhasznaloCim]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspFollowUpFelhasznaloCim]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspFollowUpFelhasznaloEmail]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspFollowUpFelhasznaloEmail]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspFollowUpFelhasznaloTelefon]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspFollowUpFelhasznaloTelefon]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspFollowUpGondviseloCim]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspFollowUpGondviseloCim]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspGetBukasraAlloTanulok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspGetBukasraAlloTanulok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspGetNyomtatvanyokOrarendOsszes]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspGetNyomtatvanyokOrarendOsszes]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspGetTanuloErtekelesDataSetByFotargyAltargy]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspGetTanuloErtekelesDataSetByFotargyAltargy]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspGetTanuloErtekelesDataSetByMagatartasSzorgalom]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspGetTanuloErtekelesDataSetByMagatartasSzorgalom]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspGetTanuloErtekelesDataSetByTantargy]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspGetTanuloErtekelesDataSetByTantargy]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetNapkozisCsoportTanuloinakHaviMulasztasiOsszesitoje]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetNapkozisCsoportTanuloinakHaviMulasztasiOsszesitoje]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetOsztalyTanuloinakHaviMulasztasaiOsszesitoje]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetOsztalyTanuloinakHaviMulasztasaiOsszesitoje]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspTanulokBejegyzesStatisztika]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspTanulokBejegyzesStatisztika]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspTanulokGyorsBejegyzesStatisztika]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspTanulokGyorsBejegyzesStatisztika]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_ImportTantargyak]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_ImportTantargyak]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_AscValidateOsztalyCsoportTantargy]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_AscValidateOsztalyCsoportTantargy]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetFelhasznaloErintettTargyai]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetFelhasznaloErintettTargyai]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetRiportAllashelyKimutatas]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetRiportAllashelyKimutatas]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetRiportCsoportnontas]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetRiportCsoportnontas]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_DeleteAllTTF]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_DeleteAllTTF]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_FollowUpTantargy]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_FollowUpTantargy]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetDokumentumErtekelesekIdoszakonkent]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetDokumentumErtekelesekIdoszakonkent]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetDokumentumMulasztasok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetDokumentumMulasztasok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetStatPedagogusTanuloinakTantargyiMulasztasaiMegtartott]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetStatPedagogusTanuloinakTantargyiMulasztasaiMegtartott]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTantargyakElmaradtOraszama]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTantargyakElmaradtOraszama]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTantargyakMegtartottOraszama]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTantargyakMegtartottOraszama]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspGetLegfrissebbTanuloErtekelesDataSet]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspGetLegfrissebbTanuloErtekelesDataSet]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspGetTanarFoglalkozasai]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspGetTanarFoglalkozasai]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspGetTanuloErtekelesMondatbankData]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspGetTanuloErtekelesMondatbankData]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetDokumentumErtekelesek]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetDokumentumErtekelesek]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_HasTantargyFotargyAltargy]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_HasTantargyFotargyAltargy]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_Global_CreateDictionaryItems]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_Global_CreateDictionaryItems]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_ImportTantargyFelosztas]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_ImportTantargyFelosztas]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_FollowUpAlkalmazott]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_FollowUpAlkalmazott]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_OrarendImport]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_OrarendImport]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetErtesitoNyomtatvany]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetErtesitoNyomtatvany]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetCsoportNaplo]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetCsoportNaplo]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTorzslap]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTorzslap]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetErtesitesAltEsMulAdatok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetErtesitesAltEsMulAdatok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetUzenofuzetErtekelolap]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetUzenofuzetErtekelolap]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetOsztalyNaplo]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetOsztalyNaplo]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_FollowUpTanulo]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_FollowUpTanulo]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspFollowUpGondviselo]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspFollowUpGondviselo]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[uspCloneTanulo]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspCloneTanulo]';
|
|
|
|
|
|
GO
|
|
PRINT N'Checking existing data against newly created constraints';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO] WITH CHECK CHECK CONSTRAINT [FK_4028880_4028878];
|
|
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO] WITH CHECK CHECK CONSTRAINT [FK_4028883_4028881];
|
|
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO] WITH CHECK CHECK CONSTRAINT [FK_402887202_402887200];
|
|
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO] WITH CHECK CHECK CONSTRAINT [FK_402887205_402887203];
|
|
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO] WITH CHECK CHECK CONSTRAINT [FK_4028872_4028873];
|
|
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO] WITH CHECK CHECK CONSTRAINT [FK_4028872_4028874];
|
|
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO] WITH CHECK CHECK CONSTRAINT [FK_4028872_4028875];
|
|
|
|
ALTER TABLE [dbo].[T_FOGLALKOZASAMITANULO] WITH CHECK CHECK CONSTRAINT [FK_4028872_4028876];
|
|
|
|
ALTER TABLE [dbo].[T_FELTOLTOTTFAJL] WITH CHECK CHECK CONSTRAINT [FK_4028886_4028884];
|
|
|
|
ALTER TABLE [dbo].[T_FELTOLTOTTFAJL] WITH CHECK CHECK CONSTRAINT [FK_4028889_4028887];
|
|
|
|
|
|
GO
|
|
PRINT N'Update complete.';
|
|
|
|
|
|
GO
|
|
--------------------
|
|
|
|
PRINT '--- intézményi view-k (dbo táblákkal megegyező nevű és a tábla_OSSZES nevűek) frissítése ---'
|
|
|
|
DECLARE @viewname nvarchar(100), @pureview nvarchar(100)
|
|
|
|
DECLARE semaviewk CURSOR LOCAL FOR
|
|
SELECT '['+TABLE_SCHEMA + '].[' + TABLE_NAME + ']', TABLE_NAME
|
|
FROM INFORMATION_SCHEMA.TABLES
|
|
WHERE TABLE_TYPE = 'VIEW' and TABLE_SCHEMA LIKE 'KR[_]%[_]Schema'
|
|
AND TABLE_NAME in ('T_ALKALMAZOTT', 'T_ALKALMAZOTT_OSSZES'
|
|
,'T_DASHBOARDUZENET', 'T_DASHBOARDUZENET_OSSZES'
|
|
,'T_FELHASZNALO', 'T_FELHASZNALO_OSSZES'
|
|
,'T_FELTOLTOTTFAJL', 'T_FELTOLTOTTFAJL_OSSZES'
|
|
,'T_TANTARGY', 'T_TANTARGY_OSSZES'
|
|
,'T_TAVOLLETSTATUSZ', 'T_TAVOLLETSTATUSZ_OSSZES'
|
|
,'T_TAVOLLETTIPUS', 'T_TAVOLLETTIPUS_OSSZES' ) -- ha csak néhány VIEW frissült, akkor a gyorsabb futásért ide fel lehet sorolni
|
|
ORDER BY TABLE_SCHEMA, TABLE_NAME
|
|
|
|
OPEN semaviewk
|
|
FETCH NEXT FROM semaviewk INTO @viewname, @pureview
|
|
|
|
WHILE @@FETCH_STATUS = 0 BEGIN
|
|
PRINT @viewname
|
|
EXEC sp_refreshview @viewname
|
|
|
|
FETCH NEXT FROM semaviewk INTO @viewname, @pureview
|
|
END
|
|
|
|
CLOSE semaviewk
|
|
DEALLOCATE semaviewk
|
|
GO
|
|
|
|
--------------------
|
|
|
|
EXEC dev.sp_Global_GenerateAsyncAuditTriggerAll
|
|
GO
|
|
|
|
|
|
ALTER QUEUE auditLog.[AuditQueue]
|
|
WITH ACTIVATION
|
|
(
|
|
STATUS = ON,
|
|
PROCEDURE_NAME = auditLog.usp_AuditProcessing,
|
|
MAX_QUEUE_READERS = 10,
|
|
EXECUTE AS 'Kreta_tech_user'
|
|
);
|
|
|
|
GO
|