RDBMS for Hyperion Essbase server change

Hi all

We installed and configured 11.1.2.2.100(Essbase, EIS, Studio, Services partagés) on Windows 2008 32-bit server successfully.

Everything went well and all the products work.

Now, we have changed the RDBMS for Hyperion Essbase server and ran the configuration once more with the new RDBMS server with option "reuse existing tables.

H1

| First current

DB1 -> DB2

Therefore, we are unable to access the essbase server.

We have seen users of Shared Services. All users are able to connect to Shared Services, EAS but problem with Essbase.

In the table of HSS_Component is the old name of the server in two places, we have updated the old name of DB server on behalf of current server DB.

When we try to access essbase we get the below error (tried with the host name, ip address, EssbaseCluster1 as the Essbase server)

Error network [10061]: unable to connect to [Server Name: 1423]

Error: 103: unexpected error Essbase 1030818

Error: 1042006: error network [10061]: unable to connect to [[servername]: 1423]

Error: 1030818: failed to connect. Please check if the server and port are correct. If you have received failure timeout or handshake.

Please check if you tried to connect to a secure Word keyless secure port or disable port with the secure key word.

Please help me solve this problem.

Thank you

Alain

It is extremely important that you know what you are doing before you touch the registry of shared services and the correct way is to not update the tables, is to use the epmsys_registry utility.

To be honest you can have messed up the registry and it is something I will not get involved in, try to talk with Oracle, what you just did.

If it is only the name of the RDBMS server change (not the essbase server) then you must follow the instructions in the documentation - change shared Services and connection of database registry and the password information

See you soon

John

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

Tags: Business Intelligence

