FDM Hyperion - Purging database

We currently have 2 databases SQL to FDM and we noticed one of the databases is growing quite rapidly. Is there a way to purge data in this database? He is currently at more than 100 concerts in volume.

First thing first...

Know what hold of your data tables. :-) (And it of just not in the database, be sure to read to the bottom...)

If it comes to SQL Server, the following query returns a list of tables to sort descending according to the reserved size...
----------

create table #Temp (
        name nvarchar(128),
        [rows] char(11),
        reserved varchar(18),
        data varchar(18),
        index_size varchar(18),
        unused varchar(18)
        )  

insert into #Temp     exec sp_msforeachtable 'sp_spaceused ''?'''  

select * from #Temp order by cast(replace(reserved,' kb','') as int) desc 

----------------------------
If it comes to Oracle, the following should work.

NOTE: I've not tested this. I do not use Oracle DB and I used Google on this one...

COLUMN TABLE_NAME FORMAT A32
COLUMN OBJECT_NAME FORMAT A32
COLUMN OWNER FORMAT A10  

SELECT
     owner, table_name, TRUNC(sum(bytes)/1024/1024) Meg
FROM
     (SELECT segment_name table_name, owner, bytes
        FROM dba_segments
        WHERE segment_type = 'TABLE'
       UNION ALL
      SELECT i.table_name, i.owner, s.bytes
       FROM dba_indexes i, dba_segments s
       WHERE s.segment_name = i.index_name  AND   s.owner = i.owner  AND   s.segment_type = 'INDEX'
       UNION ALL
      SELECT l.table_name, l.owner, s.bytes
        FROM dba_lobs l, dba_segments s
        WHERE s.segment_name = l.segment_name  AND   s.owner = l.owner  AND   s.segment_type = 'LOBSEGMENT'
       UNION ALL
      SELECT l.table_name, l.owner, s.bytes
        FROM dba_lobs l, dba_segments s
        WHERE s.segment_name = l.index_name  AND   s.owner = l.owner  AND   s.segment_type = 'LOBINDEX')
        WHERE owner in UPPER('&owner')
      GROUP BY table_name, owner
      HAVING SUM(bytes)/1024/1024 > 10  /* Ignore really small tables */
      ORDER BY SUM(bytes) desc
 ;

---------

Looking at an older version of a production application, I see the following distribution, although I can't say that all apps follow the same type of movement...
(NOTE: I removed all the tables by using less than 1 MB of storage.)
NOTE 2: It is System 9 and to use only some of the fields UD; Therefore, your mileage may vary on the structure of storage in this regard)

