Oracle beehive data layout document

Hi All,
I was wondering if there is any document which explains data model in Oracle Beehive. Say for example how a single email/wiki/document/voice mail etc is stored in oracle database and what other information is stored for such single email item elsewhere(if it at all it is stored anywhere else other than database) ? . Is there any document which explains all the schema in beehive related table spaces ?
Rohit

Ruben,
Rohit really is not the first one to request such features.
There are two enhancement requests, which we filed last year:
Bug No. 7145488 7110780
Bug No. 7110780
Filed      19-MAY-2008      Updated      20-OCT-2008
Desirability      Somewhat desirable feature
Status      To Internal (Oracle) Review
Base Bug      N/A
Fixed in Product Version      No Data
Problem statement:
GRANULAR RECOVERY OF ARTIFACTS
5. Technical impact on the customer. Include persistent after effects.
A typical business situation is that a user requires to see part of
its data like it was at a specific point in time, like "give me
that file, that I had a week ago and deleted accidentally
yesterday" or "let me see a version of my document" like it was a
month ago
Bug No. 7145488
Filed      03-JUN-2008
Updated      20-OCT-2008
Desirability      Extremely desirable feature
Status      To Internal (Oracle) Review
Base Bug      N/A
Fixed in Product Version      No Data
Problem statement:
SINGLE WORKSPACE BACKUP AND RECOVERY METHOD
5. Technical impact on the customer. Include persistent after effects.
A typical business situation is that a single user requires a
recovery of his workspace after a deletion for example.
In the documentation just a complete tier backup recovery is
described. But there is no description on how to backup or recover
a single workspace.
We still think, that both of these requests represent very important business situations.
Regards, Thomas
Edited by: snmdla on Jan 14, 2009 8:34 AM

