Remote access database using EM Database Control Console

When I install the Oracle database 10g, it gives me two choices:
1)Using Grid Control for Database Management and
2)Using Database Control for Database Management.
When I select the #2, according to the Guide, I'll be able to manage my database locally. (Assume the database server's IP address is: DB_IP_Address, then I can use: http://DB_IP_Address:5560/em). But wait a minute___
a)What does this "locally" mean? If the Oracle DB is installed in a remote location, and there is no LAN connection to it, can I still access it via the Oracle Enterprise Manager (Database Control Console)? (i.e., via the HTTP protocol)
b)The same question is asked for the iSQL*Plus in regarding to the remote access. I guess the answer to a) above will automatically answer the b) ? (Actually I doubt that I can access remote database using the iSQL*Plus via HTTP protocol).
Thanks
Scott

Hi,
and there is no LAN connection to itWell you'll need some network link in order to connect successfully.
What is meant by locally is that you can only manage databases installed on the local computer.
For example if you installed it on machine "CPTR1", and on another machine "CPTR2", then you can't use http://cptr1:5560/em to manage the databases on "CPTR2. And vice versa.
About iSQL*Plus, in fact, as far as the tns alias is ok from "CPTR1", you can connect to the databases on "CPTR2", "CPTR3", ....
HTH,
Yoann.

