Forum: ASP.NET Feb 12th, 2008 |
| Replies: 5 Views: 18,367 |
Forum: MS SQL Feb 11th, 2008 |
| Replies: 1 Views: 1,460 This is the answer
CREATE TRIGGER VEHICLE_TABLE_IUD
ON VEHICLE_TABLE
AFTER INSERT,UPDATE,DELETE
AS
BEGIN
DECLARE @Vehicle varchar(50)
IF EXISTS (SELECT * FROM INSERTED) |
Forum: ASP.NET Feb 10th, 2008 |
| Replies: 2 Views: 798 I have question about Temporary Web Page.
When I click on link in my web application and redirect to ( for example)
mywebsite.com/12.aspx.
When event OnLoad() fire,I read value 12, which is... |
Forum: MS SQL Feb 9th, 2008 |
| Replies: 1 Views: 1,460 I have question about TRIGGERS.
I have (4 example) VEHICLE_TABLE with VEHICLE_TYPE column and CAR_TABLE and TRUCK_TABLE also.
I need TRIGGER for INSERT/UPDATE/DELETE who well read value of... |