Similar Messages

  • When I sync my iPhone 4S to my computer, where is the baseline data and documents coming from? Is the iPhone's set of apps and data the default set or are the apps and data on the computer (in the backup? in iTunes?) the default set?

    I am having a great deal of trouble with the upgrade to ios 7 on my 4S. The syncing and the software updates always leave generic icon apps that I have downloaded in the past but have deleted from my phone. But they keep reappearing. A restart of the phone fixes the icons but they are loaded not at the last page of the home screen but on completely random pages, screwing up my app and folder layout.
    I want to completely wipe the phone and restore the apps one by one, but I am concerned about whether the data and documents for those apps that I reinstall will be intact. Does the syncing for the apps on the phone retrieve the data from the last backup on the computer? If so, does it only sync the apps on the phone or does it try and reinstall all the apps that there is data for in the backup? In other words, does the resulting set of apps and data reflect the current state of the phone or the saved state of the backup?

    Apple guys are deleting posts. I have found my posts have been deleted. Apple should MUST let us downgrade at least to previous release from current which was working fine.

  • Unable to connect SQL Developer 4.0.2 to Oracle REST Data Services 2.0.7 (Apex Listener)

    Background
    1. Weblogic 10.3.6.0 running on Oracle Linux 6.5 with Oracle JRockit(R) (build R28.2.3-13-149708-1.6.0_31-20120327-1523-linux-x86_64, compiled mode)
    2. Oracle Apex 4.2.1
    3. Apex Listener 1.1.3
    4. Apex and Apex Listener running on the Weblogic box above
    5. SQL Developer 4.0.2 running on Windows 7 64 bit / Java 1.7.0_55
    Updated Apex to 4.2.5 via p17966818_425_Generic.zip patchset. Apex environment running fine as do all applications via Listener 1.1.3
    Updated Oracle Listener to the latest version of Oracle REST Data Services 2.0.7
    Current Status
    Apex Applications and RESTful services are running fine.
    Problem
    Unable to connect SQL Developer 4.0.2 to Oracle REST Data Services 2.0.7
    Error message in SQL Developer - Cannot connect to DEV. HTTP/1.1 403 Target service not allowed
    Additional Information
    Steps followed -
    1. The oracle users APEX_LISTENER and APEX_REST_PUBLIC_USER did not exist, so I ran apex_rest_config.sql from the APEX 2.4.1 patchset whilst connected sys as sysdba and provided the same password as APEX_PUBLIC_USER for both users.
    2. I also ran
    grant insert, delete on APEX_040200.wwv_flow_rt$privilege_groups to APEX_LISTENER;
    alter session set current_schema = APEX_LISTENER;
    create or replace synonym wwv_flow_rt$privilege_groups for APEX_040200.wwv_flow_rt$privilege_groups;
    as per Oracle SQL Developer User's Guide Release 4.0
    3. copied ords.war to apex.war
    4. java -jar apex.war configdir /u01/app/oracle/admin/apex/devdomain1/
    5. java -jar apex.war
    Jun 5, 2014 5:15:31 PM oracle.dbtools.common.config.file.ConfigurationFolder logConfigFolder
    INFO: Using configuration folder: /u01/app/oracle/admin/apex/devdomain1/apex
    Enter the name of the database server [localhost]:dbservername
    Enter the database listen port [1521]:
    Enter 1 to specify the database service name, or 2 to specify the database SID [1]:1
    Enter the database service name:dbservicename
    Enter the database user name [APEX_PUBLIC_USER]:
    Enter the database password for APEX_PUBLIC_USER:
    Confirm password:
    Enter 1 to enter passwords for the RESTful Services database users (APEX_LISTENER,APEX_REST_PUBLIC_USER), 2 to use the same password as used for APEX_PUBLIC_USER or, 3 to skip this step [1]:2
    Jun 5, 2014 5:16:52 PM oracle.dbtools.common.config.file.ConfigurationFiles update
    INFO: Updated configurations: defaults, apex, apex_al, apex_rt
    Enter 1 if you wish to start in standalone mode or 2 to exit [1]:2
    6. java -jar apex.war user adminlistener "Listener Administrator"
    Jun 5, 2014 5:18:52 PM oracle.dbtools.common.config.file.ConfigurationFolder logConfigFolder
    INFO: Using configuration folder: /u01/app/oracle/admin/apex/devdomain1/apex
    Enter a password for user adminlistener:
    Confirm password for user adminlistener:
    Jun 6, 2014 5:19:12 PM AM oracle.dbtools.standalone.ModifyUser execute
    INFO: Created user: adminlistener in file: /u01/app/oracle/admin/apex/devdomain1/apex/credentials
    7. Updated the defaults.xml file
    Added
    <entry key="apex.security.user.roles">RESTful Services</entry>
    <entry key="apex.security.developer.roles">OAuth2 Client Developer, SQL Developer</entry>
    as per Oracle SQL Developer User's Guide Release 4.0
    Changed
    <entry key="debug.printDebugToScreen">false</entry>
    to
    <entry key="debug.printDebugToScreen">true</entry>
    for RESTful debugging
    Added
    <entry key="security.verifySSL">false</entry>
    to use OAuth2 in Non HTTPS Environment as per Oracle® REST Data Services Installation and Configuration Guide, Release 2.0
    8. Deleted the Admin and Manager Roles within the apex application deployment which were part of the Apex Listener 1.1.3 install
    9. Deployed the apex.war in weblogic
    10. Stopped and started the weblogic server to which apex.war was deployed
    11. In SQL Developer, View, RESTful Services. In the RESTful services windows hit connect, Create a new connection,
    Connection Name DEV
    Username adminlistener
    selected http protocol
    Hostname weblogicservername
    Port 7250
    Server Path /apex
    Workspace (blank)
    On the Authentication dialog
    Username adminlistener
    Password passwordsuppliedabove in step 6
    Response is a dialog box titled Authentication Failed
    message - Cannot connect to DEV. HTTP/1.1 403 Target service not allowed
    NOTHING UNUSUAL IN ANY OF THE WEBLOGIC LOG FILES, EXCEPT THAT IT STATES
    'Oracle REST Data Services version : 2.0.6.27.18.06' when I've installed 2.0.7.
    Any help much appreciated

    Further to the above post, I thought I'd simplify my Apex Listener install just to see if I can connect to it via SQL Developer
    So downloaded the latest version 2.0.8 and decided to configure and run the Listener on my pc whilst still connecting to the same database.
    Operating system : Window 7 Pro 64 bit
    Oracle Apex Listener 2.0.8
    Java(TM) SE Runtime Environment (build 1.7.0_25-b17)
    Java HotSpot(TM) 64-Bit Server VM (build 23.25-b01, mixed mode)
    Went through the configuration as above, once started I tried again to access the listener via SQL Developer. This time I received this output from the listener:
    INFO: Error: ORA-02291: integrity constraint (APEX_040200.WWV_FLOW_RT$APPROVALS_SGID_FK) violated - parent key not found, occurred during execution of: [CALL, insert into wwv_flow_rt$approvals (user_name,status,client_id,security_group_id,created_by,created_on,updated_by,updated_on) values(/*in:user_id*/?,/*in:status*/?,/*in:client_id*/?,/*in:tenant_id*/?,upper(/*in:user_id*/?),/*in:created*/?,upper(/*in:user_id*/?),/*in:created*/?), [tenant_id, in, class java.math.BigInteger], [client_id, in, class java.math.BigInteger], [user_id, in, class java.lang.String], [status, in, class oracle.dbtools.rt.oauth.ApprovalRequest$Status], [created, in, class java.sql.Timestamp]]with values: [adminlistener, APPROVED, 3858401374580004, -1, adminlistener, 2014-06-23 12:19:18.785, adminlistener, 2014-06-23 12:19:18.785]
    SQL Developer responded with an Authentication Failed titled dialog with the following displayed in the body of the dialog
    Cannot connect to DEV.
    <!DOCTYPE html>
    <!--[if lt IE 7 ]> <html class="ie6"> <![endif]-->
    <!--[if IE 7 ]> <html class="ie7 no-css3"> <![endif]-->
    <!--[if IE 8 ]> <html class="ie8 no-css3"> <![endif]-->
    <!--[if IE 9 ]> <html class="ie9"> <![endif]-->
    <!--[if (gt IE 9)|!(IE)]><!-->
    <html>
    <!--<![endif]-->
    <html lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <style type="text/css" media="screen">html,body,div,span,h3,p,ol,ul,li,header,hgroup{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}header,hgroup{display:block}body{font:normal 12px/16px Arial,sans-serif;margin:0 auto;background:#6a9cda}header#xHeader{border-bottom:1px solid #8fa4c0;position:relative;z-index:10;background:none #000}header#xHeader hgroup{width:974px;margin:0 auto;position:relative;height:36px;background:none #000}header#xHeader a#uLogo{margin:8px 0;display:inline-block;font:bold 14px/20px Arial,sans-serif;color:#AAA;text-decoration:none}header#xHeader a#uLogo span.logo{color:#F00}.no-css3 div#xContentContainer div.xContent{padding-top:14px}.no-css3 div#xContentContainer div.xContent div.xMainLeft h2{margin-top:0}div#xWhiteContentContainer{margin-bottom:30px}div#xWhiteContentContainer.xContentWide{background:#FFF;margin-bottom:0}div#xWhiteContentContainer.xContentWide div.xWhiteContent{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}div#xWhiteContentContainer div.xWhiteContent{width:974px;margin:0 auto;padding:0 0 20px 0;background:#FFF;min-height:500px;-moz-border-radius:0 4px 4px 4px;-webkit-border-radius:0 4px 4px 4px;border-radius:0 4px 4px 4px;-moz-box-shadow:0 1px 2px rgba(0,0,0,0.15);-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.15);box-shadow:0 1px 2px rgba(0,0,0,0.15)}div#xContentHeaderContainer{background:#6a9cda;-moz-box-shadow:0 -1px 0 rgba(0,0,0,0.15) inset;-webkit-box-shadow:0 -1px 0 rgba(0,0,0,0.15) inset;box-shadow:0 -1px 0 rgba(0,0,0,0.15) inset}div#xContentHeaderContainer div.xContentHeader{width:974px;margin:0 auto;padding:30px 0 32px 0;position:relative;min-height:60px}div#xContentHeaderContainer div.xContentHeader h3{font:bold 24px/24px Arial,sans-serif;color:#fff;text-shadow:0 2px 1px rgba(0,0,0,0.25);margin:0 0 20px 0}div#xFooterContainer{min-height:200px;border-top:1px solid rgba(0,0,0,0.15);background:#6a9cda}body.errorPage div#xContentHeaderContainer div.xContentHeader{min-height:30px}body.errorPage div#xContentHeaderContainer div.xContentHeader h3{font:bold 30px/30px Arial,sans-serif;color:#FFF;text-shadow:0 1px 2px rgba(0,0,0,0.25);margin:0}div.errorPage p{font:normal 14px/20px Arial,sans-seri;color:#666;padding:0 0 10px 0}div.errorPage ul{list-style:disc outside;padding:0 10px 0;margin:0 0 20px 0}div.errorPage ul li{font:normal 12px/16px Arial,sans-serif;color:#666;margin:0 0 8px 10px}pre{font-family:Consolas,"Lucida Console","Courier New",Courier,monospace}
    </style>
    <script type="text/javascript" charset="utf-8">
      'header hgroup'.replace(/\w+/g,
      function(n) {
      document.createElement(n)
    </script>
    <title>Internal Server Error</title>
    </head>
    <body class="errorPage">
      <header id="xHeader">
      <hgroup>
      <a id="uLogo" href="./"><span class="logo">ORACLE</span>
      REST DATA SERVICES</a>
      </hgroup>
      </header>
      <div id="xContentHeaderContainer">
      <div class="xContentHeader">
      <h3>
      <span class="statusCode">500</span> - <span
      class="statusMessage">Internal Server Error</span>
      </h3>
      </div>
      </div>
      <div id="xWhiteContentContainer" class="xContentWide">
      <div class="xWhiteContent">
      <div class="errorPage">
      <p>
      <ul class="reasons">
      </ul>
      </p>
      <p>
      <pre>Request Path passes syntax validation
    Mapping request to database pool: PoolMap [_failed=false, _lastUpdate=-1, _pattern=null, _poolName=apex, _regex=null, _type=REGEX, _workspaceIdentifier=null, _serviceName=null]
    Applied database connection info
    Attempting to process with PL&#x2F;SQL Gateway
    Not processed as PL&#x2F;SQL Gateway request
    Attempting to process as a RESTful Service
    Choosing: oracle.dbtools.rt.oauth.TokenHandler as current candidate with score: Score [handle=null, score=0, scope=SecurityConfig [constraint=secure, realm=OAUTH_CLIENT, logonConfig=NONE], originsAllowed=[], corsEnabled=true]
    Determining if request can be dispatched as a Tenanted RESTful Service
    Request path has one path segment, continuing processing
    No Tenant Principal established yet, continuing processing
    APEX_LISTENER pool exists, continuing processing
    No matching tenant found for: oauth2, cannot dispatch
    Chose oracle.dbtools.rt.oauth.TokenHandler as the final candidate with score: Score [handle=null, score=0, scope=SecurityConfig [constraint=secure, realm=OAUTH_CLIENT, logonConfig=NONE], originsAllowed=[], corsEnabled=true] for: POST oauth2&#x2F;token
    oauth2&#x2F;token authorized as: p6xycV-2QceFnFHkWyJlnA..
    </pre>
      </p>
      <p>
      <pre>WebException [statusCode=500]
      at oracle.dbtools.rt.web.WebException.webException(WebException.java:343)
      at oracle.dbtools.rt.web.WebException.internalError(WebException.java:262)
      at oracle.dbtools.rt.oauth.jdbc.JDBCOAuthDataAccess.createApproval(JDBCOAuthDataAccess.java:514)
      at oracle.dbtools.rt.oauth.jdbc.JDBCOAuthDataAccess.createApprovedRequest(JDBCOAuthDataAccess.java:181)
      at oracle.dbtools.rt.oauth.OAuthAuthorization.resourceOwnerCredentials(OAuthAuthorization.java:654)
      at oracle.dbtools.rt.oauth.OAuthAuthorization.tokenRequest(OAuthAuthorization.java:273)
      at oracle.dbtools.rt.oauth.TokenHandler.post(TokenHandler.java:44)
      at oracle.dbtools.rt.web.RequestHandler.response(RequestHandler.java:268)
      at oracle.dbtools.rt.web.RequestHandler.dispatch(RequestHandler.java:361)
      at oracle.dbtools.rt.web.RequestHandler.dispatch(RequestHandler.java:85)
      at oracle.dbtools.rt.web.RequestDispatchers.dispatch(RequestDispatchers.java:93)
      at oracle.dbtools.rt.web.ETags.checkPrecondition(ETags.java:93)
      at oracle.dbtools.rt.web.HttpEndpointBase.restfulServices(HttpEndpointBase.java:426)
      at oracle.dbtools.rt.web.HttpEndpointBase.service(HttpEndpointBase.java:164)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at com.sun.grizzly.http.servlet.ServletAdapter$FilterChainImpl.doFilter(ServletAdapter.java:1059)
      at com.sun.grizzly.http.servlet.ServletAdapter$FilterChainImpl.invokeFilterChain(ServletAdapter.java:999)
      at com.sun.grizzly.http.servlet.ServletAdapter.doService(ServletAdapter.java:434)
      at oracle.dbtools.standalone.SecureServletAdapter.doService(SecureServletAdapter.java:91)
      at com.sun.grizzly.http.servlet.ServletAdapter.service(ServletAdapter.java:379)
      at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:179)
      at com.sun.grizzly.tcp.http11.GrizzlyAdapterChain.service(GrizzlyAdapterChain.java:196)
      at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:179)
      at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:849)
      at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:746)
      at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1045)
      at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:228)
      at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)
      at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)
      at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)
      at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)
      at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)
      at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)
      at com.sun.grizzly.ContextTask.run(ContextTask.java:71)
      at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)
      at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)
      at java.lang.Thread.run(Unknown Source)
    Caused by: java.sql.SQLIntegrityConstraintViolationException: ORA-02291: integrity constraint (APEX_040200.WWV_FLOW_RT$APPROVALS_SGID_FK) violated - parent key not found
      at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:447)
      at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:396)
      at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:879)
      at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:505)
      at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:223)
      at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:531)
      at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:208)
      at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1046)
      at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1336)
      at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3612)
      at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3713)
      at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1378)
      at sun.reflect.GeneratedMethodAccessor28.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
      at java.lang.reflect.Method.invoke(Unknown Source)
      at oracle.ucp.jdbc.proxy.StatementProxyFactory.invoke(StatementProxyFactory.java:230)
      at oracle.ucp.jdbc.proxy.PreparedStatementProxyFactory.invoke(PreparedStatementProxyFactory.java:124)
      at com.sun.proxy.$Proxy44.execute(Unknown Source)
      at oracle.dbtools.common.jdbc.JDBCInsert.execute(JDBCInsert.java:58)
      at oracle.dbtools.rt.oauth.jdbc.JDBCOAuthDataAccess.createApproval(JDBCOAuthDataAccess.java:487)
      ... 34 more
    </pre>
      </p>
      </div>
      </div>
      </div>
      <div id="xFooterContainer">
      </div>
    </body>
    </html>
    I am assuming this must be part of the problem I am seeing this the Weblogic deployment in my original post.
    Does anyone have any suggestions on how best to tackle this?
    Regards,
    Derek

  • Data type 'Document' in Lifecycle Forms

    Hi all,
    i'd like to handle PDFs in Lifecycle ES. So I use data type 'Document' for input variable. To call my LC service I use once FLEX and JavaScript.
    Does anybody know how I can initiate my Lifecycle-PDF-variable of type 'Document' from FLEX (ActionScript) or JavaScript?
    I'm quite new to this topic, so please help me.
    Many thanks in advance!

    I would be very careful about changing any of the tables as it is probably not supported, I would discuss it with Oracle first to see what there view on it is.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Upgrade of Database with Oracle Change Data Capture

    Hello,
    We are upgrading and moving our database to a different server.
    The move is from 10G R1 database on Solaris to 11G R2 on Linux.
    Our database uses Oracle Change Data Capture.
    What is the best way to perform this migration? Unlike in the approach below, ideally, it would be without any manual steps to drop and recreate CDC subscriptions, change tables, etc.
    Thanks.
    Considerations for Exporting and Importing Change Data Capture Objects
    http://docs.oracle.com/cd/B13789_01/server.101/b10736/cdc.htm#i1027532
    Starting in Oracle Databse 10g, Oracle Data Pump is the supported export and import utility for Change Data Capture. Change Data Capture change sources, change sets, change tables, and subscriptions are exported and imported by the Oracle Data Pump expdp and impdp commands with the following restrictions:
    After a Data Pump full database import operation completes for a database containing AutoLog Change Data Capture objects, the following steps must be performed to restore these objects:
    1. The publisher must manually drop the change tables with the SQL DROP TABLE command. This is needed because the tables are imported without the accompanying Change Data Capture metadata.
    2. The publisher must re-create the AutoLog change sources, change sets, and change tables using the appropriate DBMS_CDC_PUBLISH procedures.
    3. Subscribers must re-create their subscriptions to the AutoLog change sets.

    Hello,
    I opened SR with Oracle Support, they are suggesting to perform full database import/export
    Change Data Capture change sources, change sets, change tables, and subscriptions are exported and imported by the Oracle Data Pump expdp and impdp commands with the following restrictions.
    Change Data Capture objects are exported and imported only as part of full database export and import operations (those in which the expdp and impdb commands specify the FULL=y parameter). Schema-level import and export operations include some underlying objects (for example, the table underlying a change table), but not the Change Data Capture metadata needed for change data capture to occur."
    CDC has different implementation methods:
    You may use the below query to determine-
    select SOURCE_NAME, SOURCE_DESCRIPTION, CREATED, SOURCE_TYPE, SOURCE_DATABASE, SOURCE_ENABLED from change_sources;
    – Synchronous CDC: with this implementation method you capture changes
    synchronously on the source database into change tables. This method uses
    internal database triggers to enable CDC. Capturing the change is part of the
    original transaction that introduces the change thus impacting the performance
    of the transaction.
    – Asynchronous Autolog CDC: this implementation method requires a staging
    database separate from the source database. Asynchronous Autolog CDC uses
    the database's redo transport services to transport redo log information from
    the source database to the staging database1. Changes are captured at the
    staging database. The impact to the source system is minimal, but there is some
    latency between the original transaction and the change being captured.
    As suggested in the document-
    Change Data Capture objects are exported and imported only as part of full database export and import operations (those in which the expdp and impdb commands specify the FULL=y parameter). Schema-level import and export
    operations include some underlying objects (for example, the table underlying a change table), but not the Change Data Capture metadata needed for change data capture to occur.
    ■ AutoLog change sources, change sets, and change tables are not supported.
    Starting in Oracle Database 10g, Oracle Data Pump is the supported export and import utility for Change Data Capture.
    Re-Creating AutoLog Change Data Capture Objects After an Import Operation
    http://docs.oracle.com/cd/B19306_01/server.102/b14223/cdc.htm#i1027532
    After a Data Pump full database import operation completes for a database containing AutoLog Change Data Capture objects, the following steps must be performed to restore these objects:
    a. The publisher must manually drop the database objects underlying AutoLog Change Data Capture objects.
    b. The publisher must re-create the AutoLog change sources, change sets, and change tables using the appropriate DBMS_CDC_PUBLISH procedures.
    c. Subscribers must re-create their subscriptions to the AutoLog change sets.

  • How to access (or configure) the web based Oracle Beehive workspaces client

    Hello,
    In the one of the Oracle Beehive online trial, there is a demo about working with workspaces using a web interface:
    https://beehive-ondemand.oracle.com/Documents.html
    I've been searching the documentation how can I access this web client on my installation, but I hadn't find the URL.
    I'm wondering if this web client is included in the 1.4 version, if so, how can I access it? Do I have to configure it or install it? How?
    Thanks for your help.
    Edited by: user3585264 on Oct 18, 2008 9:33 PM

    Hello
    this client is not provided with the 1.4.1., but it is expected with the next release (in a couple of month normally, that's what great weith beehive releases, every 2-3 month you get a lot of news !! )
    Stay tuned on MGMT - Kids, that's Oracle new anthem (or it should be :D, that song was everywhere during OOW, along with Time to Pretend)

  • Oracle Beehive Conferencing -- "Could not connect to the server"

    Hi,
    Customer can't connect to the Conference, while joining they get a error "Could not connect to the server". We tried "Oracle Beehive Conferencing" with at least 12 Customers only 2 were able to connect. All 10 Customer reported the same issue.
    Thank you,
    Pavan

    Ports 80/443 are open by default on all systems, 5224 is required by the Beehive Desktop conference client. If customer is trying to connect using Desktop client then they need to check if 5224 port is closed by any firewall running on the system.
    Following document got the compatible OS list and few screen shots
    http://my.oracle.com/site/pdit/BusinessOpsIT/Collab/CustomerAdvocacy/Support/UserTrainingGuides/BeehiveUTG/Conference/ConferenceWeb/index.html
    Thanks,
    Jereen

  • What's up with Oracle beehive?

    I have seen bugs, notes and documentation about Oracle Beehive at Metalink.
    An example, the Release 1 (Beta) Documentation at:
    http://www.oracle.com/technology/products/cs/beehive-betagroup-users/docs/welcome.html
    Some questions:
    Is this the evolution of OCS? or it would be another product?
    Will be easy to migrate from OCS to beehive?
    How to be a beta tester or have access to beta releases? I asc our comercial contact at Spain and get no answer.
    There is some Official date of beehive release 1 will be here?
    Thanks.

    Hi Thomas,
    Can I ask you to clarify "64-bit ready", especially if you have concerns? Certainly OCS ships on a number of 64-bit architectures (solaris sparc, hp-ux risc etc.) and was certified to run on 32b Linux OS on 64b (EM64T/AMD64) hardware - and I believe also certified to run in a 32b shell on 64b Linux on x64 hardware.
    As you are probably aware, the 10g line of application server (on which OCS was based) was not certified on x64 linux or x64 windows which was a big part of the lack of x64 certification of OCS.
    That said, I'm not sure whether the garbage collection times would have been acceptable on an oc4j with multi-gb heap sizes anyway so the 64b memory addressing may not have been particularly an advantage.
    Look forward to hearing your concerns & comments.
    regards,
    Richard

  • MBXA and layout document.

    Hi,
    I posted a question about what are related tables in trx MBXA.
    Tables are MSEG and MKPF.
    For a new layout document I can use the above tables.
    The problem are the fields contained in trx MBXA (buyer, transport information and sender).
    I can't find the tables where the above fields are stored.
    Is necessary for printing tell to abaper tables or in this case is also possible
    tell him what is the related structure (MXABK) and fields?
    Best regards

    You can find out the tables by doing the ST05 (SQL trace).
    1. Go to MBXA. input your data...
    2. Create one more session. Start ST05 in new session. Start the SQL trace for your user wtih help of the button "Trace on with filters)
    3. Come to first session, process the tranasaction. Reach the screen where you have these fields (buyer, transport information, sender)
    4. in 2nd sesssion stop the trace. Then press button List trace.
    5. Now you will have all the tables which were being hit by the transaction MBXA. Check out those tables.
    It is good if you provide the ABAP developer tables names, otherwise he has to do all the exercise. Because ultimalty we need the table names and the fields to find out where the actual data sits.
    Regards,
    Naimesh Patel

  • Setup Oracle Beehive Framework fail

    Framework Core Configuration fails with this message:
    [BEECTL] []
    [BEECTL] []
    [INFO   ] [2008-11-27 18:56:10] [BeehiveInstall::OncePerSiteUtils::seedBeehiveOncePerSite Line 365 ] [Seeding the enterprise ...]
    [INFO   ] [2008-11-27 18:56:10] [BeehiveInstall::Executor::executePlainCmdlineToolCmd Line 403 ] [Executing "/home/oracle/product/1.4.1.0.0/beeH/beehive/bin/beectl   add_enterprise --name "xxxxxx" --reentering  --activate_configuration true  --entity_format id --log_level FINE "]
    [BEECTL] []
    [BEECTL] [beectl command failed. See the log file for more details.]
    [BEECTL] []
    [BEECTL] [Error Code : BEES-06000]
    [BEECTL] [Cause : An unexpected internal error occurred.]
    [BEECTL] [Effect : The requested operation cannot be performed]
    [BEECTL] [Action : Contact system administrator.]
    [BEECTL] []
    [SEVERE ] [BeehiveInstall::Executor::executeAndReturnIDIfSuccess Line 148 ]
    [SEVERE ] [Start Message]
    [SEVERE ] [  beectl command execution failed. beectl command returned exit code : 1]
    [SEVERE ] [  1]
    [SEVERE ] [End Message]
    [INFO   ] [2008-11-27 18:56:19] [BeehiveInstall::Logger::closeLogger Line 622 ] [Closing the log file : /home/oracle/product/1.4.1.0.0/beeH/beehive/logs/config/BeehiveCoreConfiguration/11.27.2008/BeehiveCoreConfiguration_18_28_46.log]
    Lo strumento "Configurazione di base di Oracle Beehive Framework" ha resituito uno stato Non riuscito.
    Setup is made on a Linux Centos 5 X86_64 on Data Base 11G with relative Patch
    Thanks a lot for your cooperation and Best Regards.

    Good day,
    Thank you for your answer. I've checked the points where the installation of “OncePerSiteUtils.pm” file fails. It seems that it isn't able to pass in line 406, called from line 366. I tried to copy the parameters from “$beectl add_enterpris name “xxxxx”  reentering –activate_configuration true –entity_format id “ manually, but it always gives the same mistake “BEES-06000”, both for the opnmctl and
    beectl status from all “running” services (with the exception of ias-component “ASG” , wich is "down").
    I tried to install beekeeper even if the installation of beehive wasn't complete, and there were no problems: the whole setup occurred correctly (however, it is not possible to log in on http://server:7778 by using beeadmin with the chosen password).
    Server configurations:
    Server database Centos5 x86_64 + oracle enterprise server 11G 64Bit
    Server application (beehive) Centos5 x86_64
    I understand that centos is not supported, but I hope this is not the problem, since this is an evakuation test to purchase Enterprise Oracle Linux and Beehive licenses later on.
    If you need any further log or local server settings, please ask me.
    [BEECTL] []
    [INFO   ] [2008-11-27 18:56:10] [BeehiveInstall::OncePerSiteUtils::seedBeehiveOncePerSite Line 365 ] [Seeding the enterprise ...]
    [INFO   ] [2008-11-27 18:56:10] [BeehiveInstall::Executor::executePlainCmdlineToolCmd Line 403 ] [Executing "/home/oracle/product/1.4.1.0.0/beeH/beehive/bin/beectl   add_enterprise --name "XXXXXX" --reentering  --activate_configuration true  --e
    ntity_format id --log_level FINE "]
    [BEECTL] []
    [BEECTL] [beectl command failed. See the log file for more details.]
    [BEECTL] []
    [BEECTL] [Error Code : BEES-06000]
    [BEECTL] [Cause : An unexpected internal error occurred.]
    [BEECTL] [Effect : The requested operation cannot be performed]
    [BEECTL] [Action : Contact system administrator.]
    [BEECTL] []
    Kind Regards,
    Luca

  • Oracle Beehive collaboration software to be rolled into WebCenter

    Hi all.
    I have just read this note:
    http://searchoracle.techtarget.com/news/2240022942/Oracle-Beehive-collaboration-software-to-be-rolled-into-WebCenter
    Can anyone give comment?
    What is the near future Beehive?
    Thanks in advance.

    I can't comment on the accuracy of the article...
    Essentially, there was some re-packaging to allow more flexible purchasing, and some re-branding to mark the ongoing deeper integration work of Beehive and WebCenter so that customers owning both get a more tightly-integrated and seamless experience.
    For example, the conferencing part of Beehive can now be bought 'stand alone' and is known as [Oracle WebCenter Real-time Collaboration|http://www.oracle.com/us/products/middleware/user-interaction/real-time-collaboration/index.html] .
    Similarly, the Intelligent Collaboration features of Beehive can now be bought standalone, known as [Oracle WebCenter Intelligent Collaboration|http://www.oracle.com/us/products/middleware/user-interaction/intelligent-collaboration/index.html] .
    The email, calendar,contacts etc. part of Beehive is known as "Beehive Enterprise Messaging". And of course you can still buy licences of the Messaging+RTC+Team Collaboration (with documents, wikis, discussions etc. - the same packaging as previously available), now known as "Beehive Enterprise Collaboration".
    So really it's about providing more flexibility to customers that want to buy and use parts of Beehive rather than all of it, while also improving the WebCenter integration experience, without sacrificing the completeness of customers that value the entire Beehive offering.
    hope that helps,
    richard

  • Oracle Beehive 2.0.1 and 11.2.0.2 db

    Happy New Year....
    Has anyone succesfully installed Beehive 2.0.1.0 against a 64-bit 11.2.0.2 db running on OEL5U5?
    Beehive installation is on 32-bit OEL5U5 and runs very well until the Framework Configuration phase..
    ./beectl add_user_subscription_templates dir /opt/app/oracle/product/Middleware/Oracle_BHive/beehive/seed/uss reentering --log_level FINEST
    returns
    CsiException:oracle.csi.CsiIllegalNullArgumentException: stringId is null.:Class: ExceptionMetadataFactory
    ErrorCode: ErrorCode:[BEEU-02114,INFO,Subscription template creation encountered an error.]
    DB server:
    [oracle@xxxxxx ~]$ uname -a
    Linux xxxxxx 2.6.32-100.0.19.el5 #1 SMP Fri Sep 17 17:51:41 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE 11.2.0.2.0 Production
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    Beehive Server:
    [oracle@xxxxx ~]$ uname -a
    Linux xxxxx 2.6.18-194.el5PAE #1 SMP Mon Mar 29 20:19:03 EDT 2010 i686 i686 i386 GNU/Linux
    From Beehive Installation Guide Release 2 (2.0) for Linux x86 --http://download.oracle.com/docs/cd/E16671_01/bh.200/e16641/db_req.htm#BGBDHFDD
    General Requirements - Oracle Beehive requires an existing database with the following characteristics:
    Uses Oracle Database 11g Release 1 (11.1.0.7) Enterprise Edition or later,
    +
    Upgrading Oracle Database 11g Release 1 to Oracle Database 11g Release 2 - If you upgrade Oracle Database 11g Release 1 (11.1.0.7) to Oracle Database 11g Release 2 (11.2) after installing Oracle Beehive, follow these steps:
    Any help is appreciated.
    HKT

    Thanks.
    This is a fresh install of 2.0.1.0 on a separate 64-bit DB server and 32-bit Beehive server
    [oracle@xxxxxx ~]$ uname -a
    Linux xxxxxx 2.6.32-100.0.19.el5 #1 SMP Fri Sep 17 17:51:41 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE 11.2.0.2.0 Production
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    Beehive Server:
    [oracle@xxxxx ~]$ uname -a
    Linux xxxxx 2.6.18-194.el5PAE #1 SMP Mon Mar 29 20:19:03 EDT 2010 i686 i686 i386 GNU/Linux
    The nodename(S) xxxxx are masked.
    The 2.0.1.4 patch expects an existing Beehiveinstallation in the inventory...
    Edited by: 824771 on Dec 31, 2010 9:13 PM

  • How to embedded oracle report data in email body from forms?

    Hi,
    I am working on oracle forms and report 10g and i am new to this. I want to knw How to embedded oracle report data in email body ?
    Regards
    Shruti

    I have uploaded a sample . This might help
    http://www.alexyscorp.com/send_report_email.zip

  • By backing up the iTunes Library via saving the iTunes folder on an external drive, is it also backing up all iPad and iPhone backups as well as App Data and Documents from your devices?

    If I backup my iTunes Library by saving the iTunes folder on an external hard drive using the instructions contained in the link below, will it also back up all my iPad and iPhone backups as well as App Data and Documents from my devices? In other words, will it also create backups for the backups? Thank you.
    Back up your iTunes library by copying it to an external drive
    Furthermore, when it is time to restore the iTunes folder I copied to my external drive to a new iTunes program on my new computer, how will it merge the information once I plug in my iPad or iPhone to that new laptop to sync? If I did the iTunes library backup a couple months ago and I've added documents/music/pictures on my devices since then, what will happen when I try to sync it with the new laptop now working off of the iTunes library backup from a couple months ago since the information is no longer the same? Which information will dominate and thus be kept? Will it delete the new information/data/pictures/documents/music off of the devices since it is not on the iTunes program when it syncs?
    Sorry for so many questions, but they are all related to backing up and restoring iTunes. I am not very tech savvy if you cannot tell

    It would be a good idea to look into a bigger hard drive. They are not that expensive any more and can save a lot of headach. This is even more important if you are buying music from the iTunes music store. If you lost those files they are gone.
    The point of having it on your PC and iPod is to have a backup. If the iPod fails, or you need to go back to the DVDs and find they are scratched, or just can not be read you have lost days of work converting and organizing all of those songs.
    Or the iPod could hard drive could fail and then you will have to try to bring all of those files back from DVDs. You end up with a mess since some songs will probably be on multiple DVDs, have different names ect. Trying to reorganize it all can be a pain.

  • Error when install Oracle Beehive on Windows

    Hi All,
    I try to install and configure Oracle Beehive 1.2.2 on Win Server 2003 EE sp1 against Oracle 10.2.0.4 DB. The installation was succeed, but the configurations were failed in preparation phase.
    This is the error message:
    Launching tool "Oracle Beehive Product Preparation"
    Invocation timestamp: 8:33:08 AM
    Executing command: oracle.ocs.install.plugins.product.main.ClonePlugin ${enc_old_admin_passwd} ${enc_admin_passwd} ${obf_db_admin_passwd} D:\oracle\beehive 7780 6103 6203 6006 false Beehive_home_1 SeatechINS sys 192.168.1.6 1522 ito /var/opt/oracle/oraInst.loc
    1 file(s) copied.
    1 file(s) copied.
    Tool "Oracle Beehive Product Preparation" returned Failed status.
    =============================================================
    Please help me on this.
    Thanks and Regards,
    Phong

    Hi,
    I would not to give the impression to make a standart answer but 10.2.0.4 is not yet certified to be used with Beehive. - Only 10.2.0.3 - Even is alot of patch we have to install on top of the 10.2.0.3 are included on 10.2.0.4 all are not there.
    As well when you specified your password
    - for the db you need at least one number
    - for Beehive Beedadmin account you need at least on uppercase character and one number
    Hope that help,
    Frederic Daurelle

Maybe you are looking for