Hi There,
I have a web service (its very simple). In the same solution I have a C# (class) and VB (form). I am using the VB form to check the c# class.
Now. I have a web service that expose a c# method. following is the web service code.
DBHandle.HandleDB PeerInfo;
private int IsPeerValid...
Hi Again,
I need to drop a table and create a new one on a trigger.
CREATE TRIGGER TBL_DEL ON dbo.PeerFileListCollection
FOR DELETE
AS
DECLARE @RecordRemoved nvarchar(10)
Declare @TableName nvarchar(10)
declare @SQL nvarchar(100)
Select @RecordRemoved = (Select PeerID From deleted)
set @SQL =...
Hi there.
I have the following simple procedure. I dont get a value for @Diff. Any Ideas?
CREATE PROCEDURE RecordOptimise AS
declare @RecordDate datetime
declare @TimeNow datetime
declare @Diff int
Set @TimeNow = GETDATE()
select @Diff = DATEDIFF(ss, @RecordDate, @TimeNow)
select @RecordDate...
Hi All,
I need to time out a record in a DB. Can I do this via a trigger? Is there anyway to trigger a method every minute or for a give period?
Thanks in advance..
Mal.,
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.