Viewing 8 posts - 1 through 8 (of 8 total)
I don't mind a business like Amazon keeping track of me and making recommendations to better server me. I don't want them to share my data with anyone and...
November 10, 2011 at 8:05 am
What does not work? What is the error? Is it that you cannot start a distributed transaction? (I am assuming based on the name of the target...
January 19, 2006 at 6:44 am
I had similar issues with triggers firing recursively. I added the following line at the begining of the trigger. It prevents the recursive behavior.
IF (SELECT trigger_nestlevel()) > 1
...
December 2, 2005 at 7:19 am
Start with this
Private Sub txtData_KeyPress(KeyAscii As Integer)
If Len(Me.txtData.Text) < 20 Or KeyAscii = 8 Then
'do nothing
Else
KeyAscii = 0
End If
End Sub
October 14, 2005 at 7:22 am
I am considering canceling my subscription to SQL Central’s email newsletter as well as the SQL Server Standard Magazine. Why? I am tired of reading articles written by...
October 10, 2005 at 8:45 am
Here is yet another way. I got this technique from another post years ago on this website. It utilizes a dynamic where statement.
if @Active = -1
Set @Include = 'B'
else...
July 8, 2004 at 7:06 am
You could set up a log table and have the proc insert a record everytime it is run. Then you could see when and if necessary who ran the...
August 12, 2003 at 7:44 am
Viewing 8 posts - 1 through 8 (of 8 total)