Similar Questions

  • ODI - SQL for Hyperion Essbase data loading

    Hello

    We have created a 'vision' in SQL Server that contains our data.  The view currently has every year and periods of Jan 2011 to present.  Each period is about 300 000 records.  I want to only load one period at a time.  For example may 2013.  Currently we use ODBC through a rule of data loading, but the customer wants to use ODI to be compatible with the versions of dimension metadata.  Here's the SQL on the view that works very well.   Is there a way I can run this SQL in the ODI Interface so it pulls only what I declare in the Where clause?  If yes where can I do it?

    Select

    CATEGORY, YEAR, LOCATION, SCRIPT, DEPT, PROJECT, EXPCODE, TIME, ACCOUNT, AMOUNT

    Of

    PS_LHI_HYP_PRJ_ACT

    Where

    YEAR > = "2013" AND PERIOD = 'MAY '.

    ORDER BY CATEGORY ASC ASC FISCAL_YEAR, LOCATION ASC, ASC, ASC, ASC, ASC, PERIOD EXPCODE PROJECT DEPT SCENARIO CSA ACCOUNT CSA;

    Hello

    Simply use the following KM to load data - IKM SQL for Hyperion Essbase (DATA) - in an ODI interface that has the view that you created the Source model. You can add filters to the source which are dynamically by ODI variables to create the Where clause based on the month and year. Make sure you only specify a rule of load method to load the data into the KM

  • Download data from text file for Hyperion ESSBASE by FDM.

    Hello

    I want to upload data from text file for Hyperion ESSBASE by FDM. The file format is given below.


    Entity, Department, designation, effective, SalaryPaid
    E11001, BSG, AsstManager, 12, 820000
    E11001, BSG, Manager, 6, 740000


    Where staff and SalaryPaid is the Member of the account dimension. Entity, Department, and designations are the dimensiosn in the ESSBASE.

    Is it possible to download the file above using FDM, can we have two account member in the line?

    I am brand new with FDM. ask for your help.

    Kind regards
    Sunil

    Create two scripts to import (choose Import Data Pump when you are prompted for the type of import script)

    (1) call the GetAccounts 1st and 2nd PutAccounts
    (2) associate GetAccounts size amount in your import format.
    (3) associate PutAccounts with the account dimension in your import format
    (4) adding NZP expression to dimension of amount
    (5) in GetAccounts put the following code...
    +' Get the names of account in the header line.
    If DW. Utilities.fParseString (strRecord, 5, 4, ",") = "number of head" Then
    + ' Local variables for the account names.
    + Acct1 dim +.
    + Acct2 dim +.
    +     +
    + ' Head Count (column 4 of 5) +.
    + Acct1 = DW. Utilities.fParseString (strRecord, 4, 5, ",") +.
    + ' Wages (column 5 of 5) +.
    + Acct2 = DW. Utilities.fParseString(strRecord, 5, 5, ",") +.
    +     +
    End If

    GetAccounts strField =

    (6) in PutAccounts put the following code...

    +'+ Local Variables
    Dim AcctName (2)
    Dim AmountVal (2)
    Dim z
    Dim rsAppend

    + "The names of individual account is analyzed and stored +"
    AcctName (1) = DW. Utilities.fParseString (RES. PvarTemp1, 2, 1, ',')
    AcctName (2) = DW. Utilities.fParseString (RES. PvarTemp1, 2, 2, ',')

    +' If student for accounts from here import file.
    AmountVal (1) = DW. Utilities.fParseString (strRecord, 5, 4, ",")
    AmountVal (2) = DW. Utilities.fParseString (strRecord, 5, 5, ",")

    +' Name of temporary importation work table +.
    strWorkTableName = RES. PstrWorkTable

    +' Create temporary table recordset trial balance +.
    Set rsAppend = DW. DataAccess.farsTable (strWorkTableName)

    For z = 01:58 ' this can change depending on the number of additional accounts processing

    + If IsNumeric (AmountVal (z)) Then +.
    +          +
    + If (z) AmountVal <> 0 Then +.
    +          +
    + ' Create a new record and to provide its field values.
    + rsAppend.AddNew +
    + rsAppend.Fields ("DataView") = "CDA" +.
    + rsAppend.Fields ("PartitionKey") = RES. PlngLocKey +.
    + rsAppend.Fields ("CatKey") = RES. PlngCatKey +.
    + rsAppend.Fields ("PeriodKey") = RES. PdtePerKey +.
    + rsAppend.Fields ("CalcAcctType") = 9 +.
    + rsAppend.Fields ("Account") = AcctName (z) +.
    + rsAppend.Fields ("Amount") = AmountVal (z) +.
    + rsAppend.Fields ("Entity") = 'chain of the entity here ' +.
    + rsAppend.Fields ("UD1") = "string C1 here +.
    + rsAppend.Fields ("node2") = "String C2 here +.
    + rsAppend.Fields ("UD3") = "String C3 here +.
    + rsAppend.Fields ("UD4") = "string C4 here +.
    + "Add folder to the collection +"
    + rsAppend.Update +
    +               +
    + End if +.
    +     +
    + End if +.

    Next

    +' Close the recordset.
    rsAppend.close

    If DW. Utilities.fParseString (strRecord, 5, 4, ',') <> '0' then
    + PutAccounts = DW. Utilities.fParseString (RES. PvarTemp1, 2, 1, ',') +.
    On the other
    + RES. PblnSkip = True.
    End If

    You may need to change the aboveto that meet your exact needs, but the basic structure of the scripts should not change too

    Published by: SH on May 25, 2012 10:34

  • IKM SQL for Hyperion Essbase (data) error

    Hello
    I've created an interface between Oracle DB and Essbase 11.1.2.
    I used Oracle DB as transit zone. I used IKM SQL for Hyperion Essbase (data) as a selector IKM.
    But I got an error as below in step ("Load Data on Essbase"); Can you help me? Thank you...

    org.apache.bsf.BSFException: exception of Jython:
    Traceback (most recent call changed):
    File "< string >", line 21, < module >


    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:457)

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)

    at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:889)

    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:476)

    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:204)

    at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:540)

    at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:202)

    at oracle.jdbc.driver.T4CStatement.executeForDescribe(T4CStatement.java:919)

    at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1261)

    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1419)

    at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:1668)

    at oracle.jdbc.driver.OracleStatementWrapper.executeQuery(OracleStatementWrapper.java:432)

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

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)


    java.sql.SQLSyntaxErrorException: java.sql.SQLSyntaxErrorException: ORA-00936: lack of expression


    at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
    at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.execInBSFEngine(SnpScriptingInterpretor.java:346)
    at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.exec(SnpScriptingInterpretor.java:170)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java:2457)
    at oracle.odi.runtime.agent.execution.cmd.ScriptingExecutor.execute(ScriptingExecutor.java:47)
    at oracle.odi.runtime.agent.execution.cmd.ScriptingExecutor.execute(ScriptingExecutor.java:1)
    at oracle.odi.runtime.agent.execution.TaskExecutionHandler.handleTask(TaskExecutionHandler.java:50)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.processTask(SnpSessTaskSql.java:2906)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2609)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:537)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:453)
    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1740)
    to oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$ 2.doAction(StartSessRequestProcessor.java:338)
    at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:214)
    at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:272)
    to oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$ 0 (StartSessRequestProcessor.java:263)
    to oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$ StartSessTask.doExecute (StartSessRequestProcessor.java:822)
    at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:123)
    to oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$ 2.run(DefaultAgentTaskExecutor.java:82)
    at java.lang.Thread.run(Thread.java:662)

    Hello

    finished column mapping, or be owned by mapping active of course active for each column.

  • IKM SQL for Hyperion Essbase (data)

    I am trying to load data into essbase through the ODI interface however module "IKM SQL for Hyperion Essbase (data)".

    Whenever data gets overwritten, how I accumulate this data during loading. As it is quite difficult for me to summarize the data, then load.

    Kind regards

    Amine ravi

    Use a rule to load and set to add to the existing values in the State of charge, adjustable load rule name in the options of the IKM.

    See you soon

    John

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

  • IKM SQL for Hyperion Essbase (metadata) - problem when you dial the name of the Member

    Hello world

    I need to load the metadata to Essbase to a relational database.
    Essbase: 9.3, Oracle 9i, ODI 10.1.3.5.0
    I have a dimensional table contains the data in the Scenario dimension. The table has 3 columns: code, alias, consolidation.
    Example of 2 lines:
    Effective law-
    BDG budget-

    I created a rule file load_scn.rul to update the scenario dimension in my essbase cube and at the launch of the console of administration services it does not work. Each Member has his alias and it is sign of such consolidation as specified in the table.

    In ODI
    I created an essbase data store, a data store for my table and an interface. The interface uses the knowledge "IKM SQL for Hyperion Essbase (metadata)" module and the load_scn.rul of State of charge.
    When I run the interface, it will end successfully, but when I check the Essbase outline, the two members were loaded with the name of name of Member composed of all 3 columns in the table dimensional as a single string line!
    I have a member named ' law, real, + "and another called ' bdg, budget,-'."
    Members have no alias and peacebuilding is the default ('+') and not '-' as shown in the dimensional table.

    Has anyone of you had this problem? If so, how to solve it?

    Any help will be very appreciated!
    Daniela

    Sounds like in the rule under load in the IKM options you have to have the separator rules comma value and data > defined in the tab, replace it with commas in the rule of data source properties.

    See you soon

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

  • Failed to load data to Essbase (IKM SQL for Hyperion Essbase (DATA)

    I am trying to load data to Hyperion Essbase. Unfortunately he is not going so well. I followed the instructions but I get this error "BUFFER_SIZE. I have not changed the default BUFFER_SIZE (it is set to < default >: 80) and I have not changed any other settings in the KM.

    Appreciate any thoughts...



    com.hyperion.odi.common.ODIConstants has No attribute * 'BUFFER_SIZE. "

    org.apache.bsf.BSFException: exception of Jython:
    Traceback (innermost last):
    "< String >" file, line 82, inside?
    AttributeError: class 'com.hyperion.odi.common.ODIConstants' has no attribute 'BUFFER_SIZE '.
    at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
    at com.sunopsis.dwg.codeinterpretor.k.a (k.java)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting (SnpSessTaskSql.java)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders (SnpSessTaskSql.java)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execScriptingOrders (SnpSessTaskSql.java)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt (SnpSessTaskSql.java)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSqlI.treatTaskTrt (SnpSessTaskSqlI.java)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask (SnpSessTaskSql.java)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep (SnpSessStep.java)
    at com.sunopsis.dwg.dbobj.SnpSession.treatSession (SnpSession.java)
    at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand (DwgCommandSession.java)
    at com.sunopsis.dwg.cmd.DwgCommandBase.execute (DwgCommandBase.java)
    at com.sunopsis.dwg.cmd.e.i (e.java)
    at com.sunopsis.dwg.cmd.h.y (h.java)
    at com.sunopsis.dwg.cmd.e.run (e.java)
    at java.lang.Thread.run (unknown Source)

    Published by: Chris Rothermel on April 13, 2010 15:44

    Hello

    What ODI and patch version you are running.
    Looks like you are using a KM newer than the java files that are located in the oracledi\drivers directory, I would say that you need to update the files java essbase for a newer version.
    In the last few patch releases memory size buffer has been added to the data load essbase KM for the use of the ASO, even if this meant you had to also update the java files as well as in the version.

    See you soon

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

  • Service Pack OS supports for the Essbase Server

    I'm embarrassed that I don't know the answer to that, however...

    A colleague asked if Windows Server 2003 SP2 is supported for Essbase 9.x.

    The only reference I can find in the documentation is for Windows Server 2003 SP1.

    Please note that I am not asking "is it supported? I'm trying to understand how I'm supposed to 'officially' in the general case, for not asking to Oracle. Am I supposed to assume that if SP1 is listed, SP2 etc will be also supported? If so, this policy is evidence anywhere? Am I just lack the 'fair support matrix '?

    Thank you!

    I wrote my last comment as a general comment because I know errors in the documentation. I had a client installation on Oracle Linux 11.1.1.3. Support doc does not list their version of Linux, but is a version that did not even exist. It was necessary to speak to a number of people at Oracle to determine that their operating system has been supported.

  • Domain for the APEX server change

    (Subject to modification to handle, but can not show more - Dave Mallasch)

    Our APEX is located on a Windows desktop computer that people knock remotely at the moment. I had a few questions about possibly spend this application on a server:

    (1) is there a downside to place APEX on a virtual server? Did not find anything in this regard, I wanted to see if anyone had experiences with it running on a normal server VM v.

    (2) we have to change the domain where it is located. I couldn't find references to the area and could not find anything in this regard in the documentation. It will affect an existing Apex instance if we change the field on the machine as it is (Windows environment - we would be changing domain it is a member as well as the name of the computer but keep the same IP address)?

    Thanks in advance!

    Dave M.

    Hi Dave,.

    I don't know if this is considered "production use", but I show APEX on 11g in a virtual machine all the time - it just works great. I got no problem with it.

    Problems with the modification of the domain name are really associated Web server and not APEX associated. I know when I get up a new VM with a new IP address, as long as customers can resolve a name for the IP address, everything works without error.

    If you have any questions, report that they return here and I'd be happy to try to help. But I do suspect that you will encounter problems.

    Joel

  • Error using IKM SQL for Hyperion Essbase (data)

    Get (last Intnermost): file ' < string >, line 75, in?
    Error 'com.hyperion.odi.common.ODIConstants' attribute class has no attribute 'PRE_LOAD_MAXL_SCRIPT '.

    I'm not usiing a pre load a MaxL Script. I even put the 'ABORT_ON_PRE_MAXL_ERROR' to no.

    Any help would be appreciated.

    Hello

    You may be using the old java (jar) files in your directory of driver, in the most recent class ODIConstants has been updated to include "PRE_LOAD_MAXL_SCRIPT".

    I would try to install a patch later or a later version of ODI.

    See you soon

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

  • WebLogic in Hyperion Installation(for Distribution env) Server deployment

    Hi all

    We plan to install Hyperion 11.1.2.2 on 4 servers.
    In a server, we installed, SQL Server 2008.

    And 3 servers for Hyperion.
    Server 1: Foundation, EPMA, FDM
    Server 2: Essbase
    Server 3: planning

    Now, the question is how can I deploy web applications to the same Weblogic Server that we have installed in Server1 (Foundation)?

    At the time of the installation of Server2, she asked what area you want to deploy on new or existing domain?
    When I select an existing one it is unable to take the domain name of the Server1 Server?

    Thank you
    Mady

    You do not have to manually deploy, deploy it to the database server, start the weblogic administration server, deploy to an existing on other servers domain.

    See you soon

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

  • Is that Hyperion Essbase works with ODI 11 g under a different interval?

    Hi all
    I installed ODI 11.1.1.3 IP (172.x.8.21) and Hyperion Essbase (172.x.0.36). With different domain range ODI(172.x.*8*.21) and Essbase(172.x.*0*.21) so it will work under different IP field varies from 8 to 0?
    Cause I tried to develop the physical data for Essbase server and I wasn't able to view the Application diagram and any other object in the drop-down list: catalog, database Scheam etc.
    The evening I am offering appropriate domain name, port and user name and passowrd. even I tried to provide the direct IP address.
    Server details:
    1 - Hyperion Essbase server name: Essbaseserver
    2 port: 1423
    3 - admin
    4 - xxxxxx

    as you know button test the guy connection does not work for Essbase his only works for the RDBMS in ODI.
    looking for your help.

    Thank you

    Yes it works even if the drop-down list will not automatically be filled and you can't click the test button because it is mainly for technologies that use JDBC, you must manually enter the app/db

    See you soon

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

  • Adapter ODI for Hyperion planning

    Hi gurus,

    I have problem with definition for Hyperion planning server data connection. What database server, I need to use for the connection of Hyperion Planning. Planning of the app is on separate servers that the cube. Cube is on Essbase server. This means that I need to two different connections, one for the data (essbase cube) for metadata (server when considering app). Is this really?

    I made only one connection on essbase server and try reverse engineering to cube essbase, which I made with the planning, of model, but it gives me an error:

    [com.hyperion.odi.planning.ODIPlanningException: com.hyperion.odi.planning.ODIPlanningException: could not connect to the instance of planning on host hostname], [port] port, check if connect you are correct.

    Thank you

    I put port 11333 on the server where is installed my workspace for planning, and finally I managed model of reverse engineering for Hyperion planning.

  • Unable to see the filters in the Shared Services for Application Essbase

    Hi all

    I use Hyperion version 11.1.2. I created a filter in Essbase for a single Application. I gave you access to the server for the Essbase server in Shared Services. When I click on access control assign on Essbase server and after selecting the user, it does not display the filter I created in Essbase. Pls advice

    Hi, you must also assign the user access to the application of Essbase, e.g. of filters. When you assign an access control, right-click on the application, not the essbase server.
    If you have several database, then you select the database that you created the filter.

  • Unable to connect to Essbase Server (11.1.2) SmartView

    Hi all

    We use the Hyperion Version 11.1.2
    According to Smart, we are unable to create a connection for the Essbase server, when I chose the shared connections it gives a
    error: failed to connect Shared services Provider, I can't find a place to give details, the Essbase Server

    My main goal to connect to Essbase server using SmartView, can all help me to solve this

    It's really urgent requirement of the customer

    Concerning

    S

    Please mark this as answered.

    HTH-
    Jasmine.

Maybe you are looking for

  • How to find and install software for printer hp laserJet 1320 series

    We have a printers hp laserJet 1320 series in our hotel that I would install on my pc. Unfortunately, the printers custordians lost the CD and my laptop uses flash rather than CDs discs. Can you help me how to install the soft ware from the Internet

  • 15 - a010sb of Compaq notebook pc: BIOS settings change

    I would like to change the Bios settings. I would like to first of all "Safe Boot" to DISADLED When I do, I get a screen with this text: Change of operating system startup Mode A change in the Safe Mode to Boot operating system is pending. Please ent

  • Failed to update Windows Vista pack 2 error 0 x 80041010

    I tried several times the Windows Vista Service Pack 2 update (KB948465), but accepting after the benefits, etc. the said engine: Instalattion has not been successful. An unknown error has occurred error code: 0 x 80041010.Could you please help me wi

  • Communication inter-locataire on ACI

    Hi Experts, I think I can use subnets shared under a BD when I need an inter-VRF on ACI communication. But I wonder how I can set up communication between tenants on ACI when a project requires this type of communication for a period of time. Thanks

  • How to display a custom launch my app content

    Hello everyone, I'm trying to display content customized (as an image) when my app starts. I don't even know what is the correct form of the call for this type of content. For example, when you start an application, you still see the icon or a resump