CREATE procedure [dbo].[Svuota_Trimestrali] AS BEGIN --SVUOTAMENTO TABELLE DELLO SCHEMA Trimestrale -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; --DB CONSULENZAUNICA TRUNCATE TABLE ConsulenzaUnica.Trimestrale.Area TRUNCATE TABLE ConsulenzaUnica.Trimestrale.ClientePB TRUNCATE TABLE ConsulenzaUnica.Trimestrale.DettaglioPosizionePortafoglio TRUNCATE TABLE ConsulenzaUnica.Trimestrale.DettProdottiTerzi TRUNCATE TABLE ConsulenzaUnica.Trimestrale.DIntermediario TRUNCATE TABLE ConsulenzaUnica.Trimestrale.DTipoPatrimonioTerzi TRUNCATE TABLE ConsulenzaUnica.Trimestrale.PatrimonioTerzi TRUNCATE TABLE ConsulenzaUnica.Trimestrale.DProfilo TRUNCATE TABLE ConsulenzaUnica.Trimestrale.DProfiloEC TRUNCATE TABLE ConsulenzaUnica.Trimestrale.DRischioCredito TRUNCATE TABLE ConsulenzaUnica.Trimestrale.MappaturaPT TRUNCATE TABLE ConsulenzaUnica.Trimestrale.Pianificazione TRUNCATE TABLE ConsulenzaUnica.Trimestrale.posizioniPortafoglio TRUNCATE TABLE ConsulenzaUnica.Trimestrale.progetto TRUNCATE TABLE ConsulenzaUnica.Trimestrale.vinfocliente -- DB CONSULENZAUNICAFL TRUNCATE TABLE ConsulenzaUnicaFL.Trimestrale.AMPRO_ChiaviProdotto -- DB KEYCLIENT TRUNCATE TABLE KEYCLIENT.Trimestrale.TB_KC_CLIENTI TRUNCATE TABLE KEYCLIENT.Trimestrale.TB_KC_CREDIMPO TRUNCATE TABLE KEYCLIENT.Trimestrale.TB_KC_METAPORTAFOGLIO TRUNCATE TABLE KEYCLIENT.Trimestrale.TB_KEYCLIENT_METACONTRATTO TRUNCATE TABLE KEYCLIENT.Trimestrale.TB_KEYCLIENT_OBIETTIVO TRUNCATE TABLE KEYCLIENT.Trimestrale.TB_KEYCLIENT_STRATEGIA TRUNCATE TABLE KEYCLIENT.Trimestrale.V_ANAGPCT --DB CATALOGO PRODOTTI TRUNCATE TABLE CatalogoProdotti.Trimestrale.AnAlberatura TRUNCATE TABLE CatalogoProdotti.Trimestrale.AssetClass TRUNCATE TABLE CatalogoProdotti.Trimestrale.CatalogoProdotti TRUNCATE TABLE CatalogoProdotti.Trimestrale.Mappatura TRUNCATE TABLE CatalogoProdotti.Trimestrale.v_Mappatura TRUNCATE TABLE CatalogoProdotti.Trimestrale.StCaricMappatura --DB SEIALERTFL TRUNCATE TABLE SEIALERTFL.Trimestrale.FLSimpb_Cliente END