|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Wednesday, November 30, 2011 9:29 AM
Points: 14,
Visits: 21
|
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Tuesday, November 06, 2007 11:54 PM
Points: 1,
Visits: 7
|
|
| I found your article quite interesting int approach to using SQL svr as a broadcast point. Thanx.
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Sunday, November 25, 2007 9:28 AM
Points: 1,
Visits: 1
|
|
| Hi. I'm from VietNam. I've read your article and very excited about it. But when I do like you, I can't send a message to a mobiphone or e-mail. I think your SMS provider's rules not suitable to my country but I can't solve that problem. Can you help me? Phone number in my country have format like 840958149760. 84 is the code of my country. 095 is the code of the provider. 8149760 is the phone number. :). Can you contact with me throught my e-mail (kimxuyen.it@gmail.com) or yahooID: kimxuyenit? Thanks!
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Monday, July 21, 2008 5:23 AM
Points: 118,
Visits: 3
|
|
Need to be pretty careful with this trigger.
Consider if the call to exec master.xp_sendMail .... fails.
This is a trigger - an error will cause an automatic rollback of the transaction in which the trigger was fired. Not only will the email/sms not be send but also the action which caused it to be raised - i.e. the insert into the table will not happen. If this insert was called from e.g. a stored proc then whatever was in there would also roll back.
I had a very similar problem many moons ago with a USERS table for a web site that had a trigger to send a rgistration email - lo and behold if exchange falls over or we can't connect to it then not only do they not receive their registration email but they also don't get registered on the site - i.e. no row appears in the USERS table. Very dangerous.
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Monday, July 21, 2008 5:23 AM
Points: 118,
Visits: 3
|
|
Oh and btw SQL 2005's database mail is now asynchronous therefore we no longer have the same issue in 2005.
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Friday, September 12, 2008 12:05 AM
Points: 1,
Visits: 0
|
|
.... i m an pl/sql developer working for a coperative banks
now the bank pepoles want to send sms to their customer when they do some transaction whether it is credited or debited .. bank is using a oracle database to store the information about all transaction and using window OS after every transaction it insert a row in a dotr010 (transaction table) sir i had developed a standalone software to send sms usning AT commands in VB 6.0
but sir it is not automatically trigger a sms to customer this utility not send sms untill it is not run by bank pepoles i need your help my banking software is completely window based i need ur help to get know 1. how to communicate GSM modem through oracle (procedure,pl/sql) 2. how the sms is triggered when one row is inserted in a transaction tabel 3. and how to maintain log file this all only by using oracle no interface thanks for kind time i hope you pepole reply soon i need it regard atul
|
|
|
|
|
SSChampion
        
Group: General Forum Members
Last Login: Friday, May 17, 2013 12:22 PM
Points: 10,571,
Visits: 11,871
|
|
|
|
|