name     rows     reserved     data     index_size     unused
tDataSeg3     279937          275184 KB     246952 KB     20592 KB     7640 KB
tLogActivity     685657          209888 KB     197192 KB     8432 KB     4264 KB
tDataSeg11     182200          193904 KB     175048 KB     13608 KB     5248 KB
tDataMapSeg26     481254          175992 KB     170112 KB     680 KB     5200 KB
tDataSeg14     178079          170992 KB     152416 KB     13320 KB     5256 KB
tDataMapSeg3     481556          154008 KB     146888 KB     544 KB     6576 KB
tDataMap     195123          151904 KB     61568 KB     64472 KB     25864 KB
tDataSeg7     151501          143856 KB     127936 KB     11168 KB     4752 KB
tDataMapSeg16     312707          105328 KB     98808 KB     384 KB     6136 KB
tDataSeg26     89242           101232 KB     89968 KB     7128 KB     4136 KB
tDataMapSeg11     273304          98912 KB     94208 KB     376 KB     4328 KB
tDataSeg32     91495           93104 KB     82616 KB     7176 KB     3312 KB
tDataMapSeg19     283639          88440 KB     81808 KB     312 KB     6320 KB
tDataMapSeg20     248051          87736 KB     82640 KB     344 KB     4752 KB
tDataMapSeg32     248865          85864 KB     83704 KB     352 KB     1808 KB
tDataSeg18     81340           81904 KB     71800 KB     6624 KB     3480 KB
tDataSeg30     81035           81072 KB     71528 KB     6464 KB     3080 KB
tDataMapSeg36     229741          80048 KB     73280 KB     304 KB     6464 KB
tDataMapSeg34     219324          78760 KB     71632 KB     304 KB     6824 KB
tDataMapSeg27     221756          75104 KB     69352 KB     272 KB     5480 KB
tDataSeg19     77515           74288 KB     65048 KB     5912 KB     3328 KB
tDataMapSeg18     191459          72096 KB     62264 KB     264 KB     9568 KB
tDataSeg43     72226           69872 KB     61176 KB     5528 KB     3168 KB
tDataSeg50     70821           69680 KB     61112 KB     5600 KB     2968 KB
tDataMapSeg30     185428          68400 KB     61400 KB     256 KB     6744 KB
tDataSeg27     70278           67888 KB     59216 KB     5400 KB     3272 KB
tDataSeg16     68043           67888 KB     59544 KB     5280 KB     3064 KB
tDataSeg10     66404           66096 KB     57328 KB     5448 KB     3320 KB
tDataSeg6     65131           62640 KB     54536 KB     5136 KB     2968 KB
tDataSeg17     62619           62000 KB     53848 KB     5160 KB     2992 KB
tDataMapSeg25     182191          61288 KB     54848 KB     224 KB     6216 KB
tDataSeg4     63183           60144 KB     52440 KB     4856 KB     2848 KB
tDataSeg13     59129           59568 KB     51120 KB     5136 KB     3312 KB
tDataCheck     83979           59168 KB     50768 KB     5216 KB     3184 KB
tDataMapSeg35     155093          58536 KB     52120 KB     216 KB     6200 KB
tDataSeg44     56930           55280 KB     48224 KB     4384 KB     2672 KB
tDataSeg28     52973           53552 KB     46064 KB     4464 KB     3024 KB
tDataSeg40     53716           50992 KB     43760 KB     4272 KB     2960 KB
tDataSeg45     46505           50864 KB     43944 KB     3960 KB     2960 KB
tDataMapSeg17     133623          48744 KB     40480 KB     168 KB     8096 KB
tDataMapSeg40     132736          46952 KB     39328 KB     168 KB     7456 KB
tDataSeg5     46120           46448 KB     39512 KB     4072 KB     2864 KB
tDataSeg38     45780           46320 KB     39784 KB     3824 KB     2712 KB
tDataMapSeg28     133729          46256 KB     38632 KB     168 KB     7456 KB
tDataSeg20     44443           45872 KB     39512 KB     3704 KB     2656 KB
tDataSeg25     45071           45808 KB     38776 KB     4144 KB     2888 KB
tDataMapSeg21     132169          45408 KB     37928 KB     160 KB     7320 KB
tDataSeg34     43714           44848 KB     38072 KB     4000 KB     2776 KB
tDataMapSeg14     120765          44776 KB     36344 KB     152 KB     8280 KB
tDataMapSeg24     124262          44640 KB     37520 KB     168 KB     6952 KB
tDataMapSeg33     129193          44064 KB     38648 KB     160 KB     5256 KB
tDataMapSeg13     112591          43680 KB     35256 KB     152 KB     8272 KB
tDataSeg47     42138           43488 KB     37352 KB     3432 KB     2704 KB
tDataSeg21     42383           43376 KB     36232 KB     3888 KB     3256 KB
tDataMapSeg10     118447          42976 KB     35416 KB     152 KB     7408 KB
tDataSeg29     43008           42864 KB     36952 KB     3600 KB     2312 KB
tDataSeg23     41458           41520 KB     36184 KB     3232 KB     2104 KB
tDataSeg33     38297           41376 KB     35784 KB     3032 KB     2560 KB
tDataSeg39     38325           39792 KB     33728 KB     3520 KB     2544 KB
tDataSeg49     39926           39536 KB     33648 KB     3136 KB     2752 KB
tDataMapSeg29     104805          38688 KB     32416 KB     144 KB     6128 KB
tDataSeg35     36451           37744 KB     32040 KB     3208 KB     2496 KB
tDataSeg22     35486           37040 KB     31296 KB     3088 KB     2656 KB
tDataMapSeg7     92215           35816 KB     28752 KB     128 KB     6936 KB
tDataMapSeg31     92202           35360 KB     28616 KB     136 KB     6608 KB
tDataMapSeg45     93919           35184 KB     29552 KB     128 KB     5504 KB
tDataSeg36     35311           35184 KB     29200 KB     3064 KB     2920 KB
tDataMapSeg50     84859           33384 KB     26720 KB     128 KB     6536 KB
tDataMapSeg4     82558           33376 KB     25744 KB     120 KB     7512 KB
tDataSeg37     31768           32752 KB     27568 KB     2712 KB     2472 KB
tDataMapSeg9     82775           32224 KB     26264 KB     120 KB     5840 KB
tDataMapSeg43     90283           32160 KB     27368 KB     136 KB     4656 KB
tDataMapSeg22     83091           32104 KB     25664 KB     120 KB     6320 KB
tDataSeg2     31335           30384 KB     25120 KB     2752 KB     2512 KB
tDataMapSeg5     81919           30240 KB     24064 KB     120 KB     6056 KB
tDataMapSeg39     78626           28640 KB     22912 KB     104 KB     5624 KB
tDataMapSeg47     81916           28512 KB     24328 KB     104 KB     4080 KB
tDataMapSeg23     73815           28512 KB     23600 KB     112 KB     4800 KB
tDataSeg9     27965           28400 KB     23560 KB     2584 KB     2256 KB
tDataMapSeg15     67203           26848 KB     20816 KB     96 KB     5936 KB
tDataMapSeg38     74979           26720 KB     22464 KB     112 KB     4144 KB
tDataMapSeg12     66532           26720 KB     20376 KB     104 KB     6240 KB
tDataMapSeg6     68627           26336 KB     20160 KB     104 KB     6072 KB
tDataMapSeg2     64820           25952 KB     20816 KB     96 KB     5040 KB
tDataMapSeg44     70004           25832 KB     20016 KB     96 KB     5720 KB
tDataMapSeg49     73613           25200 KB     20584 KB     88 KB     4528 KB
tDataSeg24     25070           25008 KB     21048 KB     2152 KB     1808 KB
tDataMapSeg37     57634           22496 KB     17536 KB     88 KB     4872 KB
tDataArchive     33012           21216 KB     9376 KB     6600 KB     5240 KB
tDataMapSeg42     53057           20704 KB     15432 KB     80 KB     5192 KB
tDataSeg12     19301           20336 KB     16616 KB     1816 KB     1904 KB
tDataSeg31     18537           18992 KB     15672 KB     1584 KB     1736 KB
tDataSeg46     17973           18800 KB     15384 KB     1744 KB     1672 KB
tDataSeg48     18481           18288 KB     14896 KB     1736 KB     1656 KB
tDataMapSeg8     40631           17952 KB     13408 KB     80 KB     4464 KB
tDataSeg42     15766           16880 KB     13568 KB     1536 KB     1776 KB
tDataMapSeg48     40179           16352 KB     12256 KB     64 KB     4032 KB
tDataSeg41     13274           14320 KB     11696 KB     1216 KB     1408 KB
tDataSeg8     12027           13152 KB     10368 KB     1144 KB     1640 KB
tDataMapSeg46     28647           12584 KB     9840 KB     56 KB     2688 KB
tDataSeg15     9418            10288 KB     8136 KB     832 KB     1320 KB
tDataMapSeg41     23887           9504 KB     7048 KB     48 KB     2408 KB
tLogProcess     10878           5808 KB     3240 KB     1040 KB     1528 KB
tCtrlMetaCaptionsTranslated     44830           4752 KB     4696 KB     56 KB     0 KB
tSecObjectItems_Locale     16371           2768 KB     2664 KB     72 KB     32 KB
tCtrlMetaData     13463           2528 KB     1528 KB     904 KB     96 KB

