Set up multiple alias tables

Hi John,.

We intend to implement multiple alias tables in our planning application.

I have a few questions about the same. I had gone through to the planning and essbase Administrator's guide.

1. in the administration of planning guide, it is mentioned that a member may have 32 alias by Member of the dimension, including the default alias.

What these 32 alias (if used all 32) get stored in 32 different tables?

2. in Essbase guide it says you can create up to nine tables aliases in Essbase

Is it so and more from 32 can I create more than 9 tables in essbase? If I use more than 9 planning tables when I update the essbase application will have only 9 or create all aliases defined in essbase

3. at a time can I use several aliases for different members or is a single table active for the entire application

Please let me know some info from the use of multiple pseudonyms and how it works.

I know that the issue is for John :) but I hope you don't mind putting me my free of cost (may be waste of time) entered ;)

2. in Essbase guide it says you can create up to nine tables aliases in Essbase

Is it so and more from 32 can I create more than 9 tables in essbase? If I use more than 9 planning tables when I update the essbase application will have only 9 or create all aliases defined in essbase

The Planning and Essbase can have 32 Alias tables:
http://docs.Oracle.com/CD/E17236_01/EPM.1112/esb_dbag/limits.html

1. in the administration of planning guide, it is mentioned that a member may have 32 alias by Member of the dimension, including the default alias.
What these 32 alias (if used all 32) get stored in 32 different tables?

For more information about aliases, which are stored, you may need to take a look at HSP_ALIAS and HSP_OBJECT.

3. at a time can I use several aliases for different members or is a single table active for the entire application

You can set which Alias table to use, at the same time a single table will be active.

For more information:
http://docs.Oracle.com/CD/E17236_01/EPM.1112/hp_admin/ch12s03s01.html
http://docs.Oracle.com/CD/E17236_01/EPM.1112/hp_admin/ch12s03s07.html

Bravo...!
Rahul S.

Tags: Business Intelligence

