To update my remote oracle server through e mail

hai,
i want to update my remote oracle server through e mail which should run automatically for every 3 hours(for example)
both(remote and local) are oracle 8.1.7 running in windows 2000 server
Please let me know how to go about....
help me in this context...
urs
srini

Sri
you can do with some SMTP programming like that one available in VisuaBasic. you can read the mail from an inbox
from a mail account of an SMTP SERVER. Then you may try to update the remote database.
Well i have mentioned VB as i heard it long back from my GURUJI that it is possible thru SMTP programming in VB
using the socket controls etc,.
Please check it out in some visuabasic forum sites and ask some VB Gurus.
Thanks
Prakash
[email protected]

Similar Messages

  • Steps to Connect remote Oracle Server using OCi C in Linux

    Hi !
    I am trying to connect oracle server through my application using OCI C in linux, it works fine in my oracle server machine.
    I want to connect oracle server through my C application from Oracle Client Machine
    can anyone help me in this issue ?
    regards
    Balaji.C

    Sounds like you did not specify your database name. Or you database name is hard-coded.
    Can you show us the code?
    Is your TNSNAMES.ORA set up correctly?
    Also, you did not specify any error messages or anything. Are you checking the result codes after any functions?

  • Oracle raise ORA-03113 when connect to a remote oracle server using toad

    Hi there,
    when i use the tool toad connect to a remote oracle server which located in a different city,
    when i submit a query in toad,
    if the query returns many rows of data, it will raise the error ORA-03113:end-of-file on communication channel,
    however if the query returns only a few rows, i won't raise such error,
    however, when i use sqlplus connect to that remote server, it won't raise such error,
    what's the reason is, can any one tell me how to tackle this problem if using the tool toad. thanks/

    hi my oracle vsersion is:
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE 11.2.0.1.0 Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    my oracle server is 2 nodes rac server,
    and i've tried two different kind version of toad v9.6 and v10.5, and both have the same problem
    once i query a table, if the result returned more than 30 rows, then it will raise that error, if query returns less than 30 rows, it's ok.
    i assume it is a problem concern with network, but i don't know why no such error raise when using sqlplus ?

  • Connecting to remote oracle server from asp

    Hi All
    How can I access remote oracle server from asp?. I'm using the following connection string.
    " Provider=MS Remote;Remote Provider=MSDAORA;Data Source=XYZ;Remote Server=http://DBServersIP;User Id=id;Password=pw"
    Both the web server and DB server has oracle client. I can tnsping, connect using sql * plus from the webserver.
    But when I try to do simple connection & query , I get the following error.
    " Microsoft ADO/RDS(0x80072EFD)
    Internet Client Error: Cannot Connect to Server.
    All the permission settings are given correctly (after referring Microsoft & Oracle websites)
    Can someone throw some links or help.?
    Your replies much appreciated.
    Thank you
    Arum

    why do you have http://DBServersIP as the remote server?
    Your connection string should look like:
    "Driver={Microsoft ODBC for Oracle};Server=MY_SID;Uid=my_user;Pwd=my_pwd;"
    There are other variations, but none of them should include HTTP anywhere.

  • In Java,how can I get remote oracle server's system time using a XAOracle datasource

    I want to get remote oracle server's system time,for example,I use a TxDataSource:
    DRIVER className:weblogic.jdbc.oci.xa.XADataSource
    URL:jdbc:weblogic:oracle:lanhaibo
    JNDI Name:
    the following is the code which shows the exception that: sqlexception:the JDBC2.0
    method is not implemented,why? what should I do?:
    Properties prop = new Properties();
    prop.put(Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory");
    prop.put(Context.PROVIDER_URL,"t3://"+"localhost"+":" + "7001");
    initCtx = new InitialContext(prop);
    DataSource ds = (DataSource)initCtx.lookup(strDataSource);
    Connection conn = ds.getConnection();
    String sqlQuery = "select to_char(sysdate,'yyyy') YYYY,to_char(sysdate, 'MM')
    MM,to_char(sysdate, '" +
    "dd') DD,to_char(sysdate, 'hh24') HH,to_char(sysdate, 'mi') MI,to_char(sysdate,
    '" +
    "ss') SS from dual"
    preparedStatement pstmt = conn.prepareStatement(sqlQury);
    StringBuffer sb = new StringBuffer();
    ResultSet resultset = pstmt.executeQuery();
    if(rs.next()){
    strYear = rs.getString("yyyy");
    strMonth = rs.getString("MM");
    strDay = rs.getString("DD");
    strHour = rs.getString("HH");
    strMinute = rs.getString("MI");
    strSecond = rs.getString("SS");
    sb.append(strYear);
    sb.append("/");
    sb.append(strMonth);
    sb.append("/");
    sb.append(strDay);
    sb.append(" ");
    sb.append(strHour);
    sb.append(":");
    sb.append(strMinute);
    sb.append(":");
    sb.append(strSecond);

    Joden asked:
    "I want to get a remote oracle server's time by XADataSource,
    use:"select sysdate from dual", but return a null value,and give
    the message"sqlexception the jdbc2.0 method is not implemented",
    why?"
    Let me see your code. A simple executeQuery() should do the trick:
    Statement s = c.createStatement();
    ResultSet r = s.executeQuery("select sysdate from dual");
    while (r.next())
    java.sql.Timestamp t = r.getTimestamp(1);
    Guillaume Grussenmeyer wrote:
    Hi.
    I guess you are using weblogic.jdbc.oci.xa.XADataSource as a
    datasource.
    Weblogic JDriver for Oracle "implementation" is really weak as a lot
    of methods are not implemented.
    This is why you get this message.
    You may find the (very impressive) list of non implemented methods at
    http://e-docs.bea.com/wls/docs70/oracle/API_joci.html#1162621 (sorry
    HTML links don't seem to work here).
    Any call to one of this methods will give you these nasty message and
    exception.
    Try to use the "official" Oracle JDBC driver XA Datasource
    (oracle.jdbc.xa.client.OracleXADataSource) instead of Weblogic JDriver
    for Oracle one's.

  • Access denied to remote Oracle server from job

    Hello
    I have a LINKED ORACLE server to SQL Server 2008 R2 (SP1). All the linked tables work OK. I wrote a couple of procedures to transfer/update data between my DB on the SQL Server and the Oracle linked server tables.
    When running a procedure from a query it works. But when putting the same procedure in a job (scheduled) it returns this error:
    Access to the remote server is denied because no login-mapping exists. [SQLSTATE 42000]
    How can I map logins in such a case to make this work? Or any other options?
    Thx in advance
    Miha

    Good Day,
    Recommended Steps as follows:-
    1.Create a credential under SQL Security tab
    2.Create a Proxy(Operating system CMDExec) under SQL Server Agent Tab and link the credential to the proxy.
    3.Create an SQL Agent Job with type - operating system(cmdExec)and Run as the proxy name or SQL Server Agent Service Account .
    4.Use SQLCMD -S instancename -Q "Exec databasename.schemaname.storedprocedurename;" in the command box.
    Consider the Security permission for the user credential.
    Regards,
    Sajith.
    http://sqllive.wordpress.com/

  • Connect to Remote Oracle Server?

    Hi all,
    What is the recommended method for connecting a Windows 2000 web server to a remote Oracle database? Ideally, a driver could add the remote Oracle database to our local list of ODBC datasources.
    We're using ColdFusion (web application development package) to connect to local ODBC datasources. A prospective client of ours would like to use our ColdFusion web server, but with their own Oracle server providing the back-end database, rather than use our native Access or SQL databases. I'm happy to do this, provided a simple, secure and free solution is available.
    The ColdFusion support forums talk about an "Oracle Client" though I can find no reference to it -- let alone, a download page -- on Oracle.com.
    Any help is greatly appreciated.
    Dave

    The general procedure for connecting a web server to an Oracle database via ODBC is as follows:
    1) Install the Oracle client on the web server machine. You can download the Oracle client from OTN by going to "Software" and choosing "Oracle 8i EE". If you have an Oracle CD, "client-only" is an installation option. Note that the 8.1.7.0 ODBC driver will be installed automatically when the Oracle client is installed. You may want to download and install the updated 8.1.7.2 ODBC driver.
    2) Use the Net8 Configuration Assistant to provide the Oracle client with the connection information for the remote Oracle database.
    3) Create a new ODBC DSN for the Oracle database (alternately, your application can make a DSN-less connection)
    4) Now, your application should be able to connect with the Oracle database.
    Justin

  • Cannot access mailbox hosted on remote EX2010 server through OWA

    Our Internet facing OWA is published through our EX2013 server as MAIL.CONTOSO.COM
    We have multiple sites acrossed global. OWA proxy from EX2013 to EX2010 works fine for NZ and US. But for some reason when tries to access mailbox on UK EX2010 SP3 server through the EX2013 OWA, I got error below:
    OWA-Error: Microsoft.Exchange.Data.Storage.NotSupportedWithServerVersionException
    X-OWA-Version: 15.0.775.32
    X-FEServer: EX2013-CAS
    X-BEServer: EX2013-CAS
    Checked the mailbox ExchangeVersion on the UK EX2010 server, it is 0.10 (14.0.100.0) same as NZ and US EX2010 mailbox users.

    What is the version using get-exchangeServer | FL *Version* ?  2010 Sp3 is required at a minimum : Build 14.3.123.4
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

  • Establih a connection to Oracle Server through Discoverer 11g

    Hi
    I am new to Oracle Discoverer reporting, I have installed Oracle Discoverer 11g on my Windows 7 32bit mechine and when I open discoverer it is asking for connection details.
    I would like to know more on this connection details :
    --Do I need to install Oracle client on my mechine ?
    --Or is there any settings to be modified (ora.ini file or etc...)
    --Do I have to install any other components to establish a connection to my oracle server ?
    Your help is highly appriciated.
    Thanks,
    Sastry

    Hi,
    Do I need to install Oracle client on my mechine ?No, all the client software is installed with the Discoverer Admin and User install
    Or is there any settings to be modified (ora.ini file or etc...) You need to setup the tnsnames.ora file found in the <OH>/network directory within the Discoverer Admin/User Oracle home directory. The setup is the same for other Oracle clients e.g. SQLPlus.
    Do I have to install any other components to establish a connection to my oracle server ?
    No, not unless you are connecting to an e-Business Suite using an apps mode EUL.Rod West

  • How to connect a remote Oracle Server with its IP

    is it possible to connect Oracle SerVer in VC
    I have used Microsoft ODBC driver for oracle and Oracle odbc driver to test in VC++6.0,
    but SQLDriverConnect, OCI methods failed.

    with VC++ an odbc driver for oracle is also installed with which u can connect to oracle db all u need to know is the database SID or oracle server name
    try doing this it will work hopefully
    regards

  • Connecting To Remote Oracle Server

    Hi All,
    I'm new to Oracle and have been given the task of migrating photographs stored as BLOBs in Oracle to Fedora Commons.
    At the moment I'm having problems using SQL-PLUS to connect to the remote database.
    So far this is what I've done:
    1 .Downloaded:
    instantclient-basiclite-win32-11.1.0.7.0.zip
    instantclient-sqlplus-win32-11.1.0.7.0.zip
    2. Extracted the above to C:\Program Files\Oracle Instant Client
    3. Added C:\Program Files\Oracle Instant Client to the start of my PATH variable
    4. Created a tnsnames.ora file in the above directory with the following contents:
    RDF = (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.209.2.40)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = orcl)
    5. Added a new environment variable called TNS_ADMIN and set it to C:\Program Files\Oracle Instant Client
    I then checked the setup by opening cmd and running sqlplus [username]/[password]@rdf which results in this error:-
    SP2-1503 Unable to initialize Oracle call interface
    SP2-0152 ORACLE may not be functioning properly.
    I have Googled this and most suggestions point to setting the ORACLE_HOME variable. However, I want to connect to a remote Oracle database so I don't see why this causes the problem and also even if I had to set that variable what would I set it to?
    Any help is appreciated,
    Keith
    PS:
    I followed this tutorial (it is 2 years old however): http://www.bernzilla.com/item.php?id=784

    is your tns listener up?
    goto command prompt
    type
    lsnrctl
    in the listener control utility type
    status
    and it copy paste the data here

  • Not able to connect with Oracle server through VBScript without DSN

    Hi
    I have both Oracle9i and Oracle10g clients installed with local system.
    I am able to connect to Oracle Database 11g Enterprise edition server though sqlplus through command prompt and also through AQT without any error.
    As the server has lots of database ,whenever I connect to a particular database through sqlplus from command prompt,I connect as below
    C:>sqlplus username/password@service_name
    and it gets connected without any error.
    When I am trying to connect the same database through VB Script,I am getting ORA-12560 TNS:Protocol Adaptor Error.
    Below is the connection string I am using:
    Database_String = "SERVER=xxxx.vvvn.Com;Driver={Oracle in OraHome92};DATABASE=service_name;user id=userid; password=passowrd"
    I have installed a Oracle10g server in my local system and tried to connect the same way and I was successfully ,but its not working when the server is running remotely.
    Does it make any difference with the version of driver being used ?Should I need to modify my connection string anyway.
    Please help me as to identify the issue.Thank you very much in advance.
    Regards
    Sahina

    check the listener status in server end,
    lsnrctl status
    lsnrctl servicesif not start
    lsnrctl startThanks

  • Updating a remote Oracle table

    I need to query about 20 tables on one server to get data that updates 1 table on a different table. How do I reference the remote table in SQL? Do I need any links to the remote table?

    A pet peeve of mine. Often vented here. There is no such thinh as a "PL/SQL Table". Despite what some say. Despite what the Oracle docs incorrectly states.
    Reason: the structure referred to as "table" is actually an array.
    But it is not the terminology that bugs me as much, but the confusion that this term causes. An array (or PL/SQL table) is nothing like an Oracle SQL table.
    But because is sounds similar, many developers seem to think that the two are similar and that a PL/SQL array can be used like a SQL table, provides similar advantages to a SQL table, can do the same job as a SQL table.
    It cannot. An array structure is very simplistic and very much inferior to a complex structure like a (SQL) table that offers a rich set of features and functions.
    Thus make sure that you are treating your "PL/SQL table" as an array - do not think it is like a SQL table and can provide the same feature set than a table.
    Also keep in mind that the best place for Oracle data (records/rows) is in SQL tables. Not in a PL/SQL array. And if that data is temporary by nature, Oracle supports temporary session tables.

  • Want to open a excel file from remote Linux server through ADF UI

    HI,
    My scenario is a excel template is located in LInux server in a directory. Then I need to download this excel file when I click on a hyperLink which will call the method mentioned below.
    however, below method works fine if the file is on windows machine/server but not if on Linux machine. In case of LInux it gives junk file.
    please suggest if any solution exists.
    Thanks,
    Sachin

    Moderator Action and Advice:
    @ user8106712,
    Your post has been split away from the completed 2006 thread you had resurrected.
    Hijacking someone else's discussion is poor forum etiquette.
    When you do that you are saying:
    "My issue is more important than yours. Ignore all that earlier stuff and just pay attention to me."
    If you want considerate responses, always start your own new post.
    You may also need to occasionally review the OTN Forums FAQ that is linked at the top corner of every page.

  • Connecting to aa Oracle Server Using Power Query

    Hi 
    Just got started with Power Query, 
    I want to get connected to the remote Oracle Server, which is used as DB  by our Internal Ticketing system.
    Can Any one let me know how can  I get connected to Oracle Server.  I had gone through some documentation from below link 
    http://office.microsoft.com/en-us/excel-help/connect-to-an-oracle-database-HA104019815.aspx?CTT=5&origin=HA104003952 
    and downloaded the "instantclient-basic-windows.x64-12.1.0.1.0" from Oracle Site too.
    Can some one guide me on how to proceed further.
    Regards
    Surya

    Any ideas for Surya?
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

Maybe you are looking for

  • Help needed in creating File Directory if not exist

    hi, All I am thinking about wite files to directories based on year, month, day. if the directory for that year or month or day exists already, do not create the directory, but write the file to that directory. For example: 2003/02/22/file.txt --2003

  • J2ee Web application exploded format in oracle 10g

    Hi, I am trying to develop a simple j2ee application in Exploded Format in oracle 10g AS. i have created a new OC4J instance called TestOC4j for this. A .war file works fine in this instance. I have placed the application under applications directory

  • Setting field level security

    I have created a form in LiveCycle in which two fields (Header and an Image block) need to be editable by one user type (e.g. power user), but should not be changeable by the end users.  They will only be able to fill in other fields in the form.  So

  • PE11 is driving me mad, sorry!

    Just when I think I'm at last on my way with PE11, the same old weird problems keep coming at me.  OK, Bill, so I've got all my .prel files (11 of them) in the one folder I've been working on all the time (btw is it possible to upload screencaptures

  • Linksys connection problems (ready to throw the thing out the window)

    I own a G4 powerbook OSX 10.3.9. and use a WRT54G v5 router. Everything was working fine up until a week ago. Now, I am CONSTANTLY losing my connection and because of this, I have to reboot the router every day. Even then the signal only works for a