By Which tool  . . . . .   DBA can admin E-Business Suite database ?

Dears . . .
After greeting . . .
My question is
By which tool as a DBA can admin the Database in Oracle e-Business Suite Application ?
Because i have conflict understanding between Oracle Enterprise Manager and Oracle Application Manager.
Is Oracle Enterprise Manager for DBA and Oracle Application Manager for Applications DBA . . . . . Or what exactly ???
Thanks & Best regards . . .

This forum is exclusively for Certification Doubts, all your EBS related doubts are addressed in the relevant Oracle EBS General Forums.
General EBS Discussion
Regards,
Sabdar Syed.

Similar Messages

  • Which tool we can use in Web design except photoshop?

    I have six experience in web  design developing,Need more advice,Which tool we can use in Web design except photoshop?

    Dreamweaver is pro-level software for web designers & developers. If you have the necessary coding skills, there's not much you can't do with DW.  If you don't, the learning curve can be quite steep.
    If you join the Creative Cloud, you have access to the following other web design products:
    Muse is web design software aimed at non-coding designers & hobbyists.  The trade off for Muse's  "ease of use" is static HTML pages with limited functionality.  In other words, you could not use Muse to build a shopping cart site but it might be all you need for a simple  hobby, church or charity site.
    Edge Animate
    For creating HTML5 Animations and interactive site pages.
    Edge Coder
    A coding editor.
    Edge Reflow
    For creating responsive web design layouts that work on mobile phones, tablets & desktops.
    Edge Web Fonts & TypeKit -- custom web fonts
    PhoneGap -- for creating mobile apps
    http://html.adobe.com/edge/
    Nancy O.

  • Can oracle e-business suite adapter be dynamically configured??

    I have to call different instances of e-business suite. Can i use a single oracle application adapter to connect to different instances through dynamic configuration...........

    Hi,
    wrong forum. This is a JDeveloer / ADF forum
    Frank

  • Archiving Oracle E-Business Suite database

    Hi all
    I need to archive my E-Business Suite oracle database.I have several products on the market.
    However I will appreciate if anybody can share his personal experience on the products.
    Regards

    I need to archive my E-Business Suite oracle database.I have several products on the market.If you have a list of software, I would suggest you contact software vendors to get a comparison between the products.
    However I will appreciate if anybody can share his personal experience on the products.We use [Veritas NetBackup |http://www.symantec.com/business/netbackup] which works perfectly for cold/hot/system backup.

  • Oracle E-business suite database migrate from AIX to Linux

    Oracle 11i application database migration from single Aix instance to oracle Linux cluster RAC.
    What is the easy way to migrate?
    Migrate single instance from aix to linux cluster.
    OR
    Migrate single instance from aix to linux cluster RAC.
    We have installed oracle Linux cluster.
    Please help me which way I can go with RAC.
    Thanks
    Prince

    Migrating to a single instance will be the simplest. The migration itself will not be much different between the two because you're migrating from one platform to another. The options you have available are, the traditional IMP/EXP, datapump, and RMAN to migrate to either a standalone or RAC environment. The difficulty will be in creating a RAC environment and a little a few extra steps in the RMAN restore. Working with RAC will make things harder, but the actual migration is similar. The steps to IMP/EXP, whether it's traditional or Datapump will be no different. However, standing up a RAC database will be.

  • E-Business Suite Database Tier cloning failure

    Hi All,
    We are cloning a new Oracle E-Business Suite test instance from the cold backup of our production. Production is single instance/archive log enabled. However, the target instance is single instance/no archive log. the DB version is 11.1.0.7
    When i am running adcfgclone.pl on the database tier, it errors out with the following.
    APPS Password : Log file located at /db1/oratrng/db/tech_st/11.1.0/appsutil/log/TRNG_oradapp/ApplyDBTier_11081226.log
    | 50% completed RC-50004: Fatal: Error occurred in ApplyDatabase:
    Control file creation failed
    ERROR while running Apply...
    Mon Nov 8 12:35:16 2010
    ERROR: Failed to execute /db1/oratrng/db/tech_st/11.1.0/appsutil/clone/bin/adclone.pl
    The logfile shows the following errors:
    ORACLE instance started.
    Total System Global Area 1069252608 bytes
    Fixed Size 2109352 bytes
    Variable Size 427823192 bytes
    Database Buffers 624951296 bytes
    Redo Buffers 14368768 bytes
    Control file created.
    alter database open resetlogs
    ERROR at line 1:
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '/db1/oratrng/db/apps_st/data/system01.dbf'
    alter tablespace TEMP1 add tempfile '/db1/oratrng/db/apps_st/data/temp01.dbf' REUSE
    ERROR at line 1:
    ORA-01109: database not open
    alter tablespace TEMP1 add tempfile '/db1/oratrng/db/apps_st/data/temp02.dbf' REUSE
    I tried by creating the controlfile manually too but it gave error when i tried to open the database:
    SQL> @crctl.sql
    ORACLE instance started.
    Total System Global Area 1069252608 bytes
    Fixed Size 2109352 bytes
    Variable Size 427823192 bytes
    Database Buffers 624951296 bytes
    Redo Buffers 14368768 bytes
    Control file created.
    ALTER DATABASE OPEN RESETLOGS
    ERROR at line 1:
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '/db1/oratrng/db/apps_st/data/system01.dbf'
    I tried to recover the above datafile.
    SQL> recover database using backup controlfile until cancel;
    ORA-00283: recovery session canceled due to errors
    ORA-00600: internal error code, arguments: [kcvhvdf_1], [], [], [], [], [], [],
    I tried another cold backup(we take cold backups every night) but facing the same issue with another backup also. That's why i think its not an issue with system.dbf file being corrupt.
    when i searched metalink for ORA-600 with kcvhvdf_1, i found that it is a bug in 11.1.0.7. bug 9314439.
    the bug says:
    The problem is that when the datafiles have zero DB ID=0=0x0, the 'create controlfile set database' command is not setting the new DB ID in the datafile headers but only in the controlfile. It then causes the ORA-600 [kcvhvdf_1] to be produced in the recovery due to DB ID mismatch between datafiles (select FHDBI from x$kcvfh) and controlfile (select DBID from v$database).
    I verified the above statement and found it true.
    SQL> select FHDBI from x$kcvfh;
    FHDBI
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    select DBID from v$database;
    DBID
    551459957
    The bug states a work around:
    If using a cold backup (after a clean shutdown - NORMAL/IMMEDIATE), one workaround is to open the database right after the create controlfile (with no previous recover):
    CREATE CONTROLFILE SET DATABASE "DEV2" RESETLOGS ARCHIVELOG ...
    alter database open resetlogs;
    However, this workaround is not working for me.
    Kindly help. Its urgent.

    >
    We are cloning a new Oracle E-Business Suite test instance from the cold backup of our production...
    >
    >
    alter database open resetlogs
    ERROR at line 1:
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '/db1/oratrng/db/apps_st/data/system01.dbf'
    >
    This to me indicates that the backup was not a cold backup.
    HTH
    Srini

  • Upgrade Oracle e-business suite database

    Hi
    Please any tell me what are the steps I should follow in upgrading oracle e-business suite 11.5.10.2/Oracle 9.2.0.5 on HP Unix pa RISC 64 bit. to oracle 10.2.0.4
    Thanks
    sva

    Hi again Sva;
    I suggest before you dont start upgrade chech Hussein Sawwan's greatest post about same issue:
    upgrade forms on upgrading DB from 9i to 10g
    9i to 10g upgradation
    Please check those docs too:
    Oracle Database Upgrade Guide
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14238/toc.htm
    Regard
    Helios

  • Oracle APPS (E-Business Suite) Database

    A couple of questions;
    1) Best practice suggests limiting access to the TNS Listener component of the APPS Database by only allowing access to an approved list of IP Addresses. In lots of Networks clients dont have static IP addresses, so how to accomplish this.
    2) Does restricing access to the TNS LIstener by IP affect users being able to login to Oracle Application itself? I.e. the Systems front-end? Or does it just affect Database level access.
    3) If 2 only affects Database accounts, how does the Application itself talk to the Apps Database? Is there some hidden account?

    >
    1) Best practice suggests limiting access to the TNS Listener component of the APPS Database by only allowing access to an approved list of IP Addresses. In lots of Networks clients dont have static IP addresses, so how to accomplish this.
    >
    Use hostnames rather than IP addresses.
    >
    2) Does restricing access to the TNS LIstener by IP affect users being able to login to Oracle Application itself? I.e. the Systems front-end? Or does it just affect Database level access.
    >
    This feature only affects database access, not front-end application access.
    >
    3) If 2 only affects Database accounts, how does the Application itself talk to the Apps Database? Is there some hidden account?
    >
    The application and database servers are in the "invited_nodes" list automatically, so this is not an issue.
    MOS Doc 291897.1 - 11.5.10 New Features : Managed SQL*Net Access from Hosts
    MOS Doc 403537.1 - Best Practices For Securing Oracle E-Business Suite Release 12
    HTH
    Srini

  • Step By Step Upgrade Oracle E-Business suite database from 11.2.0.3 to 11.2.0.4

    Dears,
    please need help in upgrade Oracle E-Business R12.1 DataBase from 11.2.0.3 to 11.2.0.4 in details:
    my environment is:
    Operating System : Oracle Solaris Sparc 10.8 X64
    Oracle Applications : R12.1.3
    Thanks
    Osama Mohamed
    Hussein Sawwan-Oracle

    Hi,
    In addition to all above notes also refer my blogpost for using 11gR2 database in EBS R12.1,
    All steps will be similar and you may need to apply some additional pre-requisites RDBMS patches.
    Oracle 11gR2 database upgrade in Apps R12.1.1 | Apps DBA Workshop
    thanks,
    X A H E E R

  • BPEL 10.1.2 Integration w/ Oracle E-Business Suite Database Sequences

    All,
    I have read the previous posts on database sequences, but I am still missing something. I am attempting to insert into a database column using a database sequence. In my toplink_mappings.xml (under Integration content), I make the changes as suggested in previous posts ( I have read most all of them on this subject) to manually insert two lines under the primary key as follows:
    <sequence-number-field>AP.AP_INVOICES_INTERFACE.INVOICE_ID</sequence-number-field>
    <sequence-number-name>AP.AP_INVOICES_INTERFACE_S</sequence-number-name>
    When I then attempt to re-deploy the process without going through the partner link, I get the ORA-00942: table or view does not exist. I am guessing this is related to the two lines above that were inserted manually as instructed below. However, when I attempt to go back through the partner link to validate the changes the two manual lines are wiped out and I then get ORA-01400: cannot insert NULL into "AP"."AP_INVOICES_INTERFACE"."INVOICE_ID"). Furthermore, I have gone into Applications Sources ->TopLink->TopLink Mappings Database Info Sequencing Section. I toggled between "Use Default Sequence Table"/"Use Native Sequencing". I think I need Use Native Sequencing do to my integration with Oracle Apps, but I am not sure (PreAllocation set to 1 per Apps).
    Also, I have read the references from previous post to the BPEL Developers guide and reviewed the "Changes Through TopLink Mapping Workbench". However the section on No Primary Key Exception does not address my issue because it does not address automatic sequence generation for primary keys.
    Any help with regard to this issue is very much appreciated. I too am trying to perform a BPEL and OEBS 10.5.9/9i database integration “proof of concept” and would be interested in discussing what I am working on with others in a similar position. Thanks.
    Don

    Hi Don,
    I have seen this before internally:
    "I've selected "Use Native Sequencing" in the Toplink Mappings and used the DB Adapter wizard to regenerate the toplink_mappings.xml, but the BPEL process manager still wants to access a table called SEQUENCE."
    The solution is to change your oc4j-ra.xml to set useNativeSequencing="true". Otherwise the adapter will think AP.AP_INVOICES_INTERFACE_S is a database table designed to store the next primary keys rather than a sequence. That may explain the table not found exception.
    For next release we will at least ship a sample on how to auto-assign primary keys on insert. We do have a feature request to incorporate this into the wizard to make it more painless.
    Also to prevent your additions to toplink_mappings.xml from being overwritten, you can configure sequencing inside the TopLink Mapping Workbench Project inside Jdev.
    Go
    Application Sources > TopLink > TopLink Mappings.
    Then in structure pane click on the ApInvoicesInterface descriptor and check "Use Sequencing" and set the SequenceName to "AP.AP_INVOICES_INTERFACE_S".
    Thanks
    Steve

  • RESOURCE MANAGER IN E-BUSINESS SUITE DATABASE

    Hi All,
    I have little problem with database resource manager in E-Business database.
    I have set up some resource plan, assigned consumer group and user APPS to this consumer group (of course it is new initial consumer group for that user). At instance level I've set up RESOURCE_MANAGER_PLAN to new plan.
    When I'm on console and use sqlplus, or from my workstation use SQLNavigator and connect as APPS - its resource_consumer_group column from v$session is set to desired new consumer group, but when I start application most of sessions connected as APPS are in DEFAULT_CONSUMER_GROUP - please advice, anyone has any ideas ???
    Best Regards
    Radek

    EBS installs come with the database packaged with the install. You do not need a separate database install. Pl post EBS related issues in the EBS forums at http://forums.oracle.com/forums/category.jspa?categoryID=3
    HTH
    Srini

  • Current Opportunity Oracle e-Business Suite DBA

    URGENT!! 3 x Oracle e-Business Suite Database Administrator required working on site for a UK leading Telecoms company in the North West Midlands. As an Oracle e-Business DBA you must have at least 2 years experience with Oracle e-Business suite up to versions 11.5.10 & 10g. RAC and Dataguard are a MUST whilst any knowledge of BPEL would be a great advantage.
    Please send all CVs to the email address below.
    John Smith
    Please contact me ASAP:
    [email protected]
    tel:0208 466 3614

    Please see these docs.
    FAILED: file LoadMap.class with 'No ECX_VERSION stored in database' [ID 314170.1]
    Adpatch Fails while Loading a Map : no ECX_VERSION stored in the database [ID 412445.1]
    ADPATCH Fails : LoadMap.class Task error : 'No ECX_VERSION stored in database' [ID 293861.1]
    Loading Itgtrade.Ldt fail [ID 317031.1]
    Thanks,
    Hussein

  • Database Vault on e-Business suite R12

    Hi,
    As i know, database vault prevents even DBA's from querying the critical data from the database. Can somebody please tell me what advantage does database vault on e-business suite offers in terms of security. I have installed vault on my e-business R12 database?
    If DBA has password for both system and apps schema, they he can access any critical information from the e-business suite database.
    Thanks,
    Prasad

    Prasad,
    Did you review "Section 1: Overview" in the following note? I believe it answers your question.
    Note: 744363.1 - Integrating Oracle E-Business Suite Release 12 with Oracle Database Vault 10.2.0.3
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=744363.1
    In addition, please review the following links.
    Oracle Database Vault 10.2.0.3 Certified with Apps 12
    http://blogs.oracle.com/stevenChan/2008/05/oracle_database_vault_10203_ce.html
    Oracle Database Vault
    http://www.oracle.com/database/database-vault.html
    Remember, someone always has the key (as mentioned in the other thread), which means the Realm Owner (created in Oracle Database Vault) has access to the Realm schemas.
    Using Oracle Database Vault 10gR2 With Apps 11i
    http://blogs.oracle.com/stevenChan/2008/02/using_oracle_database_vault_10.html
    Oracle® Audit Vault Administrator's Guide Release 10.2.3.1
    http://download.oracle.com/docs/cd/E13850_01/doc.102/e13841/toc.htm
    Regards,
    Hussein

  • How to Display Data from Oracle E Business Suite tables in ADF

    Hi,
    I am new to ADF.
    I have a requirement to Create an ADF page for Search Results Screen.
    However the result data is from one of the Oracle E Business Suite Tables.
    ie I need to create a Screen where user will enter a Purchase Order Number and Click on Button.
    The Screen should show details from PO_HEADERS_ALL (from Oracle ERP Database Table) based on the entered PO Number.
    Is it possible to implement the same? Can some one guide me how to do it?
    Thanks,
    Kamath

    Hi,
    Is there a way where I can create a VO in ADF to which I can insert records dynamically from a source and the Source connects to E Business Suite tables and returns results ie BPEL etc.
    http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/bcadvvo.htm#sm0341
    Just replace the PLSQL example with your data source
    Can ADF invoke SOA which inturn connects to Oracle E Business Suite and fetches the data from Oracle tables and pass it back to ADF? Is it possible
    Yes. Just use a WS proxy client to access the SOA entry point (WSDL) and follow the link above
    Frank

  • Display E-Business Suite Navigation in Tree Structure

    Hello:
    When I login to E-Business Suite the Module display is in Folder format
    Is it possible to display Tree Structure?
    When can I get the instruction?
    Please help
    Vijay

    Hi,
    Is there a way where I can create a VO in ADF to which I can insert records dynamically from a source and the Source connects to E Business Suite tables and returns results ie BPEL etc.
    http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/bcadvvo.htm#sm0341
    Just replace the PLSQL example with your data source
    Can ADF invoke SOA which inturn connects to Oracle E Business Suite and fetches the data from Oracle tables and pass it back to ADF? Is it possible
    Yes. Just use a WS proxy client to access the SOA entry point (WSDL) and follow the link above
    Frank

Maybe you are looking for

  • HT204088 how to remove charge card from account

    How do I remove a charge card from my account

  • What means Apple Mobile Device failed to start?

    How can I verify the I have sufficient priviliges to start system services?

  • Aggregrating Results of Formula Variable

    Hello All,   I have created a key figure using a formula variable to subtract 2 dates in BEx 3.5 front end.  The formula works great as long as I have the 2 dates in my drilldown...if I  don't, I get an x as the result.  I want to show the average of

  • RE: (forte-users) Screen Scraping

    I think they changed their name since Conextions at least 2 times. Try this web site: http://www.wrq.com/products/apptrieve/ noro -----Original Message----- From: Denver Jobs [mailto:fortejobsindenveryahoo.com] Sent: Monday, November 13, 2000 8:31 AM

  • Get an Alter XMLA string via C# script task

    Hi, I have an alter Database XMLA file that needs to be deployed to an Analysis Server only if there was a change with the existing database. I have a C# script task that checks if the DB exists before deploying. What I need to add, is code that comp