Send SMS using Oracle database automatically

Hi all:

I want to send SMS from Oracle 9i automatically database. What reg software. can I use?

Hello

Here's the Oracle Forms forum.
You would have more chance of getting the answers by posting in the forum database ; D

François

Tags: Oracle Development

Similar Questions

  • Sending sms using labview

    Hello!!

    It comes to my school project. I need to implement the design to send sms using labview. And I use iTegno 3000 modem and I have no idea where to start. Can someone has a basic idea for me? All the specific commands to use for the modem I use?

    Thank you very much for your help

    Good day! looking forward to all your kind reply...

    Your sequence of structures aren't absolutely necessary and are just getting in the way so delete.

    You do not have a phone number - the yyyyyy is not all correct and you do not send a CTRL-z character. You send the text "ctrl + z". Set the string to display hexadecimal constant and enter 1.

  • Using Oracle database for thesis software

    Hello, I want to use Oracle Database Enterprise Edition and Oracle Data Mining for my master's thesis, and maybe we can publish a book of science in the end. I already downloaded the database and work on it, but I need to know if it is OK to use the software free of charge during the preparation of my thesis. Is that what I should pay or should I inform Oracle about this? I don't know anything about using Oracle products for research projects. Any information you provide will be appreciated. Thanks, Hatice

    You must purchase a license for Oracle Personal Edition, which is the set of US $92 for a year. It includes the Advanced Analytics option, which is where your data mining.

  • want to send sms using java

    I'm developing a stand-alone Java application that contains sms sending to certain numbers.

    I want to send sms using java and my phone connected to my pc with a usb cable (and not via Bluetooth).

    I use Linux operating system (Arch linux).

    I tried a few libraries that uses the sms online portals, but for some reason, I don't want to pay these sites. (just to make my card SIM cause its economic want).

    Help appreciated

    880667 wrote:
    I'm developing a stand-alone Java application that contains sms sending to certain numbers.

    I want to send sms using java and my phone connected to my pc with a usb cable (and not via Bluetooth).

    I use Linux operating system (Arch linux).

    I tried a few libraries that uses the sms online portals, but for some reason, I don't want to pay these sites. (just to make my card SIM cause its economic want).

    Help appreciatede

    The first thing you need to check: are you able to access other services my connection your phone by USB to the computer (line GPRS, calling). Because it requires the call or SMS access to the port. And you said that it is economic by sending an SMS using mobile, that depends. But most of the time, it is best to use the SMS service provider getway. They provide details http or FTP, there just put or message in the form accepitng, things happen by providing it service.

  • Use Oracle database with LabVIEW

    I am new to Oracle database usage and I worked on the MS Access database. I want to use the Oracle database in one of our applications to store data and retrieve data using SQL instead of MS Access instructions. Please give some suggestions which less than the version that I can use? y at - it a free version that I can get? What I need deilver with software.

    Yes, there is a free version called Oracle XE which works very well. In fact, it is intended (which Oracle referred to as) OEM applications. It is free to use, and there is assistance available forums which are also free. The free version has all the features of the business, with a couple of limit: first of all, it will only access a carrot in your CPU. Second, the maximum data size is 4 GB.

    In regards the connection to it, check out this discussion.

    MIke...

  • Problems sending SMS using SMSTransport

    I am trying to send an SMS using SMSTransport, but I get the following result when my application tries to send a message:

    TMTP::setupFdListener
    TMTP::handleConnected - Connected to ChatService
    New Session Request
    Open Success:
    Session Details "https://discoveryservice.blackberry.com/discoveryPoxmlServlet/" "1.0" "127.0.0.1" 8888
    creation of local SMS-MMS account succeeded
    Created instance of PIMCoreStatusManager
    PIMCoreStatusManager Constructor
    Calling AccountServicePrivate::defaultAccount for service type= "messages"
    Setting Curl Global Init 0
    GET 0x1
    URL Buffer: http://127.0.0.1:8888/accounts/default/messages 
    
    Curl Easy perform
    Curl Easy GetInfo response code
    Curl easy getInfo content_length_download
    Curl Error Code 0
    Response Code 200
    Get Contacts: (QVariant(int, 4) ) 
    
    PIMCoreAccessPool::getPca 0 Thread Id 0x1
    PIMCoreAccessPool::getPca a new PimAccess 0
    getContactDtails called 4
    GET 0x1
    URL Buffer: http://127.0.0.1:8888/contact/4/4 
    
    Curl Easy perform
    Curl Easy GetInfo response code
    Curl easy getInfo content_length_download
    Curl Error Code 0
    Response Code 200
    TMTP::send origPort 0 destPort 0
    TMTP::send attachments 0
    TMTP::send invalid attachment
    

    Here is the code I use to send the message:

    void AlertUtilities::sendSMSMessage(QString subject, QString body)
    {
        SmsTransport smsTransport;
        AccountService accountService;
        ContactService contactService;
        Account account = accountService.defaultAccount(Service::Messages);
        MessageBuilder* messageBuilder = MessageBuilder::create(account.id());
    
        QList contactIds = settings->getSelectedContacts();
    
        for (int i = 0; i < contactIds.length(); i++)
        {
            Contact contact = contactService.contactDetails(
                    contactIds.at(i).toInt());
    
            if (contact.phoneNumbers().length() > 0)
            {
                MessageContact messageContact = MessageContact(i + 1,
                        MessageContact::To, contact.displayName(),
                        contact.phoneNumbers().at(0).value());
                messageBuilder->addRecipient(messageContact);
            }
        }
    
        Message newMessage = messageBuilder->body(MessageBody::PlainText,
                QByteArray("This is a test"));
    
            smsTransport.send(0, newMessage);
    }
    

    Can someone help me understand what I'm doing wrong here?  There seems to be no documentation or examples on how to do it properly.

    Looks like I've got a code snippet rather autonomous and complete handy for this one as well.  (I think you can find others scattered around these forums as well.)  Here it is:

    void sendSms(const QString &messageText, const QStringList &phoneNumbers) {
        bb::pim::account::AccountService accountService;
        QList accountList =
            accountService.accounts(bb::pim::account::Service::Messages, "sms-mms");
    
        bb::pim::account::AccountKey smsAccountId = 0;
        if(!accountList.isEmpty()) {
            smsAccountId = accountList.first().id();
            qDebug() << "SMS-MMS account ID:" << smsAccountId;
        }
        else {
            qWarning() << "Could not find SMS account";
            return;
        }
    
        bb::pim::message::MessageService messageService;
    
        QList participants;
        foreach(const QString &phoneNumber, phoneNumbers) {
            bb::pim::message::MessageContact recipient = bb::pim::message::MessageContact(
                -1, bb::pim::message::MessageContact::To,
                phoneNumber, phoneNumber);
            participants.append(recipient);
        }
    
        bb::pim::message::ConversationBuilder *conversationBuilder =
            bb::pim::message::ConversationBuilder::create();
        conversationBuilder->accountId(smsAccountId);
        conversationBuilder->participants(participants);
    
        bb::pim::message::Conversation conversation = *conversationBuilder;
        bb::pim::message::ConversationKey conversationId = messageService.save(smsAccountId, conversation);
    
        bb::pim::message::MessageBuilder *builder =
            bb::pim::message::MessageBuilder::create(smsAccountId);
        builder->conversationId(conversationId);
    
        builder->addAttachment(bb::pim::message::Attachment("text/plain", "", messageText.toUtf8()));
    
        foreach(const bb::pim::message::MessageContact recipient, participants) {
            builder->addRecipient(recipient);
        }
    
        bb::pim::message::Message message = *builder;
    
        messageService.send(smsAccountId, message);
    
        delete builder;
        delete conversationBuilder;
    
  • can I use "Oracle Database 12 c: performance management and Tuning" training for the certification "Oracle Database 11g: Performance Tuning 1Z0-054 '"»

    I took "Oracle Database 12 c: new performance management and Tuning" the oracle University training. Now I would like to get certified on "Oracle Database 11g: Performance Tuning 1Z0-054 ' exam. Is this possible?

    I guess you ask if you can use the course 12 c as long as the condition of course for the review of 11g.  Over 12 c is not listed as one of the options for the 11 g certification and course requirements are normally specific version - at least with DBA certifications.  If you are already an Oracle OCP DBA, of course, there is no requirement of course for the review of performance tuning.  From what I know the training requirements for other certifications, I do not that you will be able to use it. However, Brandye will provide a definitive answer to whether the course 12 c would be acceptable for 11g certification.

    That said, I'm with John - 12 c review is about a community of 85 to 90% in the review of the 11g and is currently about 20% of the price while it is in beta.  What is the point of trying to cross the releases?

  • Installation 11.1.2.1 using oracle database in windows server 2003 64-bit

    Hi gurus,

    I am about to install hyperion version 11.1.2.1 with oracle on a windows 2003 64-bit database.

    Do I need IIS component for hyperion to install?

    Thanks in advance

    Hello
    IIS is required only if you install epma, fdm, and/or hfm to the server.

    See you soon,.
    Alp

  • sending sms using java

    Hi all! I do a web application project in j2ee because I need to put the sms Setup by using the java program and I have no idea about it so I kindly ask you help me on this...
    Thank you
    Vinoth...

    a friend this is not the forum for this :)... newways you need a way to portal sms for texting... do you have material hv supported

  • Oracle Database Express Edition used in a stand-alone database

    I have developed databases for years in access. I had a lot of people want me to databases for them. I don't want to make databases in access and then have to worry about sending a database to a different State and then find out that the user has a different version of access installed and it does not work properly.

    Can I use Oracle database Express edition to create a database with a front end that I can send to others and they can install on their computer and run it? Or do need to install the full Oracle Express? In other words, is there like a version of the Runtime?

    user13756579 wrote:
    I saw that you had to install twice last night, messed up my password. The only thing that that worries me is the database always current running on the user's computer, when well even that they could not use the database for months at a time. These databases are of small databases to keep the data of the members of the group. That is to say. name, address, phone number, personal information and perhaps a scanned document or two.

    I have looked at other database programs, but won't put a lot of money if I could develop only 3-5 small databases annually.

    You can develop your application in such a manner, that it will start service Oracle XE and stop it at the exit. Set the service to start manually. That's all.

  • Using Oracle with Microsoft Active Directory database

    Hello
    Because of too many nodes, we have in our company communicate each other (using the old files tnsnames.ora), we are now in the time to find a central location to store our net service names.
    I know that we can use for this OID to store the names of Service Net, but my question is it possible to use Microsoft AD, because our infrastructure using Microsoft AD as a central point.
    I have read the documentation oracle Oracle® Database Platform Guide (Chapter 12 Using Oracle Database with Microsoft Active Directory), but the problem is what happens if my database is not on the Windows operating system (such as Unix/Linux, we have number of it).
    I also read the document Oracle® Database Net Services Administrator's Guide (Chapter 3 Configuration Management Concepts) where you will find statement on the end of the chapter:
    Oracle supports Microsoft Active Directory only on Windows operating systems. Therefore, the client computers and the database server must also run on the Windows operating systems to access or create entries in Microsoft Active Directory.

    From this text, it looks like that my only option in this different environment with multiple operating systems is the OID (I wish it isn't true).

    Thank you

    Dragan,

    Sorry for the late reply. Since once it has clearly mentioned in the white paper that IO is a must; If you want to use MS AD, because 'oracle white paper' means 'documentation' refined and very authenticated.

    Enter the information useful/correct and close the debate.

    Concerning
    Girish Sharma

  • Sending SMS: is it possible to add an entry from sent SMS/trash

    Hi all

    I am able to send SMS using MessageConnection/DatagramConnection, but is it possible to add them to the sent SMS/trash on device?

    According to the api folder of my knowledge only with e-mail Messages.

    Thanks in advance.

    There is no API to access the sms folders

  • NoSuchMethodError setStringAtName in Oracle Database 11g Release 2

    Hi, I'm using Oracle Database 11 g Release 2 on Windows 7 Ultimate 32 bit.

    I use Oracle SQL Developer 4.1.0.

    In SQL Developer, the connection is established and is successfully tested, but when I click on connect, I get the error:

    java.lang.NoSuchMethodError: oracle.jdbc.OracleCallableStatement.setStringAtName (Ljava/lang/String; Ljava/lang/String ;) V


    The complete exception message:


    java.lang.NoSuchMethodError: oracle.jdbc.OracleCallableStatement.setStringAtName (Ljava/lang/String; Ljava/lang/String ;) V to oracle.dbtools.db.OracleUtil.checkAccess(OracleUtil.java:400) to oracle.dbtools.db.DBUtil.hasAccess(DBUtil.java:1887) to oracle.dbtools.raptor.query.QueryUtils.checkNonOracleAccess(QueryUtils.java:589) to oracle.dbtools.raptor.query.QueryUtils.getQuery(QueryUtils.java:399) to oracle.dbtools.raptor.query.QueryUtils.getQuery(QueryUtils.java:250) to oracle.dbtools.raptor.query.ObjectQueries.getQuery(ObjectQueries.java:43) to oracle.dbtools.raptor.navigator.db.xml.XmlObjectFactory.createFolderInstance(XmlObjectFactory.java:60) to oracle.dbtools.raptor.navigator.db.xml.XmlTypeOwnerInstance.listTypeFolders(XmlTypeOwnerInstance.java:93) to oracle.dbtools.raptor.navigator.db.impl.TypeContainerTreeNode.loadTypeFolders(TypeContainerTreeNode.java:111) to oracle.dbtools.raptor.navigator.db.impl.DatabaseTreeNode$ LoadTask.doWork (DatabaseTreeNode.java:183) to oracle.dbtools.raptor.navigator.db.impl.DatabaseTreeNode$ (DatabaseTreeNode.java:112) LoadTask.doWork to oracle.dbtools.raptor.backgroundTask.RaptorTask.call(RaptorTask.java:193) to java.util.concurrent.FutureTask.run(FutureTask.java:266) to oracle.dbtools.raptor.backgroundTask.RaptorTaskManager$ (RaptorTaskManager.java:621) RaptorFutureTask.run to java.util.concurrent.Executors$ (Executors.java:511) RunnableAdapter.call to java.util.concurrent.FutureTask.run(FutureTask.java:266) to java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:617) at java.lang.Thread.run(Thread.java:745)


    Yesterday I could connect fine, but today I got this error.

    How can I solve this? Thank you...

    Developer SQL resides on the same system as Oracle DB.

    What has changed is that I placed the files ojdbc6.jar and ojdbc14.jar is in F:\Program Files\Java\jdk1.8.0_45\jre\lib\ext and F:\Program Files\Java\jre1.8.0_45\lib\ext because I work with a Web site of jsp that access the oracle database.

    The problem is that ojdbc14.jar is is for Oracle Database 10g Release 2 and I work with is 11g, so I left the ojdbc6.jar in both paths and now Developer SQL works, thank you very much!

  • Want to make a form of seizure of ADF using Oracle DB

    Dear friends,

    I am a developer of forms and developer of the APEX. Now, I want to learn Jdeveloper/ADF. I am completely unaware of the ADF. but eager to learn it.

    In this regard, I installed Jdeveloper 12 c. but won't start. if some1 help me I would be grateful.

    I want to create a data entry form using oracle database PL/SQL where I can use it. How to do?

    Help, please.

    Kind regards

    First you must create the entity object and view your DB Table required object.

    Add this point of view in AppModule. It will be published under the control of data.

    Drag and drop this point of view on your page. then select the shape-> shape of the ADF.

    Now to insert the new value of this view page

    go to the control of data, in this view, select operations "Create insert" and drop it on the page as a button.

    She.

  • two node Oracle RAC with two Oracle databases completely different on each node?

    We currently have two different applications that use Oracle databases.  Current configuration is two different oracle homes dbhome_1, dbhome2 with separate mounting LINUX points containing the Oracle homes and *.dbf files on a single host server.

    Previously, the idea was to set up a second server identical host configured as a 'data guard' for both of these databases.  Now, management wants to implement a cluster of CARS of two nodes, with each node running two databases.  With the Standard edition.

    I only did CARS of high availability and scalability for a single database.  Is it possible to run two completely different databases Oracle on a two-node RAC cluster?  I am inclined to think that they it has divided into

    two clusters RAC to two nodes on four small servers host.  Any suggestions or comments would be appreciated?

    Is it possible to run two completely different databases Oracle on a two-node RAC cluster?

    The short answer is Yes... it is possible.  It will work without any problem, as long as you have the resources available to an additional database.

    I am inclined to think that they it has divided into two clusters RAC to two nodes on four small servers host.

    There is another option.  In the past I have two databases on a RAC cluster that has been implemented for reasons of cost of license / (I don't think that this applies to itself, but you will need to check).

    However having seen on separate hosts that you have only potentially interruptions of service on a database if you decide to do something like upgrading from one of the databases and thus upgrade the GI as well.  This would mean interruptions in service for all your databases using the GI.

Maybe you are looking for

  • Want to m6 1105: Upload rate?

    Is there a way to increase download speeds?  I know that my internet is horrible, but I really need to make my faster download rate.

  • ENVY 4520: Computer does not see section scanner WANT

    Last weekend, I bought a 4520 want TO replace a malfunctioning Lexmark all in one. I quickly learned that the software for this printer avaulable was not available for Mac OS X 10.7.5 (Lion). However, I followed the instructions on the Apple and this

  • Family and dot net framework 3.5 sp1 update Setup error

    Hi all my system is windows vista 32 bit sp1.whenever I use windows update to installIMP updates dot net framework 3.5 sp1 and update family gives x error 0643.After crossing the suggestion given for this error to microsoft, I tried tomanually instal

  • Inspiron 17R SE Subwoofer

    Hello I have an Inspiron 17R SE. I read that a subwoofer is available? How do you know and how to test? Thank you.

  • Windows 7 Netbook screen resolution/problems to install Uniblue Powersuite

    I was given a netbook Dell running Windows 7 Starter. My old computer is a full laptop, so I had no problem to launch the software Uniblue Powersuite. Their website States the following as the minimum system requirements: Processor Intel® Pentium® 3