Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
mziqbal
Starting Member
3 Posts |
Posted - 2004-05-17 : 13:00:40
|
| Hi,Can any one help me. I am using this trigger but it gives the error "Incorrect syntax near INSTEAD"CREATE TRIGGER INSTEAD_OF_UPDATE_TITLESON titlesINSTEAD OF INSERTASBEGIN PRINT 'Object Name: 'END |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2004-05-17 : 13:05:33
|
| I don't get an error when I run your code on my machine. Are you running more code than what you posted?Tara |
 |
|
|
JimL
SQL Slinging Yak Ranger
1537 Posts |
Posted - 2004-05-17 : 13:07:40
|
| What are you trying to acomplish with this?JimUsers <> Logic |
 |
|
|
JohnDeere
Posting Yak Master
191 Posts |
Posted - 2004-05-17 : 13:12:23
|
| If you have other code in the batch make sure to separate the create trigger statement with with go statementsgocreate trigger blah blah blahblah blahend of triggergoLance Harra |
 |
|
|
|
|
|