Oracle Enterprise edition 10g features

Hi Team,
customer has a oracle 10g EE at primary. so mu questions related are
- Do i require license for a remote standby Lic while replcating using oracle data guard
- IS "RMAN" and oracle "enterprise manager" is free in DR Site if i purchase oracle EE at DR
- can we run a DR without a license
Rgds

Hi;
AFAIK you need extra license for Actice DG, for DG if you are on EE level you dont need to pay extra license.
For best answer, As mention here for your issue log a SR or contact wiht your oracle local office sales person.
PS:Please dont forget to change thread status to answered if it possible when u belive your thread has been answered, it pretend to lose time of other forums user while they are searching open question which is not answered,thanks for understanding
Regard
Helios

Similar Messages

  • How to enable olap option in oracle enterprise edition 10g?

    what are the settings/steps one should take in enabling OLAP option in oracle enterprise edition 10g?
    If we have an installation of Oracle EE 10g,how can we know that OLAP is enabled or not?
    Can anyone throw light on OLAP_TABLE function?
    In Analytic Workspace manager 10g,i have created a workspace ,under that i am having some dimensions,cubes,as well.
    After mapped to source table,and maintained,when i do a right click on measures, to view data, i get a error ORA-06553:PLS-222:no function with the name 'OLAP_TABLE' exists in this scope

    The Export function is disabled when the responsibility is opened initially .
    When we enter into a specific form its automatically enabled .
    Login to a user who has Application Developer responsibility & to Application >Register & press f11 and Ctrl f11 .

  • Error while creating data source using Oracle Enterprise Manager 10g

    Hi,
    I have deployed my web application developed on OC4J 9.0.4 stand alone (Win2K) to an integrated OC4J version(Solaris) using Oracle Enterprise Manager 10g.
    However, I get an error when I try to create a data source.
    The data source I want to create would have the following parameters (as seen in data-sources.xml on the stand alone version):
         <data-source
              class="com.evermind.sql.DriverManagerDataSource"
              name="TestDS"
              location="jdbc/OracleCoreDS"
              xa-location="jdbc/xa/OracleXADS"
              ejb-location="jdbc/TestDS"
              connection-driver="oracle.jdbc.driver.OracleDriver"
              url="jdbc:oracle:thin:@hostName:1521:test"
              username="user"
              password="password"
              min-connections="5"
              max-connections="20"          
              inactivity-timeout="30"
         />
    When I entered the above data on the Enterprise Manager Data Sources page, I got the following error:
    quote:
    Error saving Data Source Properties. - Entity et="system";ei="0",et="application";ei="48",et="data-sources";ei="167":child:data-sourcechild key:location:jdbc/OracleCoreDS; class:com.evermind.sql.DriverManagerDataSource; already exists in the repository. Resolution: Please check the code base.
    unquote:
    Could somebody tell me what I'm doing wrong ?
    I tried to manually edit the data-sources.xml file but the data source didn't show up on the Enterprise Manager.
    I'm using a new OC4J instance (on the Solaris machine) for my applications. Is the data source error related to this?
    Any help will be greatly appreciated.
    Thanks,
    Shyam

    Thanks for your reply , Steve.
    I noticed that there is a default datasouce on the EM with the following parameters:
    <data-source
              class="com.evermind.sql.DriverManagerDataSource"
              name="OracleDS"
              location="jdbc/OracleCoreDS"
              xa-location="jdbc/xa/OracleXADS"
              ejb-location="jdbc/OracleDS"
              connection-driver="oracle.jdbc.driver.OracleDriver"
              username="scott"
              password="->pwForScott"
              url="jdbc:oracle:thin:@localhost:1521:oracle"
              inactivity-timeout="30"
         />
    The location and xa-location attributes that I use for my "test" data source are the same as the default one. So, could this be the issue?
    What should be the values for location and xa-location attributes from my "test" data source?
    Any help will be greatly appreciated.
    Thanks,
    Shyam

  • (V7.3)RDBMS 7.3 Enterprise Edition NEW FEATURE에 대한 Q&A

    제품 : ORACLE SERVER
    작성날짜 : 2004-08-13
    (V7.3)RDBMS 7.3 Enterprise Edition NEW FEATURE에 대한 Q&A
    =========================================================
    1. Q) Oracle 7 Release 7.3의 new feature들을 간단하게 알고 싶습니다.
    A) 다음과 같이 요약하여 설명드리겠습니다.
    New features of 7.3.3 are :Direct load to cluster
    Can use backup from before RESETLOGS
    New features of 7.3 are :histograms
    hash joins
    star join enhancement
    standby databases
    parallel union-all
    dynamic init.ora configuration
    direct path export
    compiled triggers
    fast create index
    multiple LRU latches
    updatable join views
    LSQL cursor variable enhancement
    replication enhancement
    ops processor affinity
    Net 2 load balancing
    XA scaling/recovery
    thread safe pro*c/oci
    DB verify
    new pl/sql packages
    new pl/sql features
    bitmap indexes
    2. Q) Oracle 7 Release 7.2와 7.3의 새로운 Parallel feature에는 어떤 것이
    있습니까?
    A) Oracle 7 parallel query 에 의한 parallel operation에는 다음과 같은 내
    용이 있습니다.
    > Parallel Data Loading : conventional and direct-path, to the same
    table or multiple tables concurrently.
    > Parallel Query : table scans, sorts, joins, aggregates, duplicate
    elimination, UNION and UNION ALL(7.3)
    > Parallel Subqueries : in INSERT, UPDATE, DELETE statements.
    > Parallel Execution : of application code(user-defined SQL functions)
    > Parallel Joins :
    nested loop,
    sort-merge,
    star join optimization(creation of cartesian products plus the
    nested loop join),
    hash joins(7.3).
    > Parallel Anti-Joins : NOT IN(7.3).
    > Parallel Summarization(CREATE TABLE AS SELECT) :
    query and insertion of rows into a rollup table.
    > Parallel Index Creation(CREATE INDEX) :
    table scans, sorts, index fragment construction.
    3. Q) Release 7.2와 7.3에서 추가된 optimization 기능에는 어떤 내용이 있습
    니까?
    A) 다음과 같은 기능들이 있습니다.
    1> Direct Database Reads
    Parallel query 프로세스들은 필터링이나, 소팅, 조인과 같은 작업을 수행하
    기 위해서는 아주 큰 테이블을 scanning해야 합니다. Direct Database Reads는
    read efficiency와 성능의 향상을 위해 contiguous memory read를 가능하게 해
    줍니다. 또한, concurrent OLTP와 같은 작업을 수행시 따르는 경합을 없애기 위
    해 버퍼 캐쉬를 bypass합니다.
    2> Direct Database Writes
    Parallel query 프로세스들은 intermediate sort runs, summarization
    (CREATE TABLE AS SELECT), index creation(CREATE INDEX)과 같은 작업의 수행
    결과를 디스크에 종종 기록해야 합니다.
    Direct Database Writes는 write efficiency와 성능의 향상을 위해 direct
    contiguous memory로 하여금 contiguous disk writes를 가능하게 해줍니다.
    또한, concurrent OLTP 작업과 DBWR 프로세스에 의한 경합을 없애기 위해 버
    퍼 캐쉬를 bypass합니다.
    결론적으로, Direct Database Reads와 Writes는 concurrent OLTP와 DSS 작
    업에 따르는 복잡한 부하를 조절하면서 Oracle 7 서버를 분리된 형태로, 또한 최
    적의 튜닝을 가능하게 해줍니다.
    3> Asynchronous I/O
    Oracle 7은 이미 sorts, summarization, index creation, direct-path
    loading 에 대한 asynchronous write 기능을 제공하고 있습니다.
    Release 7.3부터는 보다 나은 성능의 향상을 위해 asynchronous read-ahead
    기능을 제공하여 최대한 processing과 I/O의 병행성을 증가시켜 줍니다.
    4> Parallel Table Creation
    CREATE TABLE ... AS SELECT ...와 같은 구문을 제공하여 상세한 데이타를
    갖는 큰 테이블의 조회된 결과를 저장하기 위해 임시 테이블을 생성합니다.
    이 기능은 보통 intermediate operation의 결과를 저장하기 위해 drill-down
    분석을 할 때 사용됩니다.
    5> Support for the Star Query Optimization
    Oracle 7은 수행 속도의 향상을 위해 star 스키마가 존재하고, star query
    optimization을 invoke합니다. Star query는 먼저 여러 개의 작은 테이블을
    join하고, 그런 후에, 그 결과를 하나의 큰 테이블로 join합니다.
    6> Intelligent Function Shipping
    Release 7.3부터 parallel query를 처리하는 coordinator 프로세스는
    non-shared memory machine(cluster 또는 MPP) 내의 노드들을 처리하기 위해
    디스크나 데이타들 간의 유사성에 대해 인식하게 될 것입니다.
    이 사실에 근거하여, coordinator는 data들이 machine의 shared
    interconnect를 통해 전달될 필요가 없다는 점에서, 특정 node-disk pair로 수
    행되고 있는 프로세스들에게 parallel query operation을 지정할 수 있습니다.
    이 기능은 연관된 cost나 overhead없이 'shared nothing' 소프트웨어 아키텍
    쳐의 잇점을 제공하면서 효율성과 성능, 확장성을 개선할 수 있습니다.
    7> Histograms
    Release 7.3부터 Oracle optimizer는 테이블의 컬럼 내에 있는 데이타 값의
    분포에 관한 더 많은 정보를 이용할 수 있습니다. Value와 상대적 빈도수를 나타
    내는 histogram은 optimizer에게 index의 상대적 'selectivity'에 관한 정보와
    어떤 index를 사용해야할 것인가에 관한 더 좋은 아이디어를 제공해 줄 것입니다.
    적절한 선택을 한다면, query의 수행시간을 몇 분, 심지어 몇 시간씩이나 단축
    시킬 수가 있습니다.
    8> Parallel Hash Joins
    Release 7.3부터 Oracle 7은 join 처리시간의 단축을 위하여 hash join을 제
    공합니다. 해슁 테크닉을 사용하면 join을 하기 위해 데이타를 소트하지 않아도
    되며, 기존에 존재하는 인덱스를 사용하지 않으면서 'on-the-fly' 라는 개념을 제
    공합니다.
    따라서, star schema 데이타베이스에 전형적으로 적용되는 small-to-large
    테이블 join의 수행 속도를 향상시킬 것입니다.
    9> Parallel UNION and UNION ALL
    Release 7.3부터 Oracle 7은 UNION과 UNION ALL과 같은 set operator를 사
    용하여 완전히 parallel하게 query를 수행할 수 있습니다. 이러한 operator를 사
    용하면, 큰 테이블들을 여러 개의 작은 테이블의 집합으로 나누어 처리하기가 훨
    씬 쉬워질 것입니다.
    4. Q) Release 7.3에는 어떤 제품들이 있습니까?
    A) Oracle 7 서버 Release 7.3.3에 대한 제품 리스트는 다음과 같습니다.
    단, 모든 플랫폼들이 리스트된 모든 제품들을 지원하지는 않습니다.
    [ Product ] [ Revision ]
    Advanced replication option 7.3.3.0.0
    Parallel Query Option 7.3.3.0.0
    Parallel Server Option 7.3.3.0.0
    Oracle 7 Server 7.3.3.0.0
    Distributed Database Option 7.3.3.0.0
    Oracle*XA 7.3.3.0.0
    Oracle Spatial Data Option 7.3.3.0.0
    PL/SQL 2.3.3.0.0
    ICX 7.3.3.0.0
    OWSUTL 7.3.3.0.0
    Slax 7.3.3.0.0
    Context Option 2.0.4.0.0
    Pro*C 2.2.3.0.0
    Pro*PL/I 1.6.27.0.0
    Pro*Ada 1.8.3.0.0
    Pro*COBOL 1.8.3.0.0
    Pro*Pascal 1.6.27.0.0
    Pro*FORTRAN 1.8.3.0.0
    PRO*CORE 1.8.3.0.0
    Sqllib 1.8.3.0.0
    Codegen 7.3.3.0.0
    Oracle CORE 2.3.7.2.0
    SQL*Module Ada 1.1.5.0.0
    SQL*Module C 1.1.5.0.0
    Oracle CORE 3.5.3.0.0
    NLSRTL 2.3.6.1.0
    Oracle Server Manager 2.3.3.0.0
    Oracle Toolkit II(Dependencies of svrmgr) DRUID 1.1.7.0.0
    Multi-Media APIs(MM) 2.0.5.4.0
    OACORE 2.1.3.0.0
    Oracle*Help 2.1.1.0.0
    Oracle 7 Enterprise Backup Utility 2.1.0.0.2
    NLSRTL 3.2.3.0.0
    SQL*Plus 3.3.3.0.0
    Oracle Trace Daemon 7.3.3.0.0
    Oracle MultiProtocol Interchange 2.3.3.0.0
    Oracle DECnet Protocol Adapter 2.3.3.0.0
    Oracle LU6.2 Protocol Adapter 2.3.3.0.0
    Oracle Names 2.0.3.0.0
    Advanced Networking Option 2.3.3.0.0
    Oracle TCP/IP Protocol Adapter 2.3.3.0.0
    Oracle Remote Operations 1.3.3.0.0
    Oracle Named Pipes Protocol Adapter 2.3.3.0.0
    Oracle Intelligent Agent 7.3.3.0.0
    SQL*Net APPC 2.3.3.0.0
    SQL*Net/DCE 2.3.3.0.0
    Oracle OSI/TLI Protocol Adapter 2.3.3.0.0
    Oracle SPX/IPX Protocol Adapter 2.3.3.0.0
    NIS Naming Adapter 2.3.3.0.0
    NDS Naming Adapter 2.3.3.0.0
    Oracle Installer 4.0.1

    P.S. I have checked the CD rom itself by doing the installation in our classroom on a Windows XP Pro machine and it loaded like a charm. I have been emailing and calling Compaq customer support on this issue, and I've done everything they've suggested, including a Quick Format of the hard drive. I am still getting the same results. I have been able to load a small program (Palm Desktop) on the Compaq without a problem, so I don't think it's the CD drive that's the problem, either. Thanks for any help you can give me!!! Deborah

  • Identify db-functionality only available in Oracle Enterprise Edition

    Hi
    I have an application with lots of PL/SQL logic. The development database for this application is Oracle Enterprise Edition and now we are going to install the application in an Oracle Standard Edition database at customer site.
    To be prepared I want to verify if I use (and remove) any db-functinality only available in Enterprise Edition.
    Is it possible to start an Oracle Enterprise Edition database in “Standard Edition mode”? Or is there any other way to scan the code?
    /Jonas

    For 11g refer
    http://docs.oracle.com/cd/B28359_01/license.111/b28287/editions.htm#BABDJGGI
    For 10g refer
    http://docs.oracle.com/cd/B14117_01/license.101/b13552/editions.htm
    After installing the EE software, IMO there is no way to start it in SE mode. As Data dictionary metadata stuff is different for EE and SE.
    You need to install SE and do exp/imp
    Converting An Enterprise Edition Database To Standard Edition [ID 139642.1]

  • ORACLE8 SERVER RELEASE 8.0.4 ENTERPRISE EDITION NEW FEATURES

    제품 : ORACLE SERVER
    작성날짜 : 2004-08-16
    Oracle8 Server Release 8.0.4 Enterprise Edition New Features
    ============================================================
    97.12월 Solaris용 Oracle8.0.4가 출시된 것을 필두로 Q3 중에 Major Platform용
    Oracle8.0.4가 나올 것으로 예상됩니다.
    8.0.4는 Oracle8 최초의 Maintenance Release이고, 각종 Bug Fix를 비롯하여
    다음과 같은 영역에서 기능을 보강하였습니다:
    Oracle8 and Oracle8 Enterprise Edition product factoring
    Time Series Data Cartridge
    Visual Image Retrieval Data Cartridge
    Legato Storage Manager integration
    JDBC drivers
    Advanced queuing enhancements
    Easing of restrictions on parallel DML operations
    Improvements to national character support
    Improved automation of tablespace point in time recovery (PITR)
    Improved Oracle Parallel Server diagnostics
    Oracle Enterprise Manager enhancements
    Net8 restrictions lifted
    Oracle8 및 Oracle8 Enterprise Edition Product Factoring
    Oracle은 두가지의 Oracle8 server로 구분되는데 이는, Oracle8 and Oracle8
    Enterprise Edition입니다. 두 제품간의 기능이나 타겟 시장의 차이는 설명않습
    니다. 8.0.3과 8.0.4의 가장 중요한 차이는 소위 "Factored"개념이 적용되어
    8.0.3을 구매하면 licensing하지 않은 기능과 옵션도 install/use할 수 있던
    것이 이제는 licesing한 기능과 옵션만을 사용할 수 있도록 제한된다는 것입니다.
    - Error Message가 뜬다고 함. (제품기술실에서는 이 사항에 대해 확인 부탁드
    립니다.)
    Time Series Data Cartridge
    8.0.4에는 새로이 Time Series Data Cartridge가 추가되는데, 이는 Temporal
    Data를 데이타베이스에서 관리할 수 있는 것으로, 즉 시계열 데이타 타입을 정의
    해서 사용할 수 있다는 것입니다. (예, 캘린더를 사용자 마음대로 정의할 수
    있음) 타임 시리즈 카트리지는 관계형과 객체형 인터페이스를 모두 지원하며,
    서드 파티는 카트리지에서 제공하는 인터페이스를 통해 솔루션을 개발할 수 있습
    니다. (SHYANG BJN, This needs to have some good examples for better
    understanding, also)
    Visual Information Retrieval (VIR) Cartridge
    타임 시리즈 카트리지 이외에 추가되는 또 하나의 카트리지는 VIR(이미지 정보
    검색용) 카트리지로서, 이미지의 속성(색깔, 구조, 질감 등)을 이용하여 검색할
    수 있도록 해 줍니다.
    이는 Virage라는 회사의 이미지 검색 기술-소위 "패턴 매칭 알고리즘"-을 이용한
    것으로 "find me objects that look like this one." 과 같은 질의가 가능합
    니다.
    Legato Storage Manager 통합
    8.0.4는 Legato의 Storage Manager가 통합 컴포넌트로 제공됩니다. Legato
    Storage Manager는 테이프 저장 매체 관리용 유틸리티로서 이제 Oracle8에서
    이를 활용할 수 있습니다. 8.0.3에서는 미디어 관리 레이어(MML:Multimedia
    Management Layer)를 제공하지 않았으며, 데이타를 테이프에 백업받기 위해서는
    써드파티의 MML을 구매해야 합니다.
    8.0.4에서 제공되는 Legato MML은 최대 4개의 테이프 드라이버에 동시 백업이
    가능한 Limited Version입니다.
    JDBC Drivers
    8.0.4에는 두개의 JDBC 드라이버가 포함되는데, 이를 통해 자바 프로그래머들은
    Oracle7과 Oracle8에 액세스할 수 있습니다. 이중 하나는 JDBC/OCI 드라이버라고
    불리우며 클라이언트/서버 자바 애플리케이션이나 자바 기반 미들티어를 개발하는
    개발자들을 타겟으로 합니다. 이 드라이버는 JDBC invocations 을 Oracle Call
    Interface [OCI]용 call로 바꿔주어 SQL*Net이나 Net8으로 보내 오라클 데이타
    베이스를 액세스하게 합니다.
    또 하나는 Thin JDBC driver라고 하는 것으로 자바 애플릿과 자바 애플리케이션
    개발자들을 위한 것입니다. 이 드라이버는 자바로 코딩되어 있어 완벽하게 JDBC
    표준을 따르고 있습니다. Thin JDBC driver는 대략 150K 의 크기에 (압축되지
    않으면300 K) 자바 애플릿과 함께 다운로드 될 수 있습니다. 이는 Oracle8만을
    지원하며, Oracle7은 지원않습니다.
    두 드라이버 모두 Javasoft의 JDBC 스펙을 따르며 JDK 1.0.2와 JDK 1.1을 지원
    합니다. 이들은 현재 상용화 되어있는 대부분의 browsers, tools, 그리고 Java
    VMs과 사용될 수 있고, 2 티어 이상의 멀티티어 컨피규레이션을 지원합니다.
    Advanced Queuing 개선
    8.0.4의 Enterprise Edition은 AQ기능이 보강되었습니다. 즉, remote queuing과
    de-queuing, 그리고 OCI interface 등이 추가되었고, 큐의 통계를 제공하며
    Oracle Enterprise Manager와 통합되었습니다.
    이제 메시지가 로컬 큐로 부터 리모트 큐로 자동 전달되고, 따라서 분산
    애플리케이션의 개발과 운영이 한층 용이해졌습니다.
    API는 8.0.3에서 PL/SQL API만 제공되던 것이 이제 OCI 인터페이스까지 제공됨에
    따라 AQ call 실행이 개선되고, AQ 기능을 활용하는 Pro*C애플리케이션 개발이
    한층 용이해졌습니다.
    8.0.4에서 제공되는 큐의 통계값은 평균 큐의 길이, 대기중인 메시지의 수, 시간
    초과된 메시지의 수 등을 포함하며 테이블로 유지되어 SQL문으로 조회가 가능
    합니다.
    큐와 관련한 관리작업을 단순화할 수 있도록 OEM이 큐를 사용하는 사용자와
    오퍼레이션을 관리합니다. 큐를 생성하고, 큐를 시작하거나 정지시키는 작업, 또는
    큐의 사용자를 늘리는 등의 태스크를 이제 OEM을 통해 가능합니다.
    Parallel DML Operations 관련 제한 완화
    Oracle8 Release 8.0.4 Enterprise Edition은 parallel DML
    (Insert/Update/Delete) operations에서 비롯되는 제한 사항을 더욱 완화시켜
    줍니다. 8.0.3에서는 하나의 트랜잭션에서 하나의 병렬 DML 오퍼레이션만이 가능
    하였으나 8.0.4에서는 복수 개가 허용됩니다.
    단 한가지 제약은, 만일 어떤 트랜잭션내에서 테이블을 병렬로 수정하는 DML
    오퍼레이션이 실행되면 그 트랜잭션내에서는 더 이상 그 테이블에 대해 조회
    하거나 DML을 하지 못한다는 것입니다. (다른 트랜잭션으로 처리해야 함)
    National Character Support 개선
    Release 8.0.4는 Korean NCHAR character set과 European sort for the
    UTF8 character data를 지원합니다.
    또한 Tablespace Point in Time Recovery (PITR) 자동화가 개선되었다고
    합니다. 본사는 비록 이 기능이 개선되었다고 해도 수행시키는데 필요한 단계
    (step) 중 몇 가지는 아주 "critical"하다고 하여 필히 Oracle Worldwide
    Support를 contact 하라고 조언합니다.
    Oracle Parallel Server Diagnostics 개선
    8.0.4는 Oracle Parallel Server diagnostics도 개선하였습니다. Fixed global
    views (GV$views) 상에서의 성능이 개선되었으며, 새로 추가된V$ view 를 통해
    DLM (distributed lock manager) lock을 볼 수 있습니다.
    Oracle Enterprise Manager 개선
    Oracle Enterprise Manager는 Release 1.5가 Release 8.0.4와 함께 사용됩니다.
    릴리즈1.5에서는 Backup Manager component 가 개선되어stored Recovery
    Manager scripts를 지원합니다. 즉, 이들 스크립트를 OEM에서 편집, 관리 가능
    합니다. 또한 "report wizard"가 추가되어 Recovery Manager report commands
    를 위저드의 순서대로 생성가능합니다.
    OEM 1.5의 schema manager 역시 오브젝트를 지원하도록 개선되었습니다. DBA는
    스키마 매니저를 이용하여 객체 타입과 객체 테이블을 생성, 드롭, 관리할 수
    있습니다. 스키마 매니저는 이외에도 AQ기능도 관리할 수 있게 되었습니다.
    사용자들은 스키마 매니저 인터페이스를 통해 큐에 주어지는 오퍼레이션을 관리
    가능합니다.
    Net8 제한 완화
    Net8 Release 8.0.4 역시 제한이 완화되었고, 보다 손쉬운 관리를 위해 기능이
    추가되었습니다. 일례로Net8이 이제는 DCE를 지원합니다. (8.0.3에서는 지원 안함)
    Net Assistant는 리스너의 컨피규레이션을 할 수 있도록 개선되었고, 마침내
    커넥션 풀링과 멀티플렉싱을 동시에 "enable"할 수 있게 되었습니다.
    Migration 과 Interoperability
    Oracle8 Release 8.0.4 는 마이그레이션 유틸리티를 이용 기존의 Oracle7
    (Release 7.1, 7.2, or 7.3) 데이타베이스를 쉽게 마이그레이션 할 수 있습니다.
    마이그레이션 유틸리티는 데이타 딕셔너리를 재구축해주고, 콘트롤 화일, 로그
    화일 및 데이타 블록을 바꿔줍니다.
    Oracle8 Release 8.0.3 데이타베이스는 8.0.4를 인스톨하는 것으로 업그레이드가
    끝납니다.

    Try this statement to get more information:
    SELECT a.job, a.log_user, to_char(a.this_date, 'MM/DD/YYYY HH24:MI:SS'), b.sid,
    to_char(a.last_date, 'MM/DD/YYYY HH24:MI:SS'), to_char(a.next_date,
    'MM/DD/YYYY HH24:MI:SS'), a.total_time, a.broken, a.failures, a.Interval , a.what
    from dba_jobs a, dba_jobs_running b
    where a.job=b.job(+)
    order by a.job
    The what column should display the script you're suppose to run.
    I just posted an integrated set of GUI tools to administer the Oracle database. One of the many functions is a GUI interface to Oracle Jobs. This function allows you maintain the Oracle Jobs (in the Tools section) – Create, modify, run a job. You may need same help to get started, so feel free to contact me ([email protected]). The link is http://www.barsoft.net/

  • DST Patch 2007 for Oracle Enterprise Manager 10g

    Hi,
    I went through several metalink documents for DST 2007 patch application on my Oracle Enterprise Manager Server and got confused in lot of articles. It is a stand-alone server
    Can you please help me in formulating a plan?
    I have the following versions installed:
    1) Repository db -Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - 64bit
    2) Oracle Enterprise Manager 10g Grid Control Release 10.2.0.1.0
    3) OS - AIX 5.3
    Thanks

    I just had a similar problem the other day. My repositoy is on 10.1.0.4, which is behind on released. We are very cautious of upgrade OEM.
    After doing research on OEM DST issue and reviewing our jobs, we found out that OEM was reporting we were on EST instead of EDT. The fix we applied was to download the "tzupdater" from sun.com. Then we ran "tzupdater" on the OMS home directories ($OMS_HOME/jdk/lib/tzupdater -u). This will update your java DST file for OMS.
    Then you should be able to do the OPatch to bring OEM to DST 4.
    Bobby

  • How to determine which packs are installed on the Oracle Enterprise Edition

    IS there any way to determine which option packs have been installed on 10g oracle enterprise edition . i don't seem to have grid control installed ?
    Is there some easier way to determine this ?
    regards
    Ajay

    No orainventory directory found However, it's the best way to know what are the installed product against your ORACLE_HOME.
    You can run the OUI and look for the installed components if any.
    Nicolas.
    PS : you need to log on your server.

  • Oracle Enterprise Manager 10g Database Control Release 10.2.0.3.0

    Oracle Enterprise Manager 10g Database Control Release 10.2.0.3.0 is one hour behiend on AIX 5.3.
    I have installed the new timezone version 4 already by oracle DST path database is good OEM main page is showing one hour behiend.
    I have done every possible effort last thing may be i have to update java home i have 1.4 IBM java on the server.
    Please help me in this. Thanks.

    See the Metalink Note *Impact Document for Daylight Saving Time Shift for Enterprise Manager Grid Control [ID 417939.1]* Appendix B - FAQ - point 18
    What is the impact of not patching the JDK on the OMS for 10g Grid Control?
    If you do not patch the JDK on the OMS page refreshed times and possibly other times displayed in the console will be incorrect (they will be off by 1 hour) during an affected period.
    Oracle strongly recommends that you do patch the OMS JDK but we are not aware of any data corruption in the repository nor of any impact on critical EM functionalities (such as severities, notifications and jobs) when the JDK is not patched.

  • Oracle Express Edition 10g on Ubuntu

    Since I installed Oracle Express edition 10g on Ubuntu 9.04 Linux I have had a problem with gdm and x-server not wanting to start.
    at present working but most times refuses to start.
    I guess that the problem could be that some of /etc/init.d/gdm files are not acessabale as Now there is a oracle user and dba.
    Can anyone help?
    Thanks
    Sam

    Try using another decompressor. Or istall rpm file roller and try to decompress rpm package instead of deb.
    $ apt-get install rpm

  • Oracle Enterprise Manager 10g is not running.

    Hi All,
    I cloned e-Business suite application/db to another server.After cloned Oracle Enterprise Manager 10g is not running. I've been noticing following messages during start/stop/status.
    status
    Oracle Enterprise Manager 10g is not running.
    start: doen't show any error.
    stop:
    Stopping Oracle Enterprise Manager 10g Database Control ...
    ... Failed.
    Log info:
    servername.domain_SID/sysman/log shows following errors.
    emos.log : ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sys
    emdb.nohup log
    --- Wed Apr 16 12:37:14 2008::The agentTZRegion value in /orafissbx1/u00/app/oracle/10.2.0.3/cob-eamdbd-01.wssc.ad.root_FISSBX1/sysman/config/emd.properties is not in agreement with what agent thinks it should be.Please verify your environment to make sure that TZ setting has not changed since the last start of the agent.
    If you modified the timezone setting in the environment, please stop the agent and exectute 'emctl resetTZ agent' and also execute the script 'mgmt_target.set_agent_tzrgn' to get the value propagated to repository -----
    emoms.trc
    [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.
    I opened the SR but still issues has n't fixed. I did all steps mentioned in TZ and etc according to metalink.
    Please suggest.
    Thanks

    This is expected behavious. It is because Enterprise Manager cannot run with the new server name. You can either go through loads to change the config files or simply drop and recreate the console.

  • Oracle Enterprise Edition Release 11.2.0.1.0 - 64bit Windows based patches

    Hi,
    We have Oracle Enterprise Edition Release 11.2.0.1.0 - 64bit Windows based server. I want to download latest patches for this version. From where can I get this? Please help me.
    Thanks,
    Mangesh

    Hi;
    1. Patch can be download only from metalink
    2. All related patch number can be found:
    NOTE:430449.1 - How to find DB Patches for the Microsoft Windows platforms My Oracle Support
    11.2.0.x Oracle Database and Networking Patches for Microsoft Platforms [ID 1114533.1]
    PS:Please dont forget to change thread status to answered if it possible when u belive your thread has been answered, it pretend to lose time of other forums user while they are searching open question which is not answered,thanks for understanding
    Regard
    Helios

  • Schedule Backup on Oracle Enterprise Manager 10g

    Hello All,
    I am using Oracle enterprise manager 10g for schedule backup, i enter the user and password of operating system (windows XP) in Host Credentials part, but it return this error:
    Connection to host as user khazaei failed: IOException in sending Request :: Connection refused: connect
    khazaei is my windows username ,
    any one can help me?
    thanks in advance,
    Hamzeh Khazaei

    You need to add khazaei to the Local Security Policy "Logon as Batch Job". if you have already done so and you have logged on to a Domain, then add the domain to the username. e.g domain_name\khazaei.
    BTW - you can get faster response to this issue in the EM forum
    Enterprise Manager

  • Oracle Enterprise Manager 10g Grid Control Release 5

    Hi All,
    Has anyone here already using Oracle Enterprise Manager 10g Grid Control Release 5? Currently we are using Release 2 of Oracle Enterprise Manager as a package upon installation of Oracle 10g. Curious about Release 5 I want to try it out in our Dev Environment. But before making any changes. I would like to ask guidance from you.
    Upon installation does it needs Operating System Patches, Packages etc.? Currently we are using AIX 5L Based Systems (64-Bit) and 10g for Database. Is this a complete installation or Just an upgrade?
    Regards,
    Dexter

    We are using 10.2.0.5 on windows.
    10.2.0.5 is just an upgrade
    How to install and upgrade on AIX?
    http://www.oracle.com/technology/software/products/oem/htdocs/Grid_Control_10.2.0.5.0_AIX5L_readme.html
    quick installation quide.
    http://download.oracle.com/docs/cd/B19306_01/install.102/b28033.pdf
    Hope that will help you.
    Anil Malkai

  • Installing Oracle Enterprise Manager 10G on Fedora 2

    During installation Oracle Enterprise Manager on Fedora 2 I receive message, that my computer has 0 Mb RAM , and installation stops. In fact my host has 1024 Mb Ram. It seems to me, that installer can't correctly determine the value of RAM.
    How can I switch off this check, or how to provide the installer the right data?

    generally im specfiying it in c:\documents and settings\Program, but im installing it from c:\documents and settings\my documents\software.
    I got another verson of Orcle, ive downladed the developer sute 10g, in this case the college where i go to use, it to connect. so i expect i will have to really uninstll that and the instll in Oracle Enterprise 10g.
    ive got screen shots of the process i am going through, in order to get a sucessfull installation.
    If anyone has msn please come online so i can send you the screen shots of what is happening when i try and install in Orcale enterprise 10g on my pc
    my email address is
    [email protected]
    or send me an email wid the subject: Help with installing Oracle enterprise manager 10g or a hello so i know its from a forum reply

Maybe you are looking for

  • Limiting the values in a lookup table

    Hello everyone. I was wondering if it is possible to limit the selectable values in a lookup table based on certain criteria, foremost the content of a separate field. Example: A product has a measurement key that determines which sizes are valid for

  • Problem connecting guitar to garageband on macbook pro 13 inch

    hi, how can i connect my guitar to the garageband if i want to record sounds? i am using 13 inch macbook pro which only has one audio port ( well, 15 inch has 2 ports ).. or do i need some interface devices?

  • Total of calculated fields

    In a page-detail table report, there are several numeric fields which must be totalled at the end of the report. Some of the fields are calculated ones, i.e. a dollar amount multiplied by a conversion rate. The total of the calculated fields are alwa

  • Handling servlet response type "Text/Html"

    I have a submit button that posts HTTP request to process the data that is filled in the pdf. In my servlet I have the following code: response.setContentType("text/html") to send a confirmation back to the user. Now, when I submit the form using pre

  • CS4 Installation won't accept CS3 Extended SN as my previously owned PS program

    I am trying to load my CS4. Program asks for my CS3 SN. I have CS3 Extended. CS4 Installation dropdown menu has no CS3 Extended and won't accept my CS3 Extended SN.