Mazání a úprava triggerů

Tvorba a optimalizace triggerů v SQL Serveru

Florin Angelescu

Instructor

Mazání triggerů tabulek a pohledů

DROP TRIGGER PreventNewDiscounts;

Tabulka

Tvorba a optimalizace triggerů v SQL Serveru

Mazání databázových triggerů

DROP TRIGGER PreventNewDiscounts;
DROP TRIGGER PreventViewsModifications
ON DATABASE;

Tabulka

Databáze

Tvorba a optimalizace triggerů v SQL Serveru

Mazání serverových triggerů

DROP TRIGGER PreventNewDiscounts;
DROP TRIGGER PreventViewsModifications
ON DATABASE;
DROP TRIGGER DisallowLinkedServers
ON ALL SERVER;

Tabulka

Databáze

Server

Tvorba a optimalizace triggerů v SQL Serveru

Zakázání triggerů

DISABLE TRIGGER PreventNewDiscounts
ON Discounts;
DISABLE TRIGGER PreventViewsModifications
ON DATABASE;
DISABLE TRIGGER DisallowLinkedServers
ON ALL SERVER;

Tabulka

Databáze

Server

Tvorba a optimalizace triggerů v SQL Serveru

Povolení triggerů

ENABLE TRIGGER PreventNewDiscounts
ON Discounts;
ENABLE TRIGGER PreventViewsModifications
ON DATABASE;
ENABLE TRIGGER DisallowLinkedServers
ON ALL SERVER;

Tabulka

Databáze

Server

Tvorba a optimalizace triggerů v SQL Serveru

Úprava triggerů

CREATE TRIGGER PreventDiscountsDelete
ON Discounts
INSTEAD OF DELETE
AS
    PRINT 'You are not allowed to data from the Discounts table.';
DROP TRIGGER PreventDiscountsDelete;
CREATE TRIGGER PreventDiscountsDelete
ON Discounts
INSTEAD OF DELETE
AS
    PRINT 'You are not allowed to remove data from the Discounts table.';
Tvorba a optimalizace triggerů v SQL Serveru

Úprava triggerů

CREATE TRIGGER PreventDiscountsDelete
ON Discounts
INSTEAD OF DELETE
AS
    PRINT 'You are not allowed to data from the Discounts table.';
ALTER TRIGGER PreventDiscountsDelete
ON Discounts
INSTEAD OF DELETE
AS
    PRINT 'You are not allowed to remove data from the Discounts table.';
Tvorba a optimalizace triggerů v SQL Serveru

Pojďme si procvičit!

Tvorba a optimalizace triggerů v SQL Serveru

Preparing Video For Download...