vote up 1 vote down star

OS is UNIX. I'd like to call a shell script to do external validation when the data in a table changes. Is it possible, and if so how.

Many thanks.


Updated: Ideally, I would like to call my external script once for any discrete operation: i.e.

  • update... > call script once
  • insert into... > call script once
  • bcp into > call script once
flag

What would the sell script do? Is this for all changes in all tables? – le dorfier Dec 12 '08 at 23:23
clarified, sorry! – Brabster Dec 12 '08 at 23:41

3 Answers

vote up 1 vote down

I think you could call xp_cmdshell from within a trigger.


Edit: As mentioned in the comments, a trigger fires only once per data modification statement. (See books online.) So if you have an update statement that affects 100 rows, the trigger will only fire once, not 100 times. That should take care of your first two points (update, insert into).

A trigger won't fire on bcp. But bcp should happen from the command line so not sure why you wouldn't just add your shell script after every bcp command?

There's some more information on calling xp_cmdshell from a trigger here.

Some further comments: You haven't really described your environment or what you're trying to accomplish. If you're in an OLTP environment you'll have to make sure that your shell script will work OK if multiple updates are happening to the table at once. If 3 users do updates at the same time will your script still work if three of them are running at once? If you're doing this as part of some kind of OLAP or batch system I'm not sure why you wouldn't add the shell script to the job flow.

link|flag
1  
Not sure you'd want to call it 100 times if you have a sql query that updates 100 rows. – le dorfier Dec 12 '08 at 23:22
1  
In sybase triggers fire once per statement, not per row. – Michael Sharek Dec 12 '08 at 23:42
vote up 0 vote down

Hi,

I have a similar situation, for any DML operation Insert/ update on a table in sybase it should trigger a curl command which invokes and triggers the DataPower.

Are you able to solve your issue with the xp_cmdshell command.

Please advice in this regard.

Thanks, Srini

link|flag
Hi, I changed DB vendor shortly after asking the question, so I dunno. Looks like it should work, watch out for performance I guess. – Brabster Feb 6 at 14:54
vote up 0 vote down

Thanks for your reply.

Once I implement it, I will post the actual result.

Regards, Srini

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.