Viewing 9 posts - 1 through 10 (of 10 total)
Hi
With the local hard disk, we also encounter the same List Volume error in Cluster validation.
Regards,
January 27, 2012 at 12:05 am
Hi Perry,
The validation test passed successfully during the initial setup. After the problem occurred weeks back, we run the validation test again and encounter the this error
List Cluster Volumes
An error...
January 26, 2012 at 9:01 pm
Hi,
Then how about to have BEFORE Trigger? Like the following,
CREATE TRIGGER Product_tBeforeAfter800
on dbo.Product BEFORE update
CREATE TRIGGER Product_tBeforeAfter800
on dbo.Product BEFORE delete
CREATE TRIGGER Product_tBeforeAfter800
on dbo.Product BEFORE insert
Thanks
Ken
August 19, 2008 at 6:58 pm
gohsiauken (8/18/2008)
Carl Federl (8/16/2008)
The SQL Standard allows multiple triggers on a table for the same action
and allows specification of the order with the SEQUENCE keyword but
SQL Server allows...
August 19, 2008 at 3:59 am
Carl Federl (8/16/2008)
The SQL Standard allows multiple triggers on a table for the same action
and allows specification of the order with the SEQUENCE keyword but
SQL Server allows multiple...
August 18, 2008 at 2:29 am
GilaMonster (8/16/2008)
What would probably be best is to make the entire thing handle an number of rows (set-based processing instead of row by row) and then use a...
August 18, 2008 at 2:16 am
GilaMonster (8/15/2008)
SET @ProductID=(select ProductID from inserted)
There could be any number of...
August 16, 2008 at 1:36 am
Hi, this is the edited version after your advice.
CREATE TRIGGER NewSaleItem
ON SALEITEM
AFTER INSERT
AS
BEGIN
SET NOCOUNT ON;
Declare @UpdatedQty int,@Subject as varchar(200), @Body varchar(8000), @To varchar(50),
@From varchar(50),@ProductID int, @Quantity int
SET @UpdatedQty=NULL
SET @Subject=NULL
SET...
August 15, 2008 at 9:34 am
Hi All,
I am sorry that mis-post the earlier question. Just get it updated.
If this is not the correct way to write a trigger, can anyone tell me hwow to create...
August 15, 2008 at 8:50 am
Viewing 9 posts - 1 through 10 (of 10 total)