Similar Messages

  • Remote access database using Application Server Control Console

    When I install the Oracle Application Server 10g, it gives me a web-based tool, i.e., to use the Application Server Control Console to manager/monitor the server.
    Now If the Application Server is installed in a remote location, and there is no LAN connection to it, can I still access it via the Application Server Control Console? (i.e., via the HTTP protocol). (I believe that I can only use the Console to manage the AS which is physically located in the same machine).
    Thanks
    Scott

    Hi Scott!
    The ASC will allow you only to manage its own installation. So if you have 10 AS instances you will have 10 ASC's to manage it.
    If you want to remotely manage your installations you need the Grid Control.
    Otherwise you will need a connection to the machine.
    I do not understand the issue about the "no LAN connection"? How do you want to access the machine if there is no network connectivity anyway?
    cu
    Andreas

  • Creating a new Oracle Database using 10G Grid Control

    Hi
    Is it possible to create a new database using the 10g Grid COntrol.

    The way to create a database with EM, is by using Provisioning procedures. For instance with the Oracle Clusterware / RAC Provisioning For UNIX, you can provisioning Clusterware, ASM + ASM instance creation and DB Software. Then by provisoning you would create a database. There are also procedures to extend a cluster.
    So, provisoning is the way to go!
    Regards
    Rob

  • Fine tuning Oracle database using EM DB control

    What are the good features with we should use to fine tune the db system using em db control.

    All the diagnostics pack and the tuning pack capabilities are designed specifically to do what you ask.. As made available using the AWR and ADDM and used through the 'Advisor Central' link on the EM console.
    You use them the way demonstrated in the online tutorials: http://www.oracle.com/technology/products/oem/index.html and look through the documentation indicated, especially under the links "Demos and Tutorials"

  • How to connect Oracle database using TOAD Database toll

    Hello ALL,
    I have installed oracle 9i and TOAD in my machine.
    I want to connect oracle9i using TOAD database toll.
    How can i able to connect Oracle9i using TOAD database toll?What is the code i will change in tnsnames.ora so that i am able to connect scott/tiger database using TOAD?
    tnsnames.ora*
    SUMANTA.IN002.SIEMENS.NET =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = BLRD025AL1)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = sumanta)
    Please suggest.
    Thanks for your time.
    Regards,
    Sumanta

    user2367151 wrote:
    Hello ALL,
    I have installed oracle 9i and TOAD in my machine.
    I want to connect oracle9i using TOAD database toll.
    How can i able to connect Oracle9i using TOAD database toll?What is the code i will change in tnsnames.ora so that i am able to connect scott/tiger database using TOAD?
    tnsnames.ora*
    SUMANTA.IN002.SIEMENS.NET =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = BLRD025AL1)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = sumanta)
    Please suggest.
    Thanks for your time.
    Regards,
    SumantaIf you have a listener on host BLRD025AL1, and that listener knows about a service named 'sumanta', then you don't need to do anything to your tnsnames.ora to use it with Toad -- or any other client tool. You just have to provide the correct connect string.
    What have you actually tried?
    What result did you get?
    Any oracle errors (ora-nnnnn or tns-nnnnn)?

  • NEED TO RECOVER A DATABASE USING RMAN with CONTROL FILE AND NO RMAN CATALOG, DISK FAILURE..

    Hello All,
    The disk failure caused our production data on the disk to be resotred with the backup data available and recovered through RMAN with cotrolfile , and no catalog DB is configured.
    I had the restored the spfile and control file then recovered the database,
    startup nomount;
    RESTORE SPFILE FROM ' path '  ;
    Shutdown immediate;
    startup nomount
    Restore controfile from autobackup;
    restore database;
    [AT POINT , A MESSAGE PROMPTED LIKE " failur of restored command - some targets not found"  (thinking may be few archives are not found, i proceeded to incomeplete recovery of DB) ]
    recover database;
    Finished reocvery .
    Now in the Grid control i see that 60 blocks of a particular datafile are corrupted and needs recovery. Do i need to get the data file resotred again and recover it or any simple way to recover this data file
    When i perform the block recovery , it says recovery failed and when i run the data file recovery it succeeds. Please provide you inputs to recover the database as it is production BI database and pretty critical to our client.
    Thanks for your valuable time in advance.
    Regards,
    Ran G.

    These is a common problem if the object are created due to NOLOGGIN option. If you check most of the object which are facing block corruption is indexes .
    Use the below query to check the objects :
    It will map each block from v$database_block_corruption to either a segment or if the block is free.
    $ sqlplus / as sysdba
    set pagesize 2000
    set linesize 250
    SELECT e.owner, e.segment_type, e.segment_name, e.partition_name, c.file#
    , greatest(e.block_id, c.block#) corr_start_block#
    , least(e.block_id+e.blocks-1, c.block#+c.blocks-1) corr_end_block#
    , least(e.block_id+e.blocks-1, c.block#+c.blocks-1)
    - greatest(e.block_id, c.block#) + 1 blocks_corrupted
    , null description
    FROM dba_extents e, v$database_block_corruption c
    WHERE e.file_id = c.file#
    AND e.block_id <= c.block# + c.blocks - 1
    AND e.block_id + e.blocks - 1 >= c.block#
    UNION
    SELECT s.owner, s.segment_type, s.segment_name, s.partition_name, c.file#
    , header_block corr_start_block#
    , header_block corr_end_block#
    , 1 blocks_corrupted
    , 'Segment Header' description
    FROM dba_segments s, v$database_block_corruption c
    WHERE s.header_file = c.file#
    AND s.header_block between c.block# and c.block# + c.blocks - 1
    UNION
    SELECT null owner, null segment_type, null segment_name, null partition_name, c.file#
    , greatest(f.block_id, c.block#) corr_start_block#
    , least(f.block_id+f.blocks-1, c.block#+c.blocks-1) corr_end_block#
    , least(f.block_id+f.blocks-1, c.block#+c.blocks-1)
    - greatest(f.block_id, c.block#) + 1 blocks_corrupted
    , 'Free Block' description
    FROM dba_free_space f, v$database_block_corruption c
    WHERE f.file_id = c.file#
    AND f.block_id <= c.block# + c.blocks - 1
    AND f.block_id + f.blocks - 1 >= c.block#
    order by file#, corr_start_block#;
    Below oracle support note will help you :
    ORA-1578 / ORA-26040 Corrupt blocks by NOLOGGING - Error explanation and solution (Doc ID 794505.1)
    The Gains and Pains of Nologging Operations (Doc ID 290161.1)
    SQL> select d.NAME as DBF_NAME, t.NAME as TS_NAME, d.UNRECOVERABLE_CHANGE# as NOLOG_CHNG#, to_char(d.UNRECOVERABLE_TIME, 'Dy DD-Mon-YYYY HH24:MI:SS') as NOLOG_TIME from V$DATAFILE d join V$TABLESPACE t on d.TS# = t.TS# order by t.NAME;
    Thanks,
    gssdba.wordpress.com

  • Having a problem accessing OEM 10g application server control console!

    Hi everyone,
    I just installed AS 10g (10.1.2.0.2) Forms and Reports Services Standalone on a Windows 2003 machine. The installation went fine, the instance was created successfully.
    I started all the services, when i try to access EM :
    http://fms-as.mathtechinc.com:18100. I get a blank screen.
    I can get to the AS welcome screen by using http://fms-as.mathtechinc.com:80, but when I click on the link to log on to Oracle Enterprise Manger 10g Application Server Control. I still get a blank screen.
    I checked the port numbers in port.ist.ini and the port for
    application server control port =18100.
    I am not sure what I am doing wrong.
    Thanks for your help in advance!

    Thanks Jacco... now It is asking for the user name: and password. I do not remember assigning a user name. When I installed the AS, I created an
    instance name and isa_admin password.
    I tried to use the instance name as the username it was not accepted.
    Thanks again!

  • How can I delete a row in access using the database toolkit?

    I want to delete just one row of a access table using the database toolkit. Can it be done and if so How?

    Take a look at page A-1 of the database connetivity manual. It has information on making a sql query that will delete. You will need to use this command with the dbtools execute query function. Look in the shipping examples for an example with this function.

  • Can I recover the database to the current time using a backup control file?

    Can I recover the database to the current time using a backup control file? How far can I recover this database?
    I have an Oracle 10g(10.2.3) database on RHEL4.3 system.
    I have lost all the current control files and all the online redo logs, archived redo logs and all other files are OK.
    Now I have to recovery this database using a backup control file.
    Can I recover the database without any data lost?

    If
    a) it was a Shutdown Abort or an Instance Crash (i.e. backgrounds died on detecting loss of redo logs),
    b) redo logs are lost
    c) data files are intact
    You'd have to
    a) Restore datafiles
    b) Do an Incomplete Recovery to the last available ArchiveLog
    Hemant K Chitale
    http://hemantoracledba.blogspot.com

  • Creating a new folder using a Database Link

    I'm trying to create a new folder from another database with Discoverer Administrator. The schema that I'm using is the same on each database but when I select the other database using the database link, Discoverer Administrator will get all the user accounts on the other database but if that user exists on the default database I will only see the objects owned for that user on the default database. If I select a user that is only on the remote database I will see the objects from the remote database. Is this a Bug? I was able to do this using Disco Admin 9.0.4 and EUL 5.02 on an Oracle 8i database. I just migrated my EUL to an Oracle 10g database using EUL 5.1.1 and Disco Admin 10.1.2.

    Yes this a bug, Bug No. 4324352 &Note:459996.1
    You follow this workaround
    After the Folder creation
    1. Choose Folder Properties (right-click on Folder)
    2. Change database from <default database> to <DBLINK>
    Thanks
    Mohamed

  • Restore primary database using physical standby

    hi,
    i am taking rman backup on production database,we have physical standby.coming month i have to take backup from standby instead of prod db.pls advise me, is it possible to restore and recover production database using standby database backup.if production crashed.pls advise me .i am new to dba.if possible pls provide proper steps.
    Regards
    Faruk

    Faruk.m wrote:
    hi,
    i have to take backup on standby instead of production.failover i can do.but i need to know the recovery procedures from standby.and thank u for reply.i want, is it possible to restore my production controlfile with controlfile backup from standby.
    i tested with my local database ,that below:
    1.backup with controlfile from standby (rman>backup current controlfile)
    2.manual deleted my test db controlfile,tried to restore from backup taken from standby(rman>restore controlfile from '*****************';)
    3.rman>restore database
    3.but it shows error (datafile already exists) ,controlfile tried to create datafiles on standby location.
    my conclusion:above my cmds used to create datafiles on standby becoz i restored with standby controlfile.
    my question:what is wrong with my steps? and how to restore my (prod) controlfile from standby.and bring backup my prod db.
    regards
    farukHi Faruk,
    Sorry my late.
    I can share with you my test.
    It is my standby  database, I connecting with RMAN
    SQL> select database_role, db_unique_name, name from  v$database;
    DATABASE_ROLE      DB_UNIQUE_NAME           NAME
    PHYSICAL STANDBY       stldb                    ADMDB
    [oracle@oel62-x64 oradata]$ rman target /
    Recovery Manager: Release 11.2.0.3.0 - Production on Tue Apr 23 12:23:00 2013
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: ADMDB (DBID=4063877183, not open)
    RMAN> backup current controlfile;
    Starting backup at 23-APR-13
    Starting implicit crosscheck backup at 23-APR-13
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=29 device type=DISK
    Finished implicit crosscheck backup at 23-APR-13
    Starting implicit crosscheck copy at 23-APR-13
    using channel ORA_DISK_1
    Finished implicit crosscheck copy at 23-APR-13
    searching for all files in the recovery area
    cataloging files...
    no files cataloged
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting full datafile backup set
    channel ORA_DISK_1: specifying datafile(s) in backup set
    including current control file in backup set
    channel ORA_DISK_1: starting piece 1 at 23-APR-13
    channel ORA_DISK_1: finished piece 1 at 23-APR-13
    piece handle=/u01/app/oracle/fast_recovery_area/stldb/STLDB/backupset/2013_04_23/o1_mf_ncnnf_TAG20130423T122310_8qdfq19x_.bkp tag=TAG20130423T122310 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:01
    Finished backup at 23-APR-13
    RMAN> exit
    Recovery Manager complete.
    [oracle@oel62-x64 oradata]$ sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.3.0 Production on Tue Apr 23 12:23:26 2013
    Copyright (c) 1982, 2011, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> shut immediate;
    ORA-01109: database not open
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup nomount;
    ORACLE instance started.
    Total System Global Area  551165952 bytes
    Fixed Size              2230232 bytes
    Variable Size            167774248 bytes
    Database Buffers       377487360 bytes
    Redo Buffers              3674112 bytes
    SQL>
    SQL>
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [oracle@oel62-x64 oradata]$ rman target /
    Recovery Manager: Release 11.2.0.3.0 - Production on Tue Apr 23 12:34:58 2013
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: ADMDB (not mounted)
    RMAN> restore controlfile  from '/u01/app/oracle/fast_recovery_area/stldb/STLDB/backupset/2013_04_23/o1_mf_ncnnf_TAG20130423T122310_8qdfq19x_.bkp';
    Starting restore at 23-APR-13
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=19 device type=DISK
    channel ORA_DISK_1: restoring control file
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
    output file name=/u01/app/oracle/oradata/stldb/control01.ctl
    Finished restore at 23-APR-13
    RMAN> alter database mount;
    database mounted
    released channel: ORA_DISK_1
    RMAN> exit
    Recovery Manager complete.
    [oracle@oel62-x64 oradata]$ sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.3.0 Production on Tue Apr 23 12:35:31 2013
    Copyright (c) 1982, 2011, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> select database_role, db_unique_name, name from  v$database;
    DATABASE_ROLE      DB_UNIQUE_NAME           NAME
    PRIMARY       stldb                    ADMDB
    As show here, you can backup standby control file, and restore as primary .
    Regars
    Mahir M. Quluzade
    http://www.mahir-quluzade.com

  • How to set up remote access on wvc80n without using TZO

    Just purchased the WVC80N, but how do you set it up for remote access without using TZO?  I can not get TZO to work w/ my Uverse 2wire 3800-hgv-b router.  Please help as the uverse customer support has not been helpful with port forwarding either.

    Hi, I'm a newbie at this, so pls be patient with my terminology...  I want to install 2 or 3 of these cameras in my mother's home, and I will have AT&T DSL service (one dynamic IP address) there with only a modem/wireless router.  I want to access the cameras from my laptop or from my Blackberry Tour when I am traveling.  Also want to allow access for my other relatives.  I do not have another home computer to serve as a WHS, and my laptop is obviously not connected to the internet all of the time.  Can I use the DDNS setup with DynDNS to provide access?  The instructions that I read seemed to imply that I needed a WHS in order to forward ports, etc.  Thanks in advance for your help.. Garry

  • Tables not showing in a new Database created using CREATE DATABASE command

    Hi there! I've created a database using "Script Database As" in SSMS. Here's the code generated:
    USE [master]
    GO
    /****** Object:  Database [PLMAINDB]    Script Date: 08/22/2014 11:25:44 ******/
    CREATE DATABASE [PLTESTDB] ON  PRIMARY 
    ( NAME = N'CLIENTSPRIME_Data', FILENAME = N'C:\TEMPDB\CLP_Data.mdf' , SIZE = 217472KB , MAXSIZE = UNLIMITED, FILEGROWTH = 10%)
     LOG ON 
    ( NAME = N'CLIENTSPRIME_Log', FILENAME = N'C:\TEMPDB\CLP_Data.ldf' , SIZE = 1024KB , MAXSIZE = UNLIMITED, FILEGROWTH = 10%)
    GO
    ALTER DATABASE [PLMAINDB] SET COMPATIBILITY_LEVEL = 80
    GO
    IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled'))
    begin
    EXEC [PLMAINDB].[dbo].[sp_fulltext_database] @action = 'disable'
    end
    GO
    ALTER DATABASE [PLTESTDB] SET ANSI_NULL_DEFAULT OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET ANSI_NULLS OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET ANSI_PADDING OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET ANSI_WARNINGS OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET ARITHABORT ON 
    GO
    ALTER DATABASE [PLTESTDB] SET AUTO_CLOSE ON 
    GO
    ALTER DATABASE [PLTESTDB] SET AUTO_CREATE_STATISTICS ON 
    GO
    ALTER DATABASE [PLTESTDB] SET AUTO_SHRINK ON 
    GO
    ALTER DATABASE [PLTESTDB] SET AUTO_UPDATE_STATISTICS ON 
    GO
    ALTER DATABASE [PLTESTDB] SET CURSOR_CLOSE_ON_COMMIT OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET CURSOR_DEFAULT  GLOBAL 
    GO
    ALTER DATABASE [PLTESTDB] SET CONCAT_NULL_YIELDS_NULL OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET NUMERIC_ROUNDABORT OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET QUOTED_IDENTIFIER OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET RECURSIVE_TRIGGERS OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET  DISABLE_BROKER 
    GO
    ALTER DATABASE [PLTESTDB] SET AUTO_UPDATE_STATISTICS_ASYNC OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET DATE_CORRELATION_OPTIMIZATION OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET TRUSTWORTHY OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET ALLOW_SNAPSHOT_ISOLATION OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET PARAMETERIZATION SIMPLE 
    GO
    ALTER DATABASE [PLTESTDB] SET READ_COMMITTED_SNAPSHOT OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET HONOR_BROKER_PRIORITY OFF 
    GO
    ALTER DATABASE [PLTESTDB] SET  READ_WRITE 
    GO
    ALTER DATABASE [PLTESTDB] SET RECOVERY FULL 
    GO
    ALTER DATABASE [PLTESTDB] SET  MULTI_USER 
    GO
    ALTER DATABASE [PLTESTDB] SET PAGE_VERIFY TORN_PAGE_DETECTION  
    GO
    ALTER DATABASE [PLTESTDB] SET DB_CHAINING OFF 
    GO
    The mdf and ldf files for PLTESTDB were created successfully. The issue I'm having is that tables are not showing when under PLTESTDB. I've searched online and most answers point to Permission issue. I already added user with the ff. database roles 
    db_owner
    db_reader
    db_writer
    But even after refreshing or even closing relaunching SSMS, i could not see any table under PLTESTDB. I've spent  a lot of time already on this but can't find the fix. I might be missing something here. I tried it on another computer but same issue
    persists. 
    Any ideas or suggestions on how to get this resolved are highly appreciated! Thanks in advance. 
    Bong Robles

    You're right Olaf! The above script is only for creating DB and not tables.   I should have done further reading.  I tried now generating scripts for all objects and I got the ff. error:
    Msg 207, Level 16, State 1, Procedure CallbackFormViewUpdateCommand, Line 38
    Invalid column name 'upsizets'.
    Msg 207, Level 16, State 1, Procedure CallbackFormViewInsertCommand, Line 37
    Invalid column name 'upsizets'.
    Msg 207, Level 16, State 1, Procedure CallbackFormViewInsertCommand, Line 39
    Invalid column name 'upsizets'.
    Msg 1018, Level 15, State 1, Procedure GrabCounterUpdate, Line 7
    Incorrect syntax near 'holdlock'. If this is intended as a part of a table hint, A WITH keyword and parenthesis are now required. See SQL Server Books Online for proper syntax.
    Msg 1018, Level 15, State 1, Procedure GrabCounterAllUpdate, Line 7
    Incorrect syntax near 'holdlock'. If this is intended as a part of a table hint, A WITH keyword and I parenthesis are now required. See SQL Server Books Online for proper syntax.
    I'm working on fixing the errors now. I think I can handle this now.
    Really appreciate your quick help. Thanks!
    Bong Robles
    I think script is having reference to a column which doesnt exist
    But unless we see script we will not able to understand the exact reason
    Can you post script?
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Create new database using rman cold backup

    It oracle 10g database version 10.2.0.4
    I took the cold backup of the database using rman ( Database name TEST)
    1.RMAN> startup mount;
    2.RMAN> backup database include current controlfile;
    3.RMAN> alter database open;
    I aim to create the new database called DEMO using this backup
    Please let know the setps for creating new database
    Edited by: prajeevan on Jan 19, 2011 9:09 PM

    I took the cold backup of the database using rman ( Database name TEST)
    1.RMAN> startup mount;
    2.RMAN> backup database include current controlfile;
    3.RMAN> alter database open;
    I aim to create the new database called DEMO using this backup
    Please let know the setps for creating new databaseIf it is in archivelog mode you can use duplicate to refresh database DEMO from TEST..
    or after cold backup, go to mount ,
    create trace file of controlfile becuase you are chaning database name
    recreate the controlfile
    open database in resetlogs;
    check also http://blogs.oracle.com/AlejandroVargas/gems/RMANDUPDBPRACTICE.pdf

  • How to integrate android application with oracle database using oracle mobile database server.

    Hi,
    I developed one web application using oracle database. I want to implement same web application in android. My problem is how to integrate android application with existing oracle database using oracle database mobile server. Can u please guide me how to install oracle database mobile server and how to integrate android app with existing oracle database..
    Thank you.

    In the Database Mobile Doc set there is an entire book that covers the Installation of Oracle Database Mobile Server.   Chap 4 of that book contains screen shots and all kinds of information that will help guide you through the installation.   We also have a doc on the different mobile clients.  Chap 2 of that guide covers installs and integration of an android app. 
    thanks
    mike

Maybe you are looking for

  • Finder Folder defaults, not the same defaults when using Office Mac2011

    I might be being a touch simple here - i've got my file formats sorted nicely in Finder (excuse my simple terms here, new to iMac, love it though..) and the default view opens each time without issue. What I want now is the same default view when I o

  • I have 2 caps lock notifications and they respond slowly

    Hi, I have now got 2 caps lock notification boxes in the bottom right hand corner. This I suppose I can deal with it's the fact that most of the time when I have pressed the caps lock they show up sometimes 1 or 2 and then the keyboard is slow to res

  • Photoshop CS6 wont install keep getting error

    Exit Code: 6 Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DF024, DW063 ... WARNING: DS012, DW016 ... -------------------------------------- Summary -------------------------------------- - 0 fatal error(s),

  • Mini-Bridge: accessing files

    I am unable to access files/folders via the mini-bridge in PS.  When I click "computer," or my user name, or favorites or anything else in the mini-bridge drop-down menu nothing happens.

  • Help-trouble With Listener

    One class (class 1)implements mouse listener and responds to a mouse events. As part of that response it needs to call a variable set method in another class (class 2)and also have that setMethod call it's own ActionPerformed. Seems the problem is I