Similar Questions

  • Not able to select DTS members when using default alias table

    Hello

    I chose all descendants of my period dimension in a chip-slice, so I can use the A-T-J when I make an ad-hoc analysis.
    To create a slice of smart, select table alias to use: "by default" or "none".
    When I select 'none' I see al the time members in the DTS selection box.

    However as I select 'Default' I see that these members of the DTS box selection that * don't * have an alias name.
    This intrigues me. I expect to be able to choose among all the names alias here.
    Anyone who is familiar with this problem? Should I set my parameters in table alias somewhere?

    Thank you.

    I connected it with support.
    They have reproduced this issue in version 11.1.1.1, and it were classified as a bug in this specific version.
    (They also tested in 11.1.1.3 version where it could not be reproduced)

  • I have real problems, set up multiple profiles on a windows pc 7... help please

    I set up multiple profiles on my other pc, op xp pro system, but I tried to do exactly the same thing on this pc with windows 7 and it works just...
    I get the new profile set up and I set up a Profile Manager shortcut on my desktop, but when I try to untangle the shortcut in the new profile, it tells me that it cannot find the target...
    When I open the new profile in the Profile Manager, he doesn't sit separate on the taskbar and is just another page of my default profile...
    Firefox exe is located in a speech very weird on the comp ' C:\Program Files (x 86) \Mozilla Firefox ".
    I'm pulling out my hair any help you can give would be really appreciated...

    Using multiple profiles - Firefox MozillaZine Knowledge Base-
    Use -no-remote on departure when using default Firefox and/or profile
    http://KB.mozillazine.org/Using_multiple_profiles_-_Firefox

    The profile names are case-sensitive, you must use - no.-remote or your default browser or not your default profile

    http://dmcritchie.MVPs.org/icons/win7_quicklaunch_large.PNG

    target:

    "C:\Program Files (x 86) \Mozilla" p - Firefox-three-no-remote

    Start:

    "C:\Program Files (x 86) \Mozilla Firefox".
  • How to set up multiple monitors with desktop

    How can I set up multiple monitors with desktop computer?  (DVI output)

    http://Gizmodo.com/5141386/win-7-tip-adding-extra-monitors-is-so-easy-a-Caveman-could-do-it

  • How to migrate data from a source to multiple targets (tables)?

    How to migrate data from a source to multiple targets (tables)? Describe the General steps, please or point me to a tutorial

    Yes, a table in a mapping element can be source and target at the same time (i.e. a target can be reused as a source for the rest of the map on the right side of the table).

    Don't forget to check the order of loading (in the property map), to ensure that the reused as source is loaded before the final table target table.

    I tested it and it works. However, the documentation is not said in the link I gave you above:

    "Each element of data store that has entries but no exits in the logical diagram is considered a target."

    Usually, I tend not to do. I am in favour of a Divide and Conquer approach and try to have my mapping as simple as possible. It is easier to debug and maintain.

  • The default Alias table

    I am trying to find a way where I can automatically select the table alias in Smart mode by default. For the moment, I have to select change alias table none default whenever I create a new report or export of a planning report. I think 'by default' would be the default, but apparently "none" is the default value.

    Thank you

    Are you talking about a recovery, Essbase in Smart View? Unfortunately, you must select the alias table whenever you connect to the database.

    It's a huge pain.

    I think (but may be wrong on this) that this is not yet resolved in 11.1.2. I'll go check my installation and see what happens.

    Kind regards

    Cameron Lackpour

    Published by: CL 16 July 2010 19:48
    Oracle did fix this in 11.1.2. I created a shared Sample.Basic connection, modify the default alias table, quit Excel, opened upward, reconnected, retrieved my very favorite Essbase Database in the vast world, has made a recovery - your da, Colas, Root Beer, etc. Alias appear to be sticky connections. Thanks, team Smart View.

  • How to load a multiple column table in the coherence of caches?

    How to load a multiple column table in the coherence of caches?
    I want to load a multi-column (about 20 columns) table in cache coherence. How to change the following code (spatially how to change the SQL SELECT statement)?
    Is the following select statement enough: Select the key, the value of EMPLOYEES ?
    public static void bulkLoad(NamedCache cache, Connection conn)
        {
        Statement s;
        ResultSet rs;
        
        try
            {
            s = conn.createStatement();
            rs = s.executeQuery("select key, value from table");
            while (rs.next())
                {
                Integer key   = new Integer(rs.getInt(1));
                String  value = rs.getString(2);
                cache.put(key, value);
                }
            ...
            }
        catch (SQLException e)
            {...}
        }

    First of all, you need a class to hold your 20 fields:

    public class Data {
    
        private String field1;
        private String field2;
        private String field3;
        private String field4;
        private String field5;
        private String field6;
        private String field7;
        private String field8;
        private String field9;
        private String field10;
        private String field11;
        private String field12;
        private String field13;
        private String field14;
        private String field15;
        private String field16;
        private String field17;
        private String field18;
        private String field19;
        private String field20;
    
        public Data() {
        }
    
        public String getField1() {
            return field1;
        }
    
        public void setField1(String field1) {
            this.field1 = field1;
        }
    
        public String getField2() {
            return field2;
        }
    
        public void setField2(String field2) {
            this.field2 = field2;
        }
    
        public String getField3() {
            return field3;
        }
    
        public void setField3(String field3) {
            this.field3 = field3;
        }
    
        public String getField4() {
            return field4;
        }
    
        public void setField4(String field4) {
            this.field4 = field4;
        }
    
        public String getField5() {
            return field5;
        }
    
        public void setField5(String field5) {
            this.field5 = field5;
        }
    
        public String getField6() {
            return field6;
        }
    
        public void setField6(String field6) {
            this.field6 = field6;
        }
    
        public String getField7() {
            return field7;
        }
    
        public void setField7(String field7) {
            this.field7 = field7;
        }
    
        public String getField8() {
            return field8;
        }
    
        public void setField8(String field8) {
            this.field8 = field8;
        }
    
        public String getField9() {
            return field9;
        }
    
        public void setField9(String field9) {
            this.field9 = field9;
        }
    
        public String getField10() {
            return field10;
        }
    
        public void setField10(String field10) {
            this.field10 = field10;
        }
    
        public String getField11() {
            return field11;
        }
    
        public void setField11(String field11) {
            this.field11 = field11;
        }
    
        public String getField12() {
            return field12;
        }
    
        public void setField12(String field12) {
            this.field12 = field12;
        }
    
        public String getField13() {
            return field13;
        }
    
        public void setField13(String field13) {
            this.field13 = field13;
        }
    
        public String getField14() {
            return field14;
        }
    
        public void setField14(String field14) {
            this.field14 = field14;
        }
    
        public String getField15() {
            return field15;
        }
    
        public void setField15(String field15) {
            this.field15 = field15;
        }
    
        public String getField16() {
            return field16;
        }
    
        public void setField16(String field16) {
            this.field16 = field16;
        }
    
        public String getField17() {
            return field17;
        }
    
        public void setField17(String field17) {
            this.field17 = field17;
        }
    
        public String getField18() {
            return field18;
        }
    
        public void setField18(String field18) {
            this.field18 = field18;
        }
    
        public String getField19() {
            return field19;
        }
    
        public void setField19(String field19) {
            this.field19 = field19;
        }
    
        public String getField20() {
            return field20;
        }
    
        public void setField20(String field20) {
            this.field20 = field20;
        }
    }
    

    Then you can use it to store data in you original code

    public static void bulkLoad(NamedCache cache, Connection conn)
        {
        Statement s;
        ResultSet rs;
    
        try
            {
            s = conn.createStatement();
            String sql = "select key, value, value2, " +
                    "value3, value4, value5, value6, " +
                    "value7, value8, value9, value10 " +
                    "value11, value12, value13, value14, " +
                    "value15, value16, value17, value18, " +
                    "value19, value120 from table";
    
            rs = s.executeQuery(sql);
            while (rs.next())
                {
                Integer key   = new Integer(rs.getInt(1));
                Data data = new Data();
                data.setField1(rs.getString(2));
                data.setField2(rs.getString(3));
                data.setField3(rs.getString(4));
                data.setField4(rs.getString(5));
                data.setField5(rs.getString(6));
                data.setField6(rs.getString(7));
                data.setField7(rs.getString(8));
                data.setField8(rs.getString(9));
                data.setField9(rs.getString(10));
                data.setField10(rs.getString(11));
                data.setField11(rs.getString(12));
                data.setField12(rs.getString(13));
                data.setField13(rs.getString(14));
                data.setField14(rs.getString(15));
                data.setField15(rs.getString(16));
                data.setField16(rs.getString(17));
                data.setField17(rs.getString(18));
                data.setField18(rs.getString(19));
                data.setField19(rs.getString(20));
                data.setField20(rs.getString(21));
                cache.put(key, data);
                }
            ...
            }
        catch (SQLException e)
            {...}
        }    
    

    Of course your data object would need the appropriate field names and you will have no channels for all types. It must also implement equals and hashCode and ideally PortableObject.

    JK

  • How to add multiple sets of data in table 2D

    I have 10 ovens that can be selected. According to what furnace (s) are selected/indexed, the following must occur. Each oven has its own line so that the original table would be 1 column and 10 lines. Whenever the temperature is checked later, it must be written in the line for the respective oven, based on the index. I want to keep all the data, thus, without crushing. I tried to use automatic indexing and looping, but the output table only seems to write in the 1 column. Any help is appreciated. If I've left something, ask.

    One thing that will bite you in Lacrosse is that a 2D matrix must be rectangular, what this means is that when you read the first sensor, all other ovens will get zero drafted to their rank in the same column.  Some common ways to get around this.  First, use a table of cluster in a table (see example).  You can also use a cluster of a 1 d table and a 2D array.  Use table 1 d to store the number of values in a given line (meter) and 2D his thing to AutoFill table.  When you go to get the values in a row, use the meter to specify the subset of take.  Several times I wrap this up in a functional overall, aka engine of action.  If you do a lot, we can help you to implement one.  If you need something to get started here is an example using an array of table cluster.  What I find interesting is that when you are indexing a single Bay, all the others will follow suit.

  • How to combine features of Thunderbird each access to different sets of multiple e-mail accounts on 2 old computers in a configuration of Thunderbird on my new computer?

    The laptop to access my personal email accounts (4 different ones) and my company email accounts (2 different ones). The old office can access my email accounts personal and emails from my wife (2 accounts for her). I now have a new desktop computer and I would like access to all the accounts of a single Thunderbird. It would be extremely difficult to start a new Thunderbird and enter all account information for all of these multiple accounts of a new beginning and re-upload all emails. I know that I can save the Thunderbird profiles separately and restore them to separate the case of Thunderbird on two distinct users, but it's a pain to change username every time one of us needs to see a different e-mail account. If multiple accounts cannot be restored in an instance of Thunderbird new monkey, is there a way to set up two instances of Thunderbird on a single office and restore backup of a computer in a Thunderbird and the other in the second? Thank you.

    Menu (alt + T) OK, tools > options > Security > passwords > saved passwords and by clicking on the button show the password appears what you forgot.

    I think that the closer you get to what you want is two profiles...

    If you change a shortcut for the following arguments according to the target

    -ProfileManager  -no-remote
    

    Thunderbird will run twice on your computer (so it can be opened in each profile) and ask which profile every time it starts. If you use the argument Pei [profile Name] then Thunderbird will begin with the indicated profile (required several shortcuts).

    My goal of looks like this

    "C:\Program Files (x86)\Daily\thunderbird.exe" -ProfileManager  -no-remote
    
  • To win a set of multiple strain gauges

    Hello

    We are using several gauges of constraint and "Calibration of Shunt DAQmx Perform (strain) .vi" for calibration of shunt. We want to output, gain adjustment, used by the "Shunt DAQmx Perform (strain) .vi calibration" for each caliber. We've had some success using a property node (see attached pictures 1 and 2); However, when we try to use the same method to achieve adjustment gain, any other strain gauges (picture 3), the readings are always 0 (visible) in image 2.

    If someone could give some insight on how to get the gain adjust for several gauges, it would be highly appreciated.

    See you soon

    Bart Scicchitano

    (using his account of supervisors with his permission)

    Hi Bart,.

    You can be is 0 because there are several channels in the same task, then the property node does not know the following. You can set the active channel by using the Active Channel property node. Place a DAQmx channel property node and select ActiveChan from the drop-down list. Give it a try and see if you can read the multiple factors of gain.

  • Dynamically set the size of table

    Hello world!

    I have a table of cluster (each cluster contains 4 values) and according to the interactions between users, new groups are added to the table. I would like to set up a 'Clear' button which removes all elements inside the table, but I can't find a solution so far. The best I can do is put all the elements of the cluster to 0 but the cluster itself is always in the table.

    Does anyone know how to do?

    Thank you very much

    Julien

    Hi jfcors,

    the cluster must be in the table, because it defines the type of data in the table.

    You also seem poorly understand the term "empty array": a table is empty when there is no elements inside!

    Extracted from:

    @aCe:

    Your example only removes an element of an array, but not the entire table! Sorry, it's okay...

  • Reset do default sets a size of table to zero?

    What is the function reset 2D game table size to default to zero? Aid is not explicit on this.

    Otherwise, what is the best way to set a table 2D zero size?

    The "it takes less time to try just to post a message asking if it is": the answer is Yes. But only if the default value is an empty array to start. Obviously.

    Otherwise, what is the best way to set a table 2D zero size?

    Wire a constant empty array to your choice of a local variable or a node of 'Value' property, in view of the elimination of any potential race condition.

  • How to trace a particular set of data in table 2d

    Hello

    I have a case in which I got a picture of 2D with index(1-20) data making it 3D, now I have to draw together only specific data such as 1.5 indexes and exclude a 3rd or draw 1-10 index data. What a way in labview so I can choose the particular set and it draw on the graph.

    Please let me know,

    Thank you

    Ankit

    Get a subset of the table and remove the pages you don't need.

  • setting up an alias

    The goal is to use a URL and be asked to select a domain to connect to.

    I create an alias in the connection profile

    create a connection with authentication profile to a new ldap server in server groups.

    When you test the LDAP authentication on the asdm I get rejected authentication: unspecified

    CLI debug output 255 ldap:

    [- 2147483574] Starting a session
    [- 2147483574] New Session request, the 0x00007ffe60a2d7c8, reqType = authentication context
    [- 2147483574] Fiber has started
    [- 2147483574] Create LDAP context with uri = ldap://192.168.44.200:389
    [- 2147483574] To connect to the LDAP server: ldap://192.168.44.200:389, status = success
    supportedLDAPVersion [-2147483574]: value = 3
    supportedLDAPVersion [-2147483574]: value = 2
    [- 2147483574] Liaison as a vpnaccount
    [- 2147483574] Simple Authentication for vpnaccount at 192.168.44.200
    [- 2147483574] LDAP search:
    Base DN = [DC NEWDom =, DC = co, DC = en]
    Filter = [vpnaccount = 720310]
    Range = [subtree]
    [- 2147483574] The analysis of returned search results State failure
    [- 2147483574] Fiber output Tx = 280 bytes Rx = 844 bytes, status =-1
    [- 2147483574] End of the session

    I know that you can't say the problem of this info, but if someone can tell me what to look it would be appreciated.

    Hello, Michael!

    I think, a strange line is:

    Filter = [vpnaccount = 720310]

    In my opinion, there should be something like this:

    Filter  = [sAMAccountName=vpnaccount]
    I advice allows you to check the LDAP set the card. Please, see the following example: https://supportforums.cisco.com/document/139241/remote-access-vpn-asa-authentication-using-ldap-server I hope this helps.
  • Hyperion Planning Alias table question

    Hi all

    We have a problem with the Alias of Hyperion planning table.

    For example: the country Brazil has Portuguese as official language, but the table Alias must be BRL_Alias.When we tried to name, the name of the Alias as BRL_Alias it takes the Portuguese characters such as question marks (?).
    Could you please let us know how this can be resolved.

    Thank you

    Hello

    you have created your application in unicode mode?

    You can check in the library of the application-> tools-> manage the Source of data for planning. Select your data source and see if the "Unicode support" is true

    Kind regards

    Ilias

