Viewing 15 posts - 1 through 15 (of 28 total)
Hi, try this to disable
ALTER TABLE samp_test DISABLE TRIGGER samp_test_update_trigger
and this to enable
ALTER TABLE samp_test ENABLE TRIGGER samp_test_update_trigger
PinAnt
July 26, 2006 at 8:35 am
Hi all,
try this
SELECT Customers.Cust_Name, accounts.acc_type,
CASE WHEN Accounts.Account_No IS NOT NULL THEN Accounts.Account_No ELSE 'NO ACCOUNT' END
FROM Customers
LEFT OUTER JOIN Accounts
ON Customers.Cust_Name = Accounts.Cust_Name
AND Customers.Location = Accounts.Location
AND ((Customers.Acc_Type = Accounts.Type...
November 5, 2002 at 4:17 am
hi,
you can use this syntax
CREATE TRIGGER InsteadTrigger on InsteadView
INSTEAD OF INSERT
AS
BEGIN
.
.
.
Antonio
September 30, 2002 at 10:21 am
HI,
the syntax is :
http://FTP.EXE -A -s:e:\a.txt http://ftp.nai.com
where a.txt is:
cd /virusdefs/4.x
prompt
lcd c:mget sdat*.exe sdat*.exe
quit
Bye
Antonio
August 2, 2002 at 7:34 am
HI,
correct syntax is:
INSERT INTO staff (staff.EmployeeName, staff.Adresse)
SELECT EmployeeName, Address FROM Table1
bye Antonio
July 24, 2002 at 8:19 am
hi Vijay
if you want some suggestions please contact me!
bye antonio
July 24, 2002 at 7:46 am
hi,
after sp_addlinkedserver, you must run sp_addlinkedsrvlogin
bye antonio
July 24, 2002 at 7:43 am
HI,
the basic operation to access to SQLServer 2000 with vb is to use ADO.
In your project reference Microsoft Activex Data Object 2.6 or upper.
In you project type something like this.
To...
July 24, 2002 at 6:59 am
July 22, 2002 at 9:47 am
hi,
I have worked on the statement and i have discoverd this:
Delete from tblItem where field1 in (Select did )
where field1 is a field in the table
this statement is the...
July 12, 2002 at 9:02 am
Viewing 15 posts - 1 through 15 (of 28 total)