So, unsurprisingly, most of the data is sitting in the data Segments and Segments of card data; However, the activity log is #2 in my database.

Activity log is probably relatively safe to clean under the assumption that meet you the requirements of audit/SOX with your cleaning info. (i.e. empty each year, etc.)

At the point of the other displays; However, the other tables will really cut into data and maps for the data. You must take a decision as to if it is something from which your group is ok. Perhaps you take the approach of windows and delete the old data after a period of xx?

Finally, do not discount the raw data files, log files, temporary files and 'export' that are generated by FDM. In a relatively small application, we have accumulated almost 200 000 files over a period of 3 years. Don't forget to keep an eye on these files. Even if they are for the most part, small files, they occupy space! As for the database, I recommend an approach where you delete some of the files or even compress them into one archive for guard duty.

Hope that helps.

P. S.

If you decide you want to clean up the data, the column PeriodKey in the DataMapSeg / DataSeg tables indicates if the data comes from. (i.e. the 00:00:00.000 2008-06-30) You can use this to run a script to clean up the tables for the data before a certain date, etc..

Published by: beyerch2 on July 3, 2012 09:16

Tags: Business Intelligence

Similar Questions

  • Pierce of FDM Hyperion Planning

    Hello

    I use FDM to load the data into the Hyperion Planning application. I am able to load the data successfully.

    But in shape cells planning I am unable to see Pierce option, are there any settings that need to be changed?

    I use version 11.1.1.3

    Thanks in advance


    Kind regards
    Sunil

    Have you turned on percables area charge in fdm essbase adapter options

    See you soon

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

  • Hyperion Planning database from Oracle to MS SQL migrate?

    We have EMP 11.1.1.3 planning with databases running on Oracle 11 g, and now we want to migrate to MS SQL2008 and also want to upgrade to EMP 11.1.2.2 or upward.

    How can we make the upgrade and data migration?


    Is it better to be upgraded the first with the Oracle database? or migrate data to SQL and then upgrade?

    Thank you!

    Personally, I have updated the application level staying on the same type of database data, export the application using LCM, delete the app, point the new database the data source type, and then use LCM to import.

    See you soon

    John

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

  • Folder Inbox for the FDM Hyperion

    Hi gurus FDM!

    According to FDM admin on the FDM Architecture, there is "Inbox" file used to import source files. It is said that it is not required to put the files in this folder as the source files can be found in other folders.

    Anyone know how to configure what file to load?

    And it is possible that FDM will be looking for several files to import files?

    Any help is appreciated.

    Thanks and greetings

    The box receipt, Outbox, reports, data files are created in the subfolder of the application that creates in the application path that was specified when the application was initially created. When the import is performed to FDM you can:

    (a) select the file from the Inbox
    (b) choose 'Download file' and select the source file in a network location. This will be will first copy the file to the Inbox and FDM will then process the file to the Inbox.

    Hope that answers your question

  • Failed to create the application of FDM

    Hi all

    I am a newbie in FDM Hyperion, I installed and configured HFM and FDM 11.1.2.3 2008R2 in VM window.

    Installation went well and the configuration went all very well for the Application Server, Load Balancing Manager, the Task Manager and web config Manager

    I am able to create a HFM application, but I am not able to create an Application <>FDM.

    I am creating the application using the Workbench. So I give all the details like name of the application, description, App Path & App group under general tab Oledb Provider, the service name, user and password in the database of the tab and click on 'OK '. After a while, I get a pop up message "unable to connect to the database. Please check the information of database and verify that the database is accessible."

    I did a search and found the following two links, but still no luck.

    http://Hyperion-Mady.blogspot.in/2013/11/unable-to-connect-to-database-please.html

    https://community.Oracle.com/thread/3538368

    Please help me!

    Hello

    have you given a static IP to your VM.

    If so, then open the hosts file and put an entry for that IP with FQDN.

    It seems also that you have installed new oracle client according to the PATH variable, you don't have it?

    Kind regards

    -DM

  • Hyperion 11.1.2.1 load balancing

    Hi all

    We intend to set up load with 11.1.2.1 balancing version.

    Server1 - Foundation, planning, Reporting

    Server2 - Foundation, planning, Reporting

    Server3 - HFM and FDM

    Server4 - HFM and FDM

    Server5 - database, Essbase (linux)

    Previously, we planning but load balancing has ever done foundation, hfm and fdm load balancing. So, need some suggestions before you start this process.

    For planning, we have installed planning (Server1 and Server2). In weblogic, we got 2 managed servers Planning0 and planning of the depenses1.

    By default the Round robin method, taken in load balancing.

    But the case of Foundation also, can we follow same process?

    can we use weblogic even serever1 only for all servers or can we install 2 servers weblogic 2 servers (server1, server2), where we plan to install Foundation?

    Thank you

    Mady

    You follow the same process you did for planning, weblogic will be installed by default on all servers, you can use the same domain server and weblogic administrator.

    Run the server configuration web foundation once completed.

    See you soon

    John

  • FDM intermittent fConnect error

    Hi all

    We have this intermittent problem in our production environment. I get error when I run the present in the TEST env. This error occurs when users try to 'Browse for target value' (WebClient, activities > maps). Oracle support engineer said

    "The beginning of the log the FDM errors an error from HFM.
    It seems to me that you encounter an intermittent problem in connectivity HFM. It comes from HFM not FDM, if it was because of the configuration of FDM or adjustment, he wouldn't correct itself.
    Can you check in your HFM event logs and see if you have errors it around the same time that we see the error in FDM.
    We can then ask the HFM team to advise on this. »


    I can connect to the HFM Application using web client and smartview. I can connect from FDM to hfm database using the file *.udl.


    In the event on the FDM server log, I see this error:

    Error 11; hyp11svc; 11/07/2014 11:12:22;...... \SharedSourceCode\CHITRegistryWrapper.cpp; Line 593; <? XML version = "1.0"? >

    < C'estr > < Ref > {62F77574-3EB7-49AB-A398-B0258FC2A964} < / Ref > < user / > < DBUpdate > 2 < / DBUpdate > < CSEC > < Num >-2147216704 < / Num > < Type > 0 < / Type > < DTime > 07/11/2014 11:12:22 < / DTime > < Svr / > < file >..... \SharedSourceCode\CHITRegistryWrapper.cpp < / file > < line > 593 < / line > < worm > 11.1.2.1.601.4019 < / worm > < / CSEC > < / RTSs >

    Here is the error of FDM.

    * FdmFM11XG5E Runtime Error Log entry to start [2014-11 / 07/11: 12:23] *.

    -------------------------------------------------------------

    Error:

    Code...-2147217085

    Description...

    {0BA31291-F24D-4BF9-8A07-A866A8605C73}1-214721708517/11/2014 11:12:22 AMHYP11FDM01CHsxClient.cpp80911.1.2.1.601.4019CHsxClient::InternalCreateObjectOnCluster: cluster = HearstSC, servers Num = 0, - 214721708517/11/2014 11:12:22 AMHYP11FDM01CHsxClient.cpp81011.1.2.1.601.4019CHsxClient::InternalCreateObjectOnCluster: cluster = HearstSC, servers Num = 0, - 214721708507/11/2014 11:12:22 AMHYP11FDM01CHsxClient.cpp368711.1.2.1.601.4019

    Process... clsFMAdapter.fConnect

    Component... D:\Oracle\Middleware\EPMSystem11R1\products\FinancialDataQuality\SharedComponents\FM11X-G5-E_1005\AdapterComponents\fdmFM11xG5E\fdmFM11XG5E.dll

    Version... 145

    Identification:

    ... The admin user

    Name of the computer... HYP11FDM01

    Connection of FINANCIAL MANAGEMENT:

    Name of the application...

    Name of the cluster...

    Field...

    Connect status... No open connection

    * Start the journal entry for the Runtime Error FDM [2014-07-11 11:12:23] *.

    -------------------------------------------------------------

    ERROR:

    Code............................................. 10054

    Description... Adapter function [fConnect] failed.

    Process... clsBlockProcessor.DimensionList

    The component... upsWBlockProcessorDM

    Version.......................................... 1112

    Thread........................................... 4616

    IDENTIFICATION:

    User............................................. admin

    Name of the computer... HYP11FDM01

    App Name......................................... FDM_NMG

    Client App....................................... WebClient

    CONNECTION:

    Provider......................................... ORAOLEDB. ORACLE

    Database server...

    Name of the database... hypv11p1

    Trust connect... Fake

    Connect status... Open connection

    GLOBALS:

    Location......................................... NMG2HMI

    Location ID... 749

    Location Seg... 3

    Category......................................... ACTEST

    ID of the category... 13

    Period........................................... Jun - 2014

    Period ID........................................ 30/06/2014

    POV Local........................................ Fake

    Language......................................... 1033

    User Level....................................... 1

    All Partitions... Fake

    Is Auditor....................................... Fake

    * Start the journal entry for the Runtime Error FDM [2014-07-11 11:12:24] *.

    -------------------------------------------------------------

    ERROR:

    Code...-2146818234

    Description... Adapter function [fConnect] failed.

    Procedure........................................ ObjScriptReturnMarshaler.GetDimensionList

    IDENTIFICATION:

    User............................................. admin

    Name of the computer... HYP11FDM01

    App Name......................................... FDM_NMG

    Client App....................................... WebClient

    CONNECTION:

    Provider......................................... ORAOLEDB. ORACLE

    Database server...

    Name of the database... hypv11p1

    Trust connect... Fake

    Connect status... Open connection

    GLOBALS:

    Location......................................... NMG2HMI

    Location ID... 749

    Location Seg... 3

    Category......................................... ACTEST

    ID of the category... 13

    Period........................................... Jun - 2014

    Period ID........................................ 30/06/2014

    POV Local........................................ Fake

    Language......................................... 1033

    User Level....................................... 1

    All Partitions... Fake

    Is Auditor....................................... Fake

    Would appreciate any help?

    the issue was to HFM unregistered on the FDM server cluster.

  • FDM 11.1.2.1 installation and configuration

    Hi all

    I'm install HFM, FDm ws2008R2 server... I did face some problems with configuraion of HFM... s0... I uninstalled HFM and FDM and reinstalled... when I open the configurator... ICAN only see

    01. configure the Application Web of FDm
    02. configure the server of FDm



    Configure the database and deploy to the application server are missing in the settings of FDM... I uninstalled and reinstalled but same problem

    When I run Setup again... .it shows that set up the database and deploy to the application server are installed

    Published by: user13523217 on August 25, 2011 13:09

    These are the only two items for FDM, you should see.

  • Essbase database error

    Hello world

    I am trying to restore a planning application, and after you restore the successfully .dmp file, I am creating the workspace Essbase database: Administration-> manage the database-> check "Database"-> Create-> create; the process fails to step 31 90 with the following error message:

    com.hyperion.planning.olap.HspVerifyOutlineException: check the plan failed with the following errors:
    Error [102000000] detected in Member "Rem_SL": level 0 virtual members must have a formula associated with them

    The specified member is part of the sketch of the Plan2 and Plan2 (kind of regime) contour appears blank in the EA.

    Any help would be greatly appreciated!
    Thank you!

    or log in Oracle support and paste

    * Error "error [102000000] detected in Member 'XXXXX': level 0 virtual members must have a formula that they are associated with" occurs when a planning Application [ID 833958.1] refreshing *.

    The defined attribute (UDA) user of HSP_UDF has been configured for the Member in question through the planning of Hyperion Web client.

    It is necessary for the HSP_UDF UDA be configured directly via the Essbase outline because the formula of Member has been configured by the Essbase outline.

    The HSP_UDF UDA must always be enabled in the Essbase outline as the main point of the UDA must say planning member formula has been entered directly in the Essbase outline.
    Solution
    To resolve this follow the steps below.
    * 1. Remove the HSP_UDF UDA, which was entered for the Member in question via Hyperion Planning Web client.*
    This can be done through the Administration > Dimensions > select a Dimension in question > search for members in question > select a member > select Edit > select UDA tab and remove the HSP_UDF of the saved selection.

    * 2. Select the HSP_UDF UDA directly via the Essbase outline. This can be done through Services of Essbase Administration > Applications > contour > Select, right-click on the outline and select the option to edit > search for members involved in the sketch > right-click on the Member and select member properties > UDA > HSP_UDF enter the affect and the hit OK.*

    * 3. Update the Hyperion Planning database by logging into Hyperion Planning WebClient and return to Administration > manage data > select options and click on Refresh.*

    See you soon

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

  • 11.1.2.1 in 11.1.2.3 Classic migration - Import/Export

    Hello all -

    I exported my 11.1.2.1 .xml file and tried to import into my application of FDM Classic 11.1.2.3 through the Workbench.  I received an error message:

    "3108 selected XML file is based on an old level of schema (1112100).  A scheme (1112300) or higher is required for this version of FDM. »

    The schema upgrade tool seemed to want to just update my application of FDM - there - there a trick to getting the. XML in the correct import form?

    Thank you

    Sarah


    You cannot import a lower level XML schema in a higher level DB schema.

    To migrate your application FDM 11.1.2.1. you will need to use to add the 11.1.2.1 request to the 11.1.2.3 enviornment and then run the schema update utility to upgrade the 11.1.2.1 database application of the 11.1.2.3 level schema.

    If you are using Oracle:

    1. Use the Oracle database utilities to perform an excerpt of the Oracle user schema in the Source of FDM environment in a .dmp file.
    2. Copy the .dmp environmental source above the FDM 11.1.2.3 Oracle Database Server environment.
    3. In the target environment, create a new schema/user Oracle for the database of the FDM application and corresponding storage that exist in the source Oracle database server environment. * Please see Guide DBA recommended FDM Hyperion for more information on storage space and settings for the Oracle database.  This guide is available on the Oracle Technology Network.
    4. Use the Oracle database utilities to import the .dmp since the environment of the source file in the schema user newly generated in the 11 x Oracle database environment. * Note: this process must be performed by the Oracle database administrator.

    Step #2: Copy the application directory of FDM since environmental Source FDM on FDM 11.1.2.3 environment.

    1. Launch the Client of Workbench FDM in FDM source environment and choose in the application.  Connect on the Workbench as a power user.
    2. A list of FDM applications will be returned. Highlight the application that is being migrated in the environment 11 x, and then choose Edit
    3. The path of the Application is displayed. The part that stores the directories of the application of FDM (\\servername\sharename\appname) must be copied to the 11.1.2.3 environment.
    4. Share application of FDM in the 11.1.2.3 environment allowing the FDM service fully share account and the NTFS permissions in the directory.

    Step #3: Add the Application to the 11.1.2.3 environment

    1. In the 11.1.2.3 environment launch the established client and choose
    2. Connect on the Workbench with a user of the application of FDM that was migrated. The user must be a user who could connect to the previous s environment application.
    3. Click on the Add button when the screen of the application is returned.
    4. Fill in the data base of the screen, add an Application and general tabs

    General tab:
    (i) name: name of the FDM application. This must match the name of the folder of the application within the part of the application. (i.e. \\servername\share\app1) would app1 informed in this area.
    (II) description: if necessary application FDM description
    (III) app Path: UNC path to the directory copied the application (i.e. \\servername\share\appname)
    (IV) group app: select the Group of application of fdm in the drop created in shared services

    Database tab:
    (i) select the OLE DB provider that is appropriate in the drop-down list. OLEDB. ORACLE for Oracle or SQLOLEDB databases for SQL Server databases.


    (II) service: enter the name of the Oracle Service for the environment 11 x Oracle database that contains the schema of Application FDM that was imported
    Database server: name of the Microsoft SQL Server database server for the x 11 environment
    Database Name: Application name database that has been restored in the environment 11 x of FDM
    (III) user/schema: Oracle database schema in x 11 environment this .dmp file has been imported.
    Password: password of the Oracle schema/user

    Step #4: Use Schema Update Utility to update database from the Application of the 11.1.2.3 schema level

    1. Choose Start > programs > Oracle EPM system > Management of the quality of financial data > Workbench > update schema
    2. Choose the Application that has been upsized in the drop-down list of the applications and connect with native user was created in the services shared and used to add the application. Appear in a new screen showing the name of the application and the level of current schema. Click Run to update the database from the application of the 11.1.2.3 level schema.
  • T500 - how determince display type...

    Hi guys, I have a T500 with a screen of death. How can I know what kind of screen I have to order a new one? I have to delete the old to understand?

    Thank you!

    Phillip

    Your machine is a refurb of decision-making, that's where CTR is and has probably been purged database as such.

    Check the HMM for the LCD here reference numbers:

    http://download.Lenovo.com/ibmdl/pub/PC/pccbbs/mobiles_pdf/43y6630_03.PDF

  • HFM and FDQM adapters for 11.1.2.2

    Hello

    We have installed v 11.1.2.2 on windows 2008 server 64-bit HFM and FDM hyperion. I am unable to find the FM11X-G6-A_1016 for HFM adapters on delivery. Can anyone tell me where I can find these adapters.

    Thanks for your time and INFO...

    He will be in the FinancialDataManagement folder, which is part of the version of the system EMP 11.1.2.2.0 for Microsoft Windows 64 - bit part 5-V31878-01

    See you soon

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

  • Configuration for the Task Manager error

    Hello

    I installed FDQM, IR, FR, HFM in 11.1.1.3.

    FDQM configuration is successful. When you configure the Task Manager using the user name Windows account

    (Administrator). But it shows the status parameter not valid error. Once again, I tried with DCOM user admin also.

    It throws the same error.

    Thanks and Rgards,
    Sidhartha.p

    Try this:

    (A) start > run > services.msc
    (B) locate the FDM Hyperion Service Task Manager, right click and choose "Properties".
    (C) click the 'Connection' tab and enter the FDM Service account user name and password as - and apply.
    (D) try to start the service.

    It work?

  • Installation of FDQM

    Hello

    Is there a step by step guide for FDQM and install ERPi (adapter).

    I was reading through EMP n installation configuration guide and was surprised to see that "Oracle recommends to have a separate database instance for FDM.

    Is - this true statement. ? Can't we just a separate schema created for FDM on a database instance, also used to store metadata for other products EMP?

    The pointers will be appreciated.

    Thank you!!

    ERPi must not be located on the same server as the server of ODI. When you configure connections ERPi post installation you tell the machine/port combination that the ODI agent works.

    Yes you can also run the FDM Web and ERPi Web on a server (this is the architecture that typically use).

    Kind regards

    John A. Booth
    http://www.metavero.com

  • I lose data if I update the planning?

    I load the metadata through EPMA and given through ODI, ODI will Essbase data directly instead of loading at planning. Now, for some reason if I have add some members on the planning application and 'Refresh' the database so that the Essbase will have the same outline. My question: will I lose business data in the essbase if I click on "Refresh" the Hyperion Planning database? Thank you!

    IF you delete a member, the data associated with that Member are lost when the outline is saved. If you were to delete something as real all the actual data would be gone. IF you remove the cost center 12345, as this cost center data would be ost (in the case of a cube of BSO, the ancestors still held values until the cube is re-agged.

Maybe you are looking for

  • I can't paste images into an e-mail

    Hello. I'm running Thunderbird 24.4.0 on Windows 764SP1. Something bothered me for awhile now. Often when I want to attach files to an email, I prefer the Outlook behavior where I'll find the files using Windows Explorer, then choose copy, and then r

  • RV042G Cisco vs Danish «nemID» public safety

    RV042G V01 Firmware v4.2.1.02 (18 January 2012 14:10:55) only works for IPv4. There is an active DynDNS WAN2-based account. I have had a problem with the RV042G because Bank and public safety systems "nemID" actually can see my two IP addresses and s

  • Resize an individual window

    Well, I have to admit that I'm completely blocked so I ask the experts for your help.  I was watching my emails (Hotmail) when I seem to hold my mouth exactly right by pressing the carpet just right mouse, at the moment even where I sang that to give

  • Why not a read lock?

    HelloI use dbsql to operate the database, when I begin a transaction, followed by running a query, by observing its lock and found it produces a lock for writing, instead of a read lock?Why is this? Follow these steps:[root@iZ28aslsffdZ db_sql] # dbs

  • Why not 11 download my D7200 Nikon RAW files

    Why the 11 elements cannot download the RAW files of my DSLR Nikon D7200