Maybe you are looking for

  • I can't display icons in the header of the yahoo mail, how to fix?

    The yahoo icons do not work with Mozilla Firefox for the desktop browser, are there patches?Thank youMichelle

  • How do I get rid completely of Babylon who downloaded with Firefox?

    Search for Babylon downloaded with Firefox download.I have removed the toolbar and changed the search and set Google as my browser but search for Babylon comes first everytime I open my browser.I have reset all settings by default, but Babylon always

  • E5-471-34VF headphone

    Hi, when I plugin Earphones / Headphones my portable speakers don't mute not. I can hear the sound in the headphones. Please suggest a solution. Thank you

  • Compaq CQ58-bf9WM: upgrade memory for Compaq CQ58

    Compaq CQ58-bf9WM came with 2 GB of memory and 1 slot.  I've recently updated 8 to 8.1 windows (I think its 64-bit, but it's the original operating system updated) and AMD inside.  What is the maxium memory slot amount single will execept.  Care say

  • Pavilion Elite e9150t and monitor Dell

    Hello world! I'm new to this forum. Two months ago I bought the Dell S2209W 22 "full HD panoramic monitor. Now, I fell in love with Pavilion Elite e9150t and want to buy it but I don't know if the monitor plugs match e9150t. Any suggestion would be a