alexsome
alexsome

Reputation: 463

Oracle 11g RSS feed

I know Oracle 11g can send out e-mails using utl_smtp, which is pretty neat. I am trying to find some documentation about whether Oracle 11g could also generate an RSS with table updates of some kind. More generally, if I wanted to be notified of table updates, what options do I have besides utl_smtp?

I am looking for a solution that would not require installation of additional programs. In other words, the solution should involve a mail client (preferable) or browser to receive / browse notifications, the Oracle 11g server, and the application proper.

Upvotes: 1

Views: 578

Answers (1)

Kai Sternad
Kai Sternad

Reputation: 22830

I don't know of any built in library for building RSS feeds. There is however the Alexandria PL/SQL utility library which can - amongst other things - generate RSS feeds. Perhaps it suits your needs, have a look at the RSS_UTIL_PKG function as a starting point.

Upvotes: 1

Related Questions