Single repository of data base Oracle in support of SOA and IOM is possible

Hi, I would like to install and configure SOA and IOM and would like to know if I can use a database as the repository in support of SOA Suite install and IOM?

Is it safe to install SOA Suite 11 g and OIM 11 g on the same server with all its components in a development environment? It's only for the development environment. Thank you

Hello
According to me, you can do it with a single Oracle database, check the links below:

http://ofmwsoa11g.blogspot.com/p/OIM-OAM-LDAP-OID-dip-OVD-OIF-SSO.html
http://onlineappsdba.com/index.php/2010/08/05/oracleidm-11g-step-by-installation-of-OAM-OIM-oaam-oapm-oin-111130-part-i-load-schema/

Best regards

Rafi.

Tags: Fusion Middleware

Similar Questions

  • Preparation of the data base Oracle EPM 11.1.2 before deployment

    Hello Experts!

    I'm starting to deploy Hyperion EPM 11.1.2 for the first time, so I'm new to it and I know Oracle database very slightly. I want to deploy the following components on 1 computer with Windows Server 2008 64-bit:
    -Shared Services and workspace
    -Services directors
    -Essbase
    -Planning
    -EPMA
    -HFM
    -FDM
    -Reporting and analysis

    So Far I have created 2 11.2.0 Oracle database 64-bit with the UTF-8 encoding: 1) for FDM, 2) for all other Hyperion products. I'm not going to tables EPMA user interface.
    * Are 2 databases in this case sufficient or should I create databases more? *

    "EMP Installation starts here" pdf document also provides the Oracle database, sizing of the guidelines on page 55:
    + "Shared Services & workspace: start with 100 MB +"
    + EPMA: Oracle recommends to start at least 250 MB +.
    + etc... » +
    East - tablespaces that I need to create these guidelines?

    Thank you very much!

    Is that this will just be a personal installation or a development environment, if tablespaces are just an indication, if it's a dev, you could have a tablespace used by all products, just make sure that it autoextends, if there is something more, then usually would create you separate tablespaces especially for HFM and FDM.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Photos - photos of iCloud - several users share data bases

    Hi hoping someone can point me in the right direction here as it is driving me crazy!

    New Mac mini, OS X and photos app.

    Basically, I want to share a unique data base of Photos between two users on the same Mac accounts. Have followed all the advice online, I'm always running into difficulty. I put the database on an external SSD with permissions in place for any user access to the base (but only one at a time of course).

    All very well so far, but here comes the question. I want pictures of iCloud enabled on one of the accounts with complete download of all pictures to iCloud, when I get out of the photos, the photolibraryd process remains active. This means that when I change the account and you are trying to access the photos, I can't because photoslibraryd in the other account is accessed again. To work around this I started to enter photoslibraryd monitor and the murder of activity as well as the Photos itself before you log in to the second account and to access the Photos. This seems to work (but is a bit of a pain if I forgot!) - which is a lot more pain, it's that if I add some photos in the second account and then go back to the first, rather than synchronize the new photos with iCloud, product photos across the entire library 20,0000 resynchronization photo! It's bad!

    I have approached the wrong way? Is there a better way to achieve what I want - that is entirely database of shared photos between two users on the same Mac (with photo stream enabled on both accounts for these devices which have not iCloud photo activated) and iCloud photo enabled on one of the Mac accounts - without killing the process or any what fees General massive sync?

    Grateful for any help.

    Thank you very much

    Rich.

    It is not possible to share a library of photos between several users, if the library in question is your system library. If you cannot share the library used as the iCloud photo library with others.  If you want to share photos with others, use a separate library of Photos to share and transfer photos from there to your iCloud library.

    I found this in the documentation for PowerPhotos:

    : https://www.fatcatsoftware.com/powerphotos/Help/sharing%20a%20library%20between% 20multiple%20user%20accounts%20on%20one%20mac.html

    Share a library between several user accounts on a Mac

    Photos is not designed with use multi-user in mind, which makes it very difficult to create a configuration where only one library of Photos are accessed through accounts on your Mac. If you want to share a library in this way, the following restrictions will be applied (for the bottom of discussion, we have two users named A and B we want to share a library):

    1. Account that a single user can never open a library given in Photos at the same time. Before you can use the shared library as long as the user has, make sure to leave Photos as user B.
    2. None of the user accounts that access the library may designate as their "library system". The library system is actually open at any time by OS X in the background, as long as that user is connected, even while quitting smoking pictures not free the library so that another user can open. You must designate another library system library, or completely close the session user B before trying to access the library as user A. Note that this also prevents having this synchronization of library with iCloud.
    3. The library cannot be stored on your internal drive or any other drive where the permissions are respected. Fighting against the permissions on OS X is a losing battle. While you can play whack-a-mole to try to correct the permissions on the library before you open it, then something goes wrong and it is likely that you will be unable to access a part of your library. You should keep the library on an external drive and in the read window information in the Finder, make sure the checkbox "Ignore permissions on this volume" is checked.

    Re: How to share your photo on the same Mac without iCloud library

  • Cannot access another data base "ROWTYPE.

    Hi all, I am using SQLDeveloper 3.2.20 on Oracle 11 g 2 and teacher of Windows 7 sp1 and so far, smooth sailing.

    I use the SCOTT/tiger account i.e. access, certainly no role sysdba privileges.

    I'm practicing my codes and the use of explicit cursors generate following errors:

    Error report:

    ORA-06550: line 5, column 17:

    PLS-00352: cannot access another data base "ROWTYPE.

    ORA-06550: line 5, column 17:

    PLS-00201: identifier 'EMP_CURSOR@ROWTYPE' must be declared.

    This is the code (I tried orcl.scott.emp_cursor@ROWTYPE, but which no longer works)

    Set serveroutput on;

    DECLARE

    CURSOR emp_cursor IS

    SELECT EmpNo, ename

    FROM scott.emp;

    v_emp_record emp_cursor@ROWTYPE;  -don't even try the 1 by 1

    number of v_sqlcode;

    v_errm varchar2 (64);

    BEGIN

    IF NOT emp_cursor % ISOPEN THEN - EXTRACTION lines only when the cursor is opened!

    OPEN emp_cursor;

    END IF;

    LOOP

    LOOK INTO v_emp_record emp_cursor; -Gets the 1st row of cursor!

    OUTPUT WHEN emp_cursor % NOTFOUND or emp_cursor % NOTFOUND IS NULL; -in case no line

    INSERT INTO (empid, empname) tmp_list - inserts in a temporary list

    VALUES (v_emp_record.empno, v_emp_record.ename);

    END LOOP;

    COMMIT;

    NARROW Emp_cursor;

    EXCEPTION

    while others then

    v_sqlcode: = SQLCODE;

    v_errm: = SUBSTR (SQLERRM, 1, 64);

    DBMS_OUTPUT. Put_line ('SQL' | v_sqlcode |) '  ' || v_errm);

    END;

    /

    I begin to suspect that it is something 'access privilege '.

    Can someone point me in the right direction please?

    Hello

    Leila says:

    Ahhh, I see where I went wrong, Oracle' a global temporary table is not the same as the temporary table in SQLServer, I first need to create the temporary table, then drop it then.

    Remove the table only if you expect never to use again.  Otherwise, let it stay there.

    "Global temporary table" is a misleading name in Oracle.  The table itself is permanent, but the data in the table are temporary.  The data is deleted automatically at the end of the transaction or session, depending on whether the table has been created with ON COMMIT DELETE ROWS or ON COMMIT PRESERVE ROWS.

    Problem is, there is no data in the temporary table after executing the PL/SQL block although DBMS_OUTPUT displays data from test loading one!

    The default value for global temporary Tables is ON COMMIT DELETE ROWS, which means that the table is cleared whenever you make a COMMIT to auotmatically.

    You probably want ON COMMIT PRESERVE ROWS, like this:

    CREATE a table temporary global tmp_list (NUMBER, tmp_empno tmp_ename. VARCHAR2 (10)) ON the COMMIT PRESERVE ROWS;

  • Load Essbase data in Oracle

    When you try to load data from Essbase to Oracle using ODI database and after http://john-goodwin.blogspot.com/2008/12/odi-series-extracting-data-from-essbase.html I wrote my Script to report and put his way in LKM (Hyperion Essbase DATA SQL) options Extraction_Query_Type = ReportScript and Extraction_Query_File = ReportScriptFileName (on the server without extension)

    I don't know why in the Interface when right-clicking on the Essbase Source and select data throw an exception java.lang.IllegalArgumentException: url can not be empty

    Thank you

    You just right-click on essbase technology and display data, it is not supported for this technology.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Continuity of data bases...

    I'd appreciate an Oracle DBA support for the application area of a piece of audit work to tender around business continuity of a database/oracle environment (managed and supported by an independent provider of 3rd). We had several 'security' checks/assessments of this oracle database and its environment, i.e. the infrastructure on which the database is installed/used and the web front end application. But I just think that it's only half the coverage of Obligatoirelorsque it comes down to risk, there is still operational issues namely, we call this 'business continuity' practices and controls.

    Can anyone help to provide a range of things to include in a business continuity of an Oracle DBA/database provider type checking? Even if its just top-level ball indicates that I can't search far it will help. If you already have a before - you have a scope of work, if you have ever had such an assessment/audit of your own practices for oracle environments busienss continuity that you manage and support, which was included in the analysis?

    It doesn't make much sense to talk about business continuity at a database level - needs to be addressed at a level of service. Failure of the database is only one of many things that could affect the availability of the service.
    But in general you should think about the following

    -What constitutes a loss of service? That is to say what is the trigger point to call your business continuity plans? You can have several levels of this complete failure, loss of functionality, loss of access based on the group/access channel geographical domain/user, each with different plans
    -Who takes the decision to invoke the plan/plan climbing routes bits IE?
    -Come with a plan for the various scenarios, not just technical (it is often the easy forest) - things like
    -Communication - how you leave the team citing the plan, and users know? Keep in mind that the problem may be with a network, etc. Everyone has access to the regime, even if computer systems are declining?
    -Training
    -Physical considerations. Do you need a new server room? A place to work?
    -Financial. What will be the financial impact? Can you get funds to pay staff, kit, accommodation etc. If necessary?
    -Test. Plans should be tested. Can be difficult to sell to the leadership to really take your systems, but it is often the only way. And this time you know that you can easily turn things back on!
    -Afterwards. Need to do any processing after the event? For example, one of my systems in the event of loss of an area node, the plan is to return to the record paper and communicate with the other offices for any urgent searches etc.. This backfill data into the system once it is available. You must provide the amount of the resources for this.

    You can come up with hundreds of different scenarios if get you carried away. You will never be able to plan for them all, then choose the most likely. In any case, it should be a process in constant evolution. For example, we had to add strategies around the avian flu (both a real pandemic scenario and more likely that the office is closed) a year or 2 ago.

    Carl

  • Data Base Transaction is blocked...

    We have problems with the Production SAP events.

    Database Time out exceptions are thrown in the newspapers:



    Here's the exception:

    [23/10/10 16:26:34:490 EDT] 00000053 SystemOut O DEBUG, October 23, 2010 16:26:34, 489, [XELLERATE. SERVER], class/method: tcDataBase/eventPreInsert entered.
    [23/10/10 16:26:34:490 EDT] 00000053 SystemOut O DEBUG, October 23, 2010 16:26:34, 490, [XELLERATE. SERVER], class/method: tcDataBase/tcDataBase to the left.
    [23/10/10 16:26:34:499 EDT] 00000053 SystemOut O DEBUG, October 23, 2010 16:26:34, 499, [XELLERATE. SERVER], class/method: tcDataBase/readPartialStatement entered.
    [23/10/10 16:26:34:499 EDT] SystemOut O INFO 00000053, October 23, 2010 16:26:34, 499, [XELLERATE. DATABASE], DB read: select * NCE where rce_key = 446949
    [23/10/10 16:26:34:500 EDT] 00000053 SystemOut O DEBUG, October 23, 2010 16:26:34, 500, [XELLERATE. Select DATABASE], * NCE where rce_key = 446949
    [23/10/10 16:26:34:510 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 510, [XELLERATE. SERVER], class/method: tcRCE/reapplyRules entered.
    [23/10/10 16:26:34:510 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 510, [XELLERATE. DATA base], select usr_key from usr where USR_LOGIN =? and USR_STATUS! = "Deleted".
    [23/10/10 16:26:34:512 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 512, [XELLERATE. SERVER], class/method: tcDataBase/readPartialStatement entered.
    [23/10/10 16:26:34:512 EDT] SystemOut O INFO 00000052, October 23, 2010 16:26:34, 512, [XELLERATE. DATABASE], DB read: select rce_key, orc_key, rcp_rowver rcp where rce_key = 446949
    [23/10/10 16:26:34:513 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 513, [XELLERATE. DATA base], select rce_key, orc_key, rcp_rowver rcp where rce_key = 446949
    [23/10/10 16:26:34:514 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 514, [XELLERATE. SERVER], class/method: tcDataBase/readPartialStatement entered.
    [23/10/10 16:26:34:514 EDT] SystemOut O INFO 00000052, October 23, 2010 16:26:34, 514, [XELLERATE. DATABASE], DB read: select rce_key, usr_key, rcu_rowver of the rcu where rce_key = 446949
    [23/10/10 16:26:34:514 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 514, [XELLERATE. DATA base], select rce_key, usr_key, rcu_rowver of the rcu where rce_key = 446949
    [23/10/10 16:26:34:516 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 516, [XELLERATE. SERVER], class/method: tcDataObj/record is entered.
    [23/10/10 16:26:34:516 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 516, [XELLERATE. SERVER], class/method: tcDataObj/updated came.
    [23/10/10 16:26:34:516 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 516, [XELLERATE. SERVER], class/method: tcRCE/eventPreUpdate entered.
    [23/10/10 16:26:34:516 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 516, [XELLERATE. SERVER], class/method: tcRCE/checkClosed entered.
    [23/10/10 16:26:34:517 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 517, [XELLERATE. SERVER], class/method: tcRCE/checkClosed to the left.
    [23/10/10 16:26:34:517 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 517, [XELLERATE. SERVER], class/method: tcRCE/setActionPerStatus entered.
    [23/10/10 16:26:34:517 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 517, [XELLERATE. SERVER], class/method: tcRCE/setActionPerStatus to the left.
    [23/10/10 16:26:34:517 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 517, [XELLERATE. SERVER], class/method: tcRCE/checkAssignees entered.
    [23/10/10 16:26:34:517 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 517, [XELLERATE. SERVER], class/method: tcRCE/checkAssignees to the left.
    [23/10/10 16:26:34:517 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 517, [XELLERATE. SERVER], class/method: tcDataBase/readPartialStatement entered.
    [23/10/10 16:26:34:517 EDT] SystemOut O INFO 00000052, October 23, 2010 16:26:34, 517, [XELLERATE. DATABASE], DB read: select evt.evt_key, evt.evt_name, dob dob evt.evt_package, evt evt and dvt dvt where dob.dob_key = dvt.dob_key and dvt.evt_key = evt.evt_key and (dob.dob_name = 'com.thortech.xl.dataobj.tcRCE' or dob.dob_name = dob.dob_name = 'com.thortech.xl.dataobj.tcDataObj' or 'com.thortech.xl.dataobj.tcTableDataObj') and dvt.dvt_pre_update_sequence > 0 stopped by dvt.dvt_pre_update_sequence
    [23/10/10 16:26:34:517 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 517, [XELLERATE. DATABASE], select evt.evt_key, evt.evt_name, evt.evt_package dob dob, evt evt, dvt dvt where dob.dob_key = dvt.dob_key and dvt.evt_key = evt.evt_key and (dob.dob_name = 'com.thortech.xl.dataobj.tcRCE' or dob.dob_name = dob.dob_name = 'com.thortech.xl.dataobj.tcDataObj' or 'com.thortech.xl.dataobj.tcTableDataObj') and dvt.dvt_pre_update_sequence > 0 by dvt.dvt_pre_update_sequence order
    [23/10/10 16:26:34:521 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 521, [XELLERATE. SERVER], class/method: tcRCE/eventPreUpdate to the left.
    [23/10/10 16:26:34:521 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 521, [XELLERATE. SERVER], class/method: tcDataSet/hasUpdatedColumns entered.
    [23/10/10 16:26:34:521 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 521, [XELLERATE. SERVER], class/method: entered tcTableDataObj:getAllowedOperation.
    [23/10/10 16:26:34:521 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 521, [XELLERATE. SERVER], class/method: tcTableDataObj:getAllowedOperation - data: mstableName - value: NCE
    [23/10/10 16:26:34:522 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 522, [XELLERATE. SERVER], class/method: tcTableDataObj:getAllowedOperation: another entry.
    [23/10/10 16:26:34:522 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 522, [XELLERATE. SERVER], class/method: tcTableDataObj:getAllowedOperation:if entered moData.isNull.
    [23/10/10 16:26:34:522 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 522, [XELLERATE. SERVER], class/method: entered tcTableDataObj:preWrite.
    [23/10/10 16:26:34:522 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 522, [XELLERATE. SERVER], class/method: tcTableDataObj:preWrite left.
    [23/10/10 16:26:34:522 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 522, [XELLERATE. SERVER], class/method: entered tcTableDataObj:getPreparedStatementForUpdate.
    [23/10/10 16:26:34:522 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 522, [XELLERATE. SERVER], class/method: entered tcTableDataObj:getWhere.
    [23/10/10 16:26:34:522 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 522, [XELLERATE. SERVER], class/method: tcTableDataObj:getWhere - data: psKeyName - value: rce_key
    [23/10/10 16:26:34:522 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 522, [XELLERATE. SERVER], class/method: tcTableDataObj:getWhere - data: msKeyValue - value: 446949
    [23/10/10 16:26:34:522 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 522, [XELLERATE. SERVER], class/method: tcTableDataObj:getWhere left.
    [23/10/10 16:26:34:522 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 522, [XELLERATE. SERVER], class/method: tcTableDataObj:getPreparedStatementForUpdate left.
    [23/10/10 16:26:34:523 EDT] 00000052 SystemOut O DEBUG, October 23, 2010 16:26:34, 523, [XELLERATE. DATABASE], NCE update set RCE_STATUS =?, RCE_LAST_ACTION =?, RCE_UPDATE =?, RCE_rowver =? where rce_key = 475759and RCE_rowver = HEXTORAW('0000000000000000')
    [23/10/10 16:27:34:534 EDT] SystemOut O ERROR 00000052, October 23, 2010 16:27:34, 533, [XELLERATE. DATABASE], class/method: tcDataBase/writeStatement some problems: ORA-02049: timeout: distributed transaction waiting for lock

    java.sql.SQLException: ORA-02049: timeout: distributed transaction waiting for lock
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:745)

    Appreciate any help!



    Thank you
    IOM want to Be

    Published by: OimWannaBe on October 29, 2010 12:31

    I agree with what Martin said more sense...

    Also to check this on metalink

    ORA-02049 Timeout: Distributed Transaction waiting for lock during the creation of the user or the change. [466568.1 ID]

    Thank you
    Suren

  • The search for meaning please - is a data base, the right choice?

    I want to break a problem I have today confronted for centuries and hope someone can point me to a good way around it, so I can do more research and learn the technology required.

    The problem is this: sometimes we are asked to create a website which should include items in stock for example.

    category, name, description, price, image (s)

    We design our websites without the use of templates or software CMS, we simply create an inclusion of some sort and have the stock displayed in a tabular layout based on a data store that is held in the simplest possible.

    This isn't an online store - no purchase is possible through cards of credit/paypal etc...
    It is not necessary at this stage for a search
    The data is not sensitive.

    For example: a caravan dealer listing their caravans

    What should I learn? MySQL / cms / xml which is the best way to achieve this?

    All suggestions help resources would be most appreciated
    Thank you for your time.

    [email protected] wrote:
    > Thanks that was on site.
    >
    > I have now managed to create a link to a mysql database and have
    > created a region repeated around the data base.
    >
    > Could you please clarify something, I found hard to believe?
    >
    > Dreamweaver can't display natively (jpg) images in a BLOB field.
    > It shows just rubbish?
    >
    > I have instead created a VARTEXT and written in /images/picname.jpg instead
    > which seems ok, but a bit slow.
    >
    > Not there at - it no work around / etc plugin that can work around this limitation?

    It is common to only store the name of the image file in the database,
    then fill the image on the page of polarity tag dynamically
    path and name of the file.

    Using a blob is possible, but there is no native in Dreamweaver, or
    all of the extensions I know who allow it.

    The best way to do it is to have a separate page that receives an ID.
    then export the blob in a binary stream.

    Then, you use something like this:

    As long as the blobtoimage.php sends the binary stream with the
    correct mime type, then it will work very well.

    If you do so, split your table with the blobs of your hand
    data, you will get performance better that way.

    Dooza
    --
    Display guidelines
    http://www.Adobe.com/support/forums/guidelines.html
    How to ask Smart Questions
    http://www.CatB.org/ESR/FAQs/smart-questions.html

  • ADF is intended for the data base designed with vertical diagram?

    Hello

    I want to know if ADF 11 g is intended for the data base designed with vertical scheme where even the names of columns will be stored in a generic table?

    Thanks in advance.

    Published by: user8925296 on April 12, 2010 10:06

    The short answer is no...

    What do you call a 'vertical plan', it's what others have called for a schema of entity-attribute-value or universal data model. I advise you to do some research open minded on these types of patterns if you develop an application before continuing. Great sound in practice, they have very inherent ease of use and scalability problems. [url http://asktom.oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:2314483800346542969] This could be a good starting point...

    John

  • SOS! -Error to load data from Oracle 11 g to Essbase using ODI

    Hi all.

    I want to load data from oracle database to essbase using ODI.
    I have set up correctly the Hyperion essbase physical and logical topology manager and got the structure ESSBASE BASIC app DEMO.
    The problem is.
    1. when I try see data right click on the table of essbase.
    va.sql.SQLException: driver must be specified
    at com.sunopsis.sql.SnpsConnection.a (SnpsConnection.java)
    at com.sunopsis.sql.SnpsConnection.testConnection (SnpsConnection.java)
    at com.sunopsis.sql.SnpsConnection.testConnection (SnpsConnection.java)
    at com.sunopsis.graphical.frame.b.jc.bE (jc.java)
    at com.sunopsis.graphical.frame.bo.bA (bo.java)
    at com.sunopsis.graphical.frame.b.ja.dl (ja.java)
    to com.sunopsis.graphical.frame.b.ja. < init > (ja.java)
    to com.sunopsis.graphical.frame.b.jc. < init > (jc.java)
    I got the answer of partisan Oracle it's ok, just omit it. The second problem will appear.
    2 create an interface between the oracle and essbase database, click on the option ' staging of deffirent from the area of the "(ce qui signifie que la mise en scène est créé à la base de données oracle) target, and using IKM SQL for Hyperion Essbase (metadata), run this interface".

    org.apache.bsf.BSFException: exception of Jython:
    Traceback (innermost last):
    "< String >" file, line 61, in there?
    com.hyperion.odi.essbase.ODIEssbaseException: invalid value specified [RULES_FILE] for the load option [null]

    at com.hyperion.odi.essbase.ODIEssbaseMetaWriter.validateLoadOptions (unknown Source)

    at com.hyperion.odi.essbase.AbstractEssbaseWriter.beginLoad (unknown Source)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    at org.python.core.PyReflectedFunction.__call__ (PyReflectedFunction.java)

    at org.python.core.PyMethod.__call__ (PyMethod.java)

    at org.python.core.PyObject.__call__ (PyObject.java)

    at org.python.core.PyInstance.invoke (PyInstance.java)

    to org.python.pycode._pyx1.f$ 0 (< string >: 61)

    to org.python.pycode._pyx1.call_function (< string >)

    at org.python.core.PyTableCode.call (PyTableCode.java)

    at org.python.core.PyCode.call (PyCode.java)

    at org.python.core.Py.runCode (Py.java)

    at org.python.core.Py.exec (Py.java)



    I am very confused by it. Someone give me a solution or other docs.

    Ethan.

    Hello

    You say that you are loading, but you chose the KM for the loading of metadata?
    If you load metadata then you must provide a rules file, if you are loading and then choose the KM - IKM SQL for Hyperion Essbase (DATA)

    Ok?

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Importing bulk data into Oracle - with restrictions

    Hello

    I am trying to insert data from a stream (inside the ETL tool) of bulk in Oracle via a stored procedure, but under many restrictions. Hope you can help.

    Oracle 10 g database is.

    There is up to 1 000 000 records of about 100 bytes each, through delivery, to about 200 000 000 per day.

    Target table:

    CREATE TABLE TBL_STG
    ("KEY", NUMBER (13.0),)
    "ATT_1" NUMBER (1.0).
    NUMBER (14.0) "TIMESTAMP."
    "ATT_2" NUMBER (14.0).
    "ATT_3" NUMBER (14.0).
    "ATT_4" NUMBER (2.0).
    "ATT_5" NUMBER (1.0)
    )

    I can easily convert the stream of input documents in a collection (list separated by commas, for example) with the ETL tool that I use. I then call the stored procedure with the collection of records (delimiter: comma) as one of the parameters.

    The problem is that I am using the ETL tool in slightly modified middle (emulation of continuous treatment) which greatly limits my possibilities to load data into Oracle.

    Basically, I can't use utilities (for example, SQL * Loader), except when writing to disk first! Neither the tool provided support for the api.

    I'm now calling a stored procedure with a collection set however it gives the problem types are NOT taken in charge the following data:

    Nested table, VARRAY/ANYTYPE: gives an error of type 108 unknown column
    index - by table (old style): unknown col.tp. 152
    Clob/NCLOB: unkn.col.tp 112
    BLOB: 113

    All I have left is the stored procedure:

    LONG BELIEVED, GROSS, LONG.

    These data types are not recommended, but at least still supported by 10g.

    So where did that my question, in these circumstances, could you provide me with assistance towards passing the RAW collection /... and interpreting it as a digital table in Oracle. Your help is greatly appreciated.

    Thank you

    (deleted - double post)

    Edited by: nthomas on January 6, 2009 14:43

  • What is the date of end of support for Firefox version 19?

    I wish to confirm the date of end of support for version 19, February 2013?

    Security updates support ends when the next version of Firefox is released, so while Firefox 20 was released 6 weeks ago and 21 Firefox will be available Tuesday, May 14, that means that Firefox 19 is is no longer officially supported.

    I see that you are still running Firefox 17.

    Is there a special reason why you don't have not updated to the current version?

    The version of Firefox Firefox 17 that you are currently running is no longer compatible with security updates

    Please upgrade to the latest version of Firefox 20.0.x.

    • Help > about Firefox
  • The vi below opens a new data file every time new data of the visa arrived. I only want a single file of data for registration period!

    The vi below opens a new data file every time new data of the visa arrived. I only want a single file of data for registration period!

    Can someone bring me (Labview is new to me) in the right direction?

    John

    See attached the amendment. I made a change to my suggestions and possess the top-level VI for the null refnum. See if it makes sense.

  • Empfehlung Lanzeitmessung data base: database (SQL) vs PDM

    Hello

    As eine Projekt eine Software fur einen Teststand schreiben soll ICH. Are IM trains its ist geplant, eine für die Testobjekte anzulegen data base, da sharp several stations durchlaufen, die ich im following darstelle kurz:

    Recovering of the Testobjekts (LabVIEW automatisiert mit Herstellungsparametern: Dicke, big, material)

    Langzeittest'm Teststand (running > 365Tage Speichern von kalkulierten werden, the Test setting: Dauer, frequency, Kraft etc..)

    Weitere Test am Teststand (parameter, Messwerte etc.)

    Elastizitatstest (ein weitere Teststand auf LabVIEW-based, the Test setting: Kraft, Speichern der Messwerte, Auslenkung etc.)

    General weitere Tests (noch nicht genauer known)

    Jetzt war meine erste Uberlegung, die jedes als TDMS zu speichern und sharp Test Messdatein in einer zu left data base.

    Dabei ist mir aufgefallen, dass are probably sinnvoller alles in den TDMS-Datein zu organisieren und zu speichern.

    Wie euer vorschlag das Ganze aufzuziehen ware? Meine Uberlegung ist:

    I Testobjekt a TDMS file (Kanalgruppe defect den Tests, sind die gemessenen channels / berechneten values)

    ICH kann die values von Testobjekten bei diesem Aufbau thank friendly/einfach um mit dem DataFinder/tiara?

    Viele Dank as eure Hilfe!

    If you have the choice, ALWAYS choose the database. It will give you the greater security and application/platform independence.

    Mike...

  • can xp support a flow rate of 50 MB/s - is there a limit to the speed of data transfer, it can support?

    can xp support a flow rate of 50 MB/s - is there a limit to the speed of data transfer, it can support?

    I have a 50 MB/s via fiber optic connection and it works fine under XP.

    Steve

Maybe you are looking for