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 |
|
nitsmooth
Yak Posting Veteran
68 Posts |
Posted - 2009-10-30 : 12:46:41
|
| create trigger mail on calllogfor update if update(Priority) // errorbegin print 'here'endpriority is the column in calllogwhy this wont wrk?? |
|
|
jimf
Master Smack Fu Yak Hacker
2875 Posts |
Posted - 2009-10-30 : 13:00:26
|
Trycreate trigger mail on calllogfor AFTER update if update(Priority)begin print 'here'endJimEveryday I learn something that somebody else already knew |
 |
|
|
nitsmooth
Yak Posting Veteran
68 Posts |
Posted - 2009-10-30 : 13:06:22
|
| noop ! |
 |
|
|
jimf
Master Smack Fu Yak Hacker
2875 Posts |
Posted - 2009-10-30 : 13:45:36
|
| This really looks like a syntax errorcreate trigger mail on calllogAfter update ASif update(Priority) // errorbegin print 'here'endJimEveryday I learn something that somebody else already knew |
 |
|
|
russell
Pyro-ma-ni-yak
5072 Posts |
Posted - 2009-10-30 : 14:41:49
|
| [code]create trigger mail on calllogfor update ASif update(Priority) -- errorbegin print 'here'end[/code] |
 |
|
|
|
|
|