1618 lines
No EOL
30 KiB
Transact-SQL
1618 lines
No EOL
30 KiB
Transact-SQL
GO
|
|
SET ANSI_NULLS, ANSI_PADDING, ANSI_WARNINGS, ARITHABORT, CONCAT_NULL_YIELDS_NULL, QUOTED_IDENTIFIER ON;
|
|
|
|
SET NUMERIC_ROUNDABORT OFF;
|
|
|
|
|
|
DECLARE @sql nvarchar(max) = ''
|
|
SELECT @sql += 'DROP VIEW [' + t.TABLE_SCHEMA + '].' + t.TABLE_NAME + char(13) + char(10)
|
|
FROM INFORMATION_SCHEMA.TABLES t
|
|
WHERE t.TABLE_NAME = 'T_TAVOLLETJELENTO_ALKALMAZOTT' AND t.TABLE_TYPE = 'View'
|
|
|
|
EXEC sp_executesql @sql
|
|
|
|
|
|
GO
|
|
PRINT N'Dropping [dbo].[T_TAVOLLETJELENTO].[UK_4028770]...';
|
|
|
|
|
|
GO
|
|
DROP INDEX [UK_4028770]
|
|
ON [dbo].[T_TAVOLLETJELENTO];
|
|
|
|
|
|
GO
|
|
PRINT N'Dropping [dbo].[FK_4028777_4028776]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_TAVOLLETJELENTO_ALKALMAZOTT] DROP CONSTRAINT [FK_4028777_4028776];
|
|
|
|
|
|
GO
|
|
PRINT N'Dropping [dbo].[FK_4028778_4028776]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_TAVOLLETJELENTO_ALKALMAZOTT] DROP CONSTRAINT [FK_4028778_4028776];
|
|
|
|
|
|
GO
|
|
PRINT N'Dropping [dbo].[T_TAVOLLETJELENTO_ALKALMAZOTT]...';
|
|
|
|
|
|
GO
|
|
DROP TABLE [dbo].[T_TAVOLLETJELENTO_ALKALMAZOTT];
|
|
|
|
|
|
GO
|
|
PRINT N'Altering [dbo].[T_ALKALMAZOTT]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_ALKALMAZOTT]
|
|
ADD [C_KOTELEZOEVESSZABADSAGKERET] INT DEFAULT ((0)) NOT NULL;
|
|
|
|
|
|
GO
|
|
PRINT N'Altering [dbo].[T_FELHASZNALO]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FELHASZNALO]
|
|
ADD [C_BELUGYALTALAZONOSITOTT] CHAR (1) DEFAULT ('F') NOT NULL,
|
|
[C_UTOLSOADATFRISSITESIDOPONTJA] DATETIME NULL;
|
|
|
|
|
|
GO
|
|
PRINT N'Altering [dbo].[T_FELTOLTOTTFAJL]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_FELTOLTOTTFAJL]
|
|
ADD [C_FAJLNEVE] NVARCHAR (50) NULL,
|
|
[C_MEGJEGYZES] NVARCHAR (1000) NULL;
|
|
|
|
|
|
GO
|
|
PRINT N'Altering [dbo].[T_NEBULO]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_NEBULO]
|
|
ADD [C_EUGYBAIROGZITETT] CHAR (1) DEFAULT ('F') NOT NULL,
|
|
[C_EUGYMODOSITOTT] CHAR (1) DEFAULT ('F') NOT NULL,
|
|
[C_EUGYSZAM] NVARCHAR (50) NULL,
|
|
[C_HATAROZATDATUMA] DATETIME NULL,
|
|
[C_ISHATAROZATHOZVA] CHAR (1) DEFAULT ('F') NOT NULL;
|
|
|
|
|
|
GO
|
|
PRINT N'Altering [dbo].[T_ORSZAGTIPUS]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_ORSZAGTIPUS]
|
|
ADD [C_ISOKOD] NVARCHAR (3) DEFAULT ('ISO') NOT NULL;
|
|
|
|
|
|
GO
|
|
PRINT N'Altering [dbo].[T_TAVOLLETJELENTO]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_TAVOLLETJELENTO]
|
|
ADD [C_FENNTARTOFELHASZNALOID] INT NULL,
|
|
[C_STATUSZVALTOZASIDOPONTJA] DATETIME NOT NULL,
|
|
[C_ALKALMAZOTTID] INT NOT NULL;
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[T_TAVOLLETJELENTO].[I_T_4028778_4028776]...';
|
|
|
|
|
|
GO
|
|
CREATE NONCLUSTERED INDEX [I_T_4028778_4028776]
|
|
ON [dbo].[T_TAVOLLETJELENTO]([C_ALKALMAZOTTID] ASC);
|
|
|
|
|
|
GO
|
|
PRINT N'Altering [dbo].[T_TAVOLLETSTATUSZ]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_TAVOLLETSTATUSZ]
|
|
ADD [C_SAPKOD] NVARCHAR (50) NULL;
|
|
|
|
|
|
GO
|
|
PRINT N'Creating [dbo].[FK_4028778_4028776]...';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_TAVOLLETJELENTO] WITH NOCHECK
|
|
ADD CONSTRAINT [FK_4028778_4028776] FOREIGN KEY ([C_ALKALMAZOTTID]) REFERENCES [dbo].[T_ALKALMAZOTT] ([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_NEBULO_OSSZES]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[T_NEBULO_OSSZES]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[T_ORSZAGTIPUS_OSSZES]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[T_ORSZAGTIPUS_OSSZES]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[T_TAVOLLETJELENTO_OSSZES]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[T_TAVOLLETJELENTO_OSSZES]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[T_TAVOLLETSTATUSZ_OSSZES]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[T_TAVOLLETSTATUSZ_OSSZES]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumIntezmenyPedagogusok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumIntezmenyPedagogusok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumKozossegiSzolgalatOsztalyonkent]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumKozossegiSzolgalatOsztalyonkent]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[fnGetDokumentumTanuloiAlapadatok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[fnGetDokumentumTanuloiAlapadatok]';
|
|
|
|
|
|
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].[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].[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_GetPedagogusIKTAdatszolgaltatasForGrid]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetPedagogusIKTAdatszolgaltatasForGrid]';
|
|
|
|
|
|
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_IsAlkalmazottPedagogus]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_IsAlkalmazottPedagogus]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_IsKozossegiSzolgalatKezelo]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_IsKozossegiSzolgalatKezelo]';
|
|
|
|
|
|
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_ImportTantargyFelosztas]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_ImportTantargyFelosztas]';
|
|
|
|
|
|
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_GetAlkalmazottMunkaugyiAdataiExport]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetAlkalmazottMunkaugyiAdataiExport]';
|
|
|
|
|
|
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].[sp_GetErtesitoNyomtatvany]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetErtesitoNyomtatvany]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_HelyettesitesekKeresese]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_HelyettesitesekKeresese]';
|
|
|
|
|
|
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].[uspValidateTanuloListTanuloMenessegToErtekeles]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspValidateTanuloListTanuloMenessegToErtekeles]';
|
|
|
|
|
|
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].[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_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_GetErtesitesAltEsMulAdatok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetErtesitesAltEsMulAdatok]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetTorzslap]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTorzslap]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetUzenofuzetErtekelolap]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetUzenofuzetErtekelolap]';
|
|
|
|
|
|
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_GetHianyzoDuplikaltTanarokFeladatellatasiHelynelkul]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetHianyzoDuplikaltTanarokFeladatellatasiHelynelkul]';
|
|
|
|
|
|
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].[uspImportTanuloBesorolasOsztaly]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspImportTanuloBesorolasOsztaly]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetSzakmaiGyNaplo]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetSzakmaiGyNaplo]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetCsoportNaplo]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetCsoportNaplo]';
|
|
|
|
|
|
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_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_GetGondviselokElerhetosegei]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetGondviselokElerhetosegei]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetHaladasiNaploAdatok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetHaladasiNaploAdatok]';
|
|
|
|
|
|
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_GetTanulokLakcimmel]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetTanulokLakcimmel]';
|
|
|
|
|
|
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].[uspGetBukasraAlloTanulok]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[uspGetBukasraAlloTanulok]';
|
|
|
|
|
|
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].[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_GetOsztalyTanuloinakHaviMulasztasaiOsszesitoje]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetOsztalyTanuloinakHaviMulasztasaiOsszesitoje]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetNebuloListByIdList]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetNebuloListByIdList]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_CheckNebulo4TValidation]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_CheckNebulo4TValidation]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_CheckOktatasiAzonositoUtkozesValidation]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_CheckOktatasiAzonositoUtkozesValidation]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetErtesitendoNebuloList]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetErtesitendoNebuloList]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_UpdateErtesitesiDatum]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_UpdateErtesitesiDatum]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_NebuloImport]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_NebuloImport]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetNebuloErtesito]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetNebuloErtesito]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetNebuloErtesitoStatusz]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetNebuloErtesitoStatusz]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_GetNebuloList]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_GetNebuloList]';
|
|
|
|
|
|
GO
|
|
PRINT N'Refreshing [dbo].[sp_Global_CreateDictionaryItems]...';
|
|
|
|
|
|
GO
|
|
EXECUTE sp_refreshsqlmodule N'[dbo].[sp_Global_CreateDictionaryItems]';
|
|
|
|
|
|
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_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'Checking existing data against newly created constraints';
|
|
|
|
|
|
GO
|
|
ALTER TABLE [dbo].[T_TAVOLLETJELENTO] WITH CHECK CHECK CONSTRAINT [FK_4028778_4028776];
|
|
|
|
|
|
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_TAVOLLETJELENTO', 'T_TAVOLLETJELENTO_OSSZES'
|
|
,'T_FELHASZNALO', 'T_FELHASZNALO_OSSZES '
|
|
,'T_FELTOLTOTTFAJL', 'T_FELTOLTOTTFAJL_OSSZES '
|
|
,'T_NEBULO', 'T_NEBULO_OSSZES '
|
|
,'T_ORSZAGTIPUS', 'T_ORSZAGTIPUS_OSSZES '
|
|
,'T_TAVOLLETSTATUSZ', 'T_TAVOLLETSTATUSZ_OSSZES '
|
|
,'T_ALKALMAZOTT', 'T_ALKALMAZOTT_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 |