Send database events at your mobiles by sending sms

I am sending database alerts at my mobile via send sms and email from oracle database.
I also generting sms alerts and receiving sms at my cell i.e for data import/export, hendling corporate network ips as well as subnet mask for application and db user login authentication notificatin. All these alerts i reveiving on my cell i.e +92-0300-6653641.
Any database administrator who is generating this type database triggers i.e how have developed own database firewall for hendling corporate databases (9,10g,11g).
Thanks
Naeem Sheeraz
Faisalabad,Pakistan
MCS + OCP (Developer Track Developer 2000,6,6i) 10g OCA & OCP
email : [email protected]
URL : www.saifisoft.net
__________________________________________________

Check this,
http://decibel.ni.com/content/docs/DOC-9233
http://decibel.ni.com/content/docs/DOC-7451
AshwiN,

Similar Messages

  • Second opinion : Database events

    I'm probably a bit late but I found Database events and that seems to me something I have to use... Together with SQLlite / applescript...
    But I want a second opinion. Is this is the best way to store my data for free?
    Because when I start using database events I will get big databases with many records and fields,...
    Of course if you have a better suggestion I would like to know it..
    I prefer free / open source solutions. My software budget is zero this year.
    Many thanks.

    What is your primary goal here - to store lots of data, or to AppleScript your data?
    The reason I ask is that Database Events is your simplest path to using a database within AppleScript, however it has a few caveats.
    First is that I don't know anyone that's using it at scale. I've used it myself for small data sets but I don't know anyone storing gigabytes (or terabytes) of data with it. It might be fine - I just don't hear of it happening.
    The second is that, IIRC, Apple have changed their underlying database in the past, so you may need to consider what to do if they repeat that (and whether they'll provide seamless migration tools).
    So if your primary goal is to store lots of data, then there are other, free, solutions out there including MySQL, PostgreSQL and more. Of course, the downside to these is that there is little or no AppleScript integration, so you're limited to interacting with then via shell commands. AFAIK all the other databases that support AppleScript (either directly or via ODBC) are commercial.

  • Can you send an event created on your iphone to a contact from your iphone?

    Can you send an event created on your iphone to a contact from your iphone? If so I can't figure it out. I have asked this question before and somebody told me you could if you were a mobileme or exchange user. Well I am a mobileme user and if it can be done, I can't figure it out.
    Any help appreciated.

    From the calendar app on my iphone? I know I can do it from iCal and from mobileme. When I look at the event on my iphone I can look at the invitees, but I do not see where I can add or delete an invitee. Maybe I am just missing it.

  • How do you make mobile numbers the default number used in your contacts for sending text?

    How do you make mobile numbers the default number used in your contacts for sending text?

    Go to your contacts, find the contact that you wish to text, hit 'edit', and move that contact's numbers around until the mobile number is at the top. Arduous I know, but it works. Now when you go to text that person, the mobile number should be the default.
    Best.

  • Send an event from Java Web Service to BPEL

    Hi,
    I have a requirement where from an Async BPEL service I have to call a Java Web Service. After the completion of its task Java Web Service will fire an event that has to be consumed by the BPEL to initiate further process. Can anybody help me with how to send an event from Java Web Service and at the same time consume it in BPEL?
    Thanks,
    Anuj

    See the following posts for your answer
    http://blogs.oracle.com/soabpm/entry/event_delivery_network_chapter
    http://blogs.oracle.com/soabpm/entry/using_the_event_api_to_publish
    http://guidoschmutz.wordpress.com/2010/01/12/using-the-event-api-to-publish-an-event-to-the-event-delivery-network-edn-the-spring-way/

  • HOW DO YOU SEND AN EVENT "OUT" TO A COMPONENT?

    I am writing an AIR app that has many components.  The main application has a "start" button to begin a new project, and when you exit a project, the application returns to the start page.  Even though you exit back to the start page, the major MXML components used in the application do not get destroyed because there is no way to destroy them so they just sit there idle in the background and not visible in the "start" state.  The problem is that when a user clicks the "start" button again to start a new project, the MXML components appear in the new project in the old state that they were in because there is no obvious way to reinitialize them.  If there was a way to destroy the components, then when they were recreated in a new project I could initialize them with a creationComplete handler.  But since you can't literally destroy an MXML component, I need a way for the components to be able to listen to the main program for a click event on the "start" button, and then each component initializes itself when it hears the event.  So instead of components passing an event up to the main application, I need the main application to send an event down to the components.  Is there a way to send an event from the main application out to the various components?  (or is there a way to destroy an MXML component so that you can recreate it later that I am unaware of?)

    Yes, that will do the job, though it's better to use a custom event and you don't need a property.
    I quickly made a tiny example in Flash using a static variable as a central dispatch hub..
    Create a class:
    package  {
        import flash.events.EventDispatcher;
        public class EventHub extends EventDispatcher {
            public static var dispatcher:EventHub = new EventHub();
            public function EventHub() {
                // constructor code
    // in the component add this
    EventHub.dispatcher.addEventListener("INIT_COMPONENT", _onInitComponent);
    // the handler for the event inside your component
    private function _onInitComponent(e:Event):void{
        trace("INIT_COMPONENT received");
    // wherever you need to trigger init, add this
    EventHub.dispatcher.dispatchEvent(new Event("INIT_COMPONENT"));
    Paul

  • How to capture signature on mobile and send it to the bapi

    Hi all,
    I developed an Mobile application(7.1) in which signature capture should be there.
    1)How to capture this signature and send it to the backend .
    2)How I have to define the function module for this requirement?
    Thanks and regards,
    Rajesh

    Hi Rajesh,
    Here are the steps:
    1. First, you have a signature capture tool. Most of the phones come with their own signature capture tools. For example, for Pocket PC - you can go to the MSDN site and then download the capture program.
    2. The captured signature should then be stored as an JGP/ PDF/ or any version.
    3. In your mobile application, you have to convert this file into binary format. This must be uploaded to the mobile middleware
    In the mobile middleware, you must ensure that attachments are enabled. You can refer to this [link |https://www.sdn.sap.com/irj/scn/wiki?ath=/display/mobile/createapplicationsusingBinaryMemoandTextMemoinNetweaverMobile+7.1] for actions that you must do in the middleware and in the back-end.

  • How to send an event to external system?

    Hi
    I am facing problem in sending the event to an external system.
    Initially I created 2 workflows with different itemtypes. One has send event and other has receive event. This works perfectly when I use the WF_OUT and WF_IN agents of the same system.
    Now, I signup two workflow server ( running in two PC, on Oracle 8.1.7 ). I have followed the following steps.
    a. creating database links.
    b. Signing up the system.
    c. changing the system status to enabled in Global Preference Page.
    In the event subcription in System1 is local, Out agent is Wf_OUT of System1 and the TO Agent is Wf_IN of System2. There is external subscription for the same event in System2 without Agents.
    When I run the workflow with send event, the event message goes to WF_OUT agent with the status Ready, but never propogates.
    What could be the reason? Can anyone help me?
    Thanks a lot.

    Hi
    Thanks for immediate respose. I tried the ping/acknowledgement example in the biginning itself. It doesn't work. I also tried by changing the agents ( to respective values suitable for my systems) of that example. Then also it failed. The error in that case also same. The message will not propogate from the out going agent.

  • How to send database table

    how to send database table one sever to another server in the form of  tms request.
    i want send a particular database table one server to another as a request.
    give solution plz
    Message was edited by:
            mahesh

    Hi Mahesh,
    Technically it is possible to transport entries of every table in SAP even if changes dont prompt for a transport request. Do the following. Create a customising/workbench request. It depends of the table whose entires you wish to transport. .If you wish you can just  use workbench transport for all tables.
    After you have created the transport click on the request and in menu bar choose Request/Task and then Display object list. Goto change mode.
    Click on Inset line icon in application tool bar. A new line for input will come up.
    In PGMID give the value R3TR
    In Obj give value TABU
    In Object Name give the name of the table.
    After that double click on table name entry. You will come to the screen: Transport organizer:Change Key List.
    Here again choose insert line. A new line with table  name and key as the column headers will come up.
    Double click on the empty input field for the key. In the next screen you will get options to fill in the key.
    You can insert key as per your choice. However one thing needs to be remembered. If you put * in any field SAP wont allow you fill in value in later fields as only a final asterisk can be used as a generic entry.
    Please try out this option. I use this option to transport RFC destinations as well profile parameters across systems.
    Please award points if the answer was of help to you.
    Regards.
    Ruchit.

  • Sending CRM survey templates to Mobile handheld using Mobile infrastructure

    Hi,
    I have a a requirement to send survey templates to handheld client using mobile infrastructure. Also the survey results have to be send from handheld client to CRM using the mobile infrastructure.
    Has anybody send CRM objects using mobile infratructure? Usually CRM middleware is used for sending and receiving data to mobile devices.
    But Mobile infrastucture is different from CRM middleware and use download modules to fill syncBO structures and then create XML files to send to handheld cleint. When it gets the XML results from client, it fills the syncBO from the xml and then call upload modules to send data to update backend (CRM or ERP ) objects.
    Please let me know if you have done similar development and if you faced any complexities to send CRM data using mobile infratructure.
    thanks
    Jay

    Hi
    I´m not technical consultant but I need to know whether is possible to sync data between CRM and  Symbol devices just using CRM Middleware or whether is necesary pass on MI platform to achieve that?
    it is a little confusing for me to understand if CRM middleware/CDB is also needed for a Mobile scenario where I have MI also,  or both are required.
    Could you clarify that for me, please?
    Thanks  for your help

  • Unable to send videos from Nokia N86 mobile

    Hi,
    While selecting a video and goto options as follows:
    Gallery --> Video Clips --> My Videos --> All Video Clips --> Select a video and select Options --> showing only the following options, but there is no 'Send' option.
    Show open apps.
    Play
    Delete
    Video Details
    Find
    Show via home network
    Memory Status
    Sort By --> Date, Name, Size
    Mark/Unmark --> Mark, Mark all
    Help
    Exit
    Please from where we have to enable to 'Send' option to send a video to another mobile device.

    Try sending it from file manager.
    Navigate to the folder where you store your videos, then options>send.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • Sending & receiving signals  from a mobile phone i/o

    Dear friends,
    I am working on a project to send and retrieve data (electrical signals) to an external hardware circuit using a mobile phone.(My project doesn't use a computer, instead I use a mobile phone that is capable of supporting JVM.)
    Can I use the USB(or any other output that can be used to send signals) port of the mobile? Is there an API to handle that?.(there is an API callled jsr-80 but I wasn't able to find that. I found only the specification)
    How can I access the port? How can I use the wireless toolkit to do simulation? Please tell me how to program the USB output to send signals?
    If u got any tutorials, white papers or any related web links please let me know.
    CAn I use Bluetooth instead of USB without using a computer?
    Thank You.
    Note: I am working under windows platform.

    umm i am trying to do the same thing... look into BREW
    http://www.devx.com/wireless/Article/11932
    but i unno i didn't get into that cause its expensive :S ... but take a look into it any ways :P
    you could all wyas use filters and detect like dial tones... or if you have a collor phone change le back ground color and detect it with infreared (the color) or enven black and whit do like a barcode with a barcode reader?
    oh if you have the mobile kit from your phone sniff the usb packets and try to pull the data

  • Ability to send syslog events to multiple syslog servers - SA540

    Please add the ability to send syslog events to multiple syslog servers in the SA500 Series routers.  I know the functionality is currently in the RV220W because we utilized it.  It would be great if you could configure the syslog servers by event type as well.  For example, being able to send the kernel events to syslog server A, and all other events to syslog server B.

    You can do the following:
    1) Create a remote log target for your syslog server at
    System Administration >
    Configuration >
    Log Configuration >
    Remote Log Targets
    2) Configure the log categories that should be enabled to eb sent to this log target.
    Go to
    System Administration >
    Configuration >
    Log Configuration >
    Logging Categories >
    GlobalSelect a specifc category and then look at "Remote Syslog Target" tab.
    For each category that you want sent to your syslog server select the remote log target in the "
    Selected Targets" transfer box
    Note that this configuration is hierarchical. So if make configuration for one log category it applies to all subtemding categories. For example if configure
    "AAA Audit" then the configuration will apply to the pass and failed attempts categories

  • I have three iPads and one iPod and one iPhone.  How can I message between them without sending the message to all of them.  You send the message to your email address but all of them are set up und one account.

    I have three iPads and one iPod and one iPhone.  How can I message between them without sending the message to all of them.  You send the message to your email address but all of them are set up under one account.

    You can have a different receiving email in the Messages app on each device : Settings > Messages > Receive At . I'm not sure that there is a different way to have the message only go to one device.

  • Cannot send email via AOL on iPad2 - "A copy has been placed in your Outbox. Sending the message content to the server failed."

    My CEO has an ipad2 and I set it up w/ AOL.  She cannot send any email via her AOL account from her iPad.  She gets a message that says "A copy has been placed in your Outbox. Sending the message content to the server failed."   We've tried it on wifi and on 3G (Verizon version).  I've removed the account and added it, I've tried setting it up as an IMAP account vs. using Apples standard AOL mail setting and nothing seems to work.  The SMTP settings are smtp.aol.com, port 587.  I've tried adding an alternate server/smtp, but I haven't been able to find anything that works.  Any advice or other people having this issue?  It works fine sending an email from her aol web mail.  And unfortunately, having her sign up for a gmail account is not an option.  Thanks

    Interesting.  Firstly I have been on AOL since the early 90s with no current intention to switch as my primary personal email account.
    I have two email accounts on my iphone - AOL and my email from my business website.  I deleted both and then recreated first the business account and then the AOL account.  Same error.  Then I wasn't sure what you suggested but I turned off the AOL SMTP server and selected the business email SMTP server by turning it on with the same result.  I still get the error "A Copy has been placed in your Outbox.  Sending the mssage content to the server failed."
    Perhaps this problem will get fixed by IOS 6.   AOL will not talk to me unless I pay and Apple says its not their problem.  So for the time being I use the AOL web interface in the iPhone's Safari to send emails from the phone.

Maybe you are looking for

  • Having trouble installing Photoshop & Illustrator on Mac OSX 10.7.4

    Hello Im having trouble installing Photoshop CS6 and Illustator CS6. I am geting the following errow while trying to install in Creative Cloud Download Manager: Exit Code: 34 -------------------------------------- Summary ----------------------------

  • Disable "Open PDF in Broswer"

    Hi, I have created a customized install of Reader 8.2.5 with the "Open PDF in Browser" disabled and greyed out. I would like to know which registry key makes this setting stick because about 50% of my network doesn't have the correct setting after de

  • IFrame Resizing

    I know that we can resize the IFrame based on the height of the Content. Now the problem I have is that I am using a URL iView and want the height of the IFrame to be auto adjusted based on the content shown in the IFrame. To achieve this I need to c

  • I have 2 problems that I need help with please?

    I had an iPhone 4 1 year ago and I ended up swapping it for an iPhone 4S.. I made a new apple ID. But  I can't remember if I synced my notes with iCloud on my old apple ID, so I signed in with my old apple ID which was connected with my iPhone 4 that

  • Contact Form in Adobe muse

    How do i get my contact form to work in Adobe Muse? what are the steps? be specific please. thank you