Column "Date Active' OWB 11.1 Cube operator

Hi Experts,

Recently, I've defined an OWB 11.1 cube using cube editor. The result object contained a "Date Active" column, which was visible in the cube object in a map. The underlying table or the Cube Editor showed the "active" column

Someone at - it a short explanation on what is the idea of this column and how it could / should be used?

Thanks for your help

Concerning
Andy

Yes, correct. After obtaining the correct foreign key of the dimension value it s not necessary to save the current data value.

Alex

Tags: Business Intelligence

Similar Questions

  • OWB Cube operator

    Hi all

    Can I fill a cube MOLAP using the cube operator? I don't see an option under the poulate cube storage in AWM. We use OWB 11 GR 1 material and database Oracle 11.1.0.7.


    Thank you
    Samurai.

    Hello

    Yes, the cube operator can be used for cubes from relational and analytic workspace (AW). Cubes AW in GR 11, 1 OWB material are of the form of 10g. Check out the warranty OWB, for example the post below.
    http://www.Oracle.com/technology/products/warehouse/PDF/OWB10gR2%20and%20Oracle%20OLAP.PDF

    See you soon
    David

  • Edition of text column data Format database columns of answers

    Hello

    We use Oracle Business Intelligence Enterprise Edition v10.1.3.4 on the cube for OLAP Oracle 11 g. Reports we create have (among other things) columns with an underlying type of VARCHAR data in oracle tables.

    When we try to change the properties of such a VARCHAR column column, "Data Format" tab shows only 'Plain Text' as an option under the menu drop-down "Override default data Format". Options to display the text 'HTML' or 'LINKS', etc. are not available.

    All entries on what can be done in the answers or the repository to get these options for formatting of column data are highly appreciated.

    Thank you
    Piyush

    You set your HardenXSS to false in the instanceconfig.xml file? By default, OBIEE is set to true. Setting to false allows the HTML tags to appear as options for fields VAR. check it out here... Chapter 2, page 37.

    http://download.Oracle.com/docs/CD/B40078_02/doc/bi.1013/b31766.PDF

  • Confusion of length of column data type

    Hi all

    To learn about my column data type and length, I have run the following query. However, when I confirm it with the table_name desc command, I see that the lengths of data do not correspond. You have an idea?

    > > select column_name | » '|| DATA_TYPE | » ('|| ( data_length|') ' col_info all_tab_columns where table_name = 'CUSTTABLE' and column_name = 'ACCOUNTNUM;

    > > ACCOUNTNUM NVARCHAR2 (24)

    > > desc CUSTTABLE.

    > > ACCOUNTNUM 1 N NVARCHAR2 (12)

    Concerning

    Charlie

    NightWing wrote:

    By the way I couln t understand what were you thinking when you explain to no.

    I missed you NVARCHAR2 column and thought it was VARCHAR2. When you declare the semantics of VARCHAR2 column length is specified explicitly or implicitly. Explicitly suffixing length with BYTE or CHAR and implicitly when you specify the length of the right itself. Then length is based on the value NLS_LENGTH_SEMANTICS session. So let's assume you generate table create statement (and it seems that you is, based on column_name |) » '|| DATA_TYPE | » ('|| ( data_length|') ' ). Then it does not matter if use use data_length or char_col_decl_length. It will be regadless semantics implied length of what you use. Therefore, when you run create table instructions column length will be interpreted as bytes if current NLS_LENGTH_SEMANTICS byte value. But same length is interpreted as the characters if current NLS_LENGTH_SEMANTICS a char value. As you can see, in order to generate create table statement we use explicit semantic length column, otherwise create table statement can produce lengths of different column in the source table.

    SY.

  • How to cut the column data

    Gurus in the morning

    I have two tables with the data in the corresponding column, BUT I need to cut the columns in a table
    the data is displayed as follows in table xpq_log
    LOG_DATE                     LOG_PTR     LOG_HDR
    01/06/2011 00:00:00     0609pro     0609IN002C_06
    04/06/2011 00:00:00     0609pro     0609IN002C_06
    05/06/2011 00:00:00     0609pro     0609IN002C_06
    06/06/2011 00:00:00     0609pro     0609IN002C_06
    07/06/2011 00:00:00     0609pro     0609IN002C_06
    09/06/2011 00:00:00     0609pro     0609IN002C_06
    10/06/2011 00:00:00     0609pro     0609IN002C_06
    12/06/2011 00:00:00     0609pro     0609IN002C_06
    01/06/2012 00:00:00     0609pro     0609IN002C_06
    02/06/2012 00:00:00     0609pro     0609IN002C_06
    03/06/2012 00:00:00     0609pro     0609IN002C_06
    06/06/2012 00:00:00     0609pro     0609IN002C_06
    07/06/2012 00:00:00     0609pro     0609IN002C_06
    08/06/2012 00:00:00     0609pro     0609IN002C_06
    09/06/2012 00:00:00     0609pro     0609IN002C_06
    In the table of printpdf as follows
    PDF_REPORT     PDF_DESCRIPTION
    IN002C                     STOCK FILE PURGE - PRINT WH CONTROL
    How can I cut the column data (log_hdr) to match column (pdf_report)?

    Any help will be much appreciated

    user11978142 wrote:
    Yes the code always starts with an alphabetic character and always ends before the underscore character and the prefix is always digital.

    And Yes to the second comment WRT 1 to many relationship.

    WRT the duplicates I want the info displayed even if there is no matching printpdf

    You talk a LEFT OUTER JOIN, then:

    See the example below (the statement are just to reproduce the paintings, just use the last query):

    WITH xpq_log AS
    (
       SELECT '0499SYS003A_06' log_hdr FROM DUAL UNION ALL
       SELECT '0612PV410W1_06' log_hdr FROM DUAL UNION ALL
       SELECT '0609IN002C_06' log_hdr FROM DUAL UNION ALL
       SELECT '2201PA100D1_30' log_hdr FROM DUAL
    )
    , printpdf AS
    (
       SELECT 'SYS003A' pdf_report, 'STOCK FILE PURGE - PRINT WH CONTROL' description FROM DUAL UNION ALL
       SELECT 'PV410W1' pdf_report, 'Description 2' description FROM DUAL
    )
    SELECT a.log_hdr, REGEXP_SUBSTR (a.log_hdr, '[[:alpha:]][^_]*') AS pdf_report
         , b.description
      FROM xpq_log a LEFT OUTER JOIN printpdf b
           ON pdf_report = REGEXP_SUBSTR (a.log_hdr, '[[:alpha:]][^_]*');
    
    Output:
    LOG_HDR        PDF_REPORT     DESCRIPTION
    -------------- -------------- -----------------------------------
    0499SYS003A_06 SYS003A        STOCK FILE PURGE - PRINT WH CONTROL
    0612PV410W1_06 PV410W1        Description 2
    2201PA100D1_30 PA100D1
    0609IN002C_06  IN002C                                           
    

    Kind regards.
    Al

  • ToolTip on the column data

    Hello

    I want to display the ToolTip on the column data.
    To this end, I work with the data format.
    under data format I use custom format.
    on the format of data, I wrote the following code.

    < b title = "This" about says month"> month < /b >

    but it demonstrated ToolTip on 'months' and not on real data.

    Is any HTML that display dynamic data, then we can put this code instead of 'months '.

    Please, give me suggestion.

    Concerning

    Prashant

    Did you add the ' @' in your HTML simbol? They must state the values in your column.

    You should have something like months @

    KR,
    A

  • Addition of days for the column date of OBIEE

    Hi gurus,

    I have a date column, date alert and based on this column, I need to create another column to date, due date. The formula will be like,
    Due date alert = date + 30 days. I found a function, TimeStampAdd when you change the column formula but not sure how to use it. Pls help me to implement this.

    Thanks in advance.

    TIMESTAMPADD(SQL_TSI_DAY,30,alertdate)

    TIMESTAMPADD (interval, intExpr, timestamp)

    e.g:TIMESTAMPADD (SQL_TSI_DAY, 3, TIMESTAMP'2000-02-27 14:30:00 ')

  • Cannot run view cube operation, zero

    Hello

    SmartView users use to connect to the 11.1.1.3 cube, but get the following error:

    "Cannot perform view cube operation, zero."

    Any advice?

    Thank you

    It is a message meanless stupid for real problems. Users can delete missing lit on an intinal recovery and nothing is returned. Clear delete missing in options and users should be good.

  • Is it possible to search a single column in a multi column data store?

    Suppose I have create a context index by using a data column for the columns first_name, middle_name, last_name multi store.

    So I can search for all the columns in the index using contains().

    Is it possible to use contains() for just search one of the columns in a warehouse of multi - for example just last_name column?

    In some cases a desire to search for all of the columns, in other cases, only one of the columns.

    Yes, see the doc:
    http://download.Oracle.com/docs/CD/B14117_01/text.101/b10730/cdatadic.htm#i1006391

    If you use the default behavior, so your column data will be separated by XML tags.

    John Peter DOE

    You must then define each of these items, or to use 'auto_section_group '. You can search on them to help
    ... contains (col, "peter in middle_name") > 0

    See the example:

    SQL> drop table t;
    
    Table dropped.
    
    SQL> create table t (first varchar2(20), middle varchar2(20), last varchar2(20));
    
    Table created.
    
    SQL> insert into t values ('John', 'Peter', 'Doe');
    
    1 row created.
    
    SQL> insert into t values ('Peter', 'Frederik', 'Smith');
    
    1 row created.
    
    SQL> exec ctx_ddl.drop_preference('my_mcds')
    
    PL/SQL procedure successfully completed.
    
    SQL> exec ctx_ddl.create_preference('my_mcds', 'multi_column_datastore')
    
    PL/SQL procedure successfully completed.
    
    SQL> exec ctx_ddl.set_attribute('my_mcds', 'columns', 'first,middle,last')
    
    PL/SQL procedure successfully completed.
    
    SQL> create index ti on t (first) indextype is ctxsys.context
      2  parameters ('datastore my_mcds section group ctxsys.auto_section_group');
    
    Index created.
    
    SQL> select * from t where contains (first, 'peter')>0;
    
    FIRST               MIDDLE            LAST
    -------------------- -------------------- --------------------
    John               Peter            Doe
    Peter               Frederik            Smith
    
    SQL> select * from t where contains (first, 'peter within middle')>0;
    
    FIRST               MIDDLE            LAST
    -------------------- -------------------- --------------------
    John               Peter            Doe
    
  • connect to the source of data in OWB

    Hello
    I don't want to connect to a database as a source of data in OWB 11g,
    I use a user name and password to connect to the DB, the user has no objects but I can see other patterns and their objects via tools like developer sql with this user.
    How to connect to a specific schema in my DB, and import the data source with this user/pass via OWB?

    concerning
    Judite

    Hi judite

    The definition of location in OWB has a user name and password that is used for authentication and a schema that is used to reference objects of. You can use X as the user authentication schema and the schema Y for the reference schema, then objects of there will be imported.

    See you soon
    David

  • 1 shot Vista Activation - product key nonsense - heard operating of the customer, but this is ridiculous its wonder no. bills so rich...

    I had to make a few complete re-install on my pc this week

    now the said activation tool my software (Vista Ultimate full) and more away again, he said ID is out of date (I just bought) so a surcharge of £46 is for support.
    I heard the customer's operating, but it's ridiculios his wonder no. bills so rich... What I can do to solve this problem - I had 3 days before, it stops working (LOL)

    To analyze and solve problems for Activation and Validation, we need to see a full copy of the report produced by the MGADiag (download and save to the desktop - http://go.microsoft.com/fwlink/?linkid=52012 ) tool
    Once saved, run the tool.
    Click on the button continue, which will produce the report.
    To copy the report in your response, click the button copy in the tool (ignore the error at this stage), and then paste (using r-click and paste or Ctrl + V) in your response.
    -IN YOUR OWN THREAD, please

  • alignment of the text file column data

    Hi all

    I want to format the output file as shown in need. Suggestions appreciated. I tried with lpad, rpad in the query. Also tried with justify right in the column after A5 format... (A5 size frame right)

    It is part of an important application.

    Please suggest.

    SQL file

    --------

    set verify off
    Set feedback off
    NewPage 0 value
    set pagesize 63
    set linesize 280
    TOPIC ON THE VALUE

    coil c:\test.txt.
    column heading "CTY" A5 format Change_types

    termout off Set

    Select CT of
    tab;

    output in the text file

    CTY
    -----
    N

    Power required:

    CTY
    -----
    N

    (* See space above)
    Oracle 10g
    running sqlplus

    Thank you

    HA!

    Hello

    G2500 wrote:

    Hi all

    I want to format the output file as shown in need. Suggestions appreciated. I tried with lpad, rpad in the query. Also tried with justify right in the column after A5 format... (A5 size frame right)

    It is part of an important application.

    Please suggest.

    SQL file

    --------

    set verify off
    Set feedback off
    NewPage 0 value
    set pagesize 63
    set linesize 280
    TOPIC ON THE VALUE

    coil c:\test.txt.
    column heading "CTY" A5 format Change_types

    termout off Set

    Select CT of
    tab;

    output in the text file

    CTY
    -----
    N

    Power required:

    CTY
    -----
    N

    (* See space above)
    Oracle 10g
    running sqlplus

    Thank you

    HA!

    This sounds like a job for LPAD.  What exactly have you tried?  It is difficult to say what hurts you without knowing what you were doing.

    I don't have a copy of your table, so I'll use the scott.dept table to illustrate:

    SELECT LPAD (dname, 20) department_name

    OF scott.dept

    ;

    Output:

    DEPARTMENT_NAME

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

    ACCOUNTING

    SEARCH

    SALES

    OPERATIONS

    You want to justify the right title, like this

    DEPARTMENT_NAME

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

    ACCOUNTING

    SEARCH

    SALES

    OPERATIONS

    ?

    If so, make this SQL * more order

    Department_name RIGHT-JUSTIFIED COLUMN

    before running the query.  COLUMN... JUSTIFICATION applies only to the topic, not the data.

  • Error for the custom "this intercompany Transaction Type is not associated a valid and active CM type' ACT in operation

    We are in the process of implementation ACT on the R12 upgrade instance. When you try to create an outgoing Transaction, we get the following error.

    'This Type of intercompany Transaction is not associated with a line type and the valid memo CM and active'

    It's the Type of Transaction that was created by requiring billing. We checked the missions of customer accounts and 'Intercompany CM' has been assigned to two units of operation concerned. What could be the reason?

    Kind regards

    Miranga

    Found the problem. Date_creation Type of Transaction was after the Date of GL

  • Impossible to enter data to Parent - Essbase BSO Cube level member

    Hello

    I'm unable to enter data on the form in line against a member parent in the entity dimension. The Web form gets classified off when I select the parent member (level 1) level enter store information of text (from the account Dimension)

    So my selection of page elements is the entity dimension and my lines are account codes (account dimension) and the column is a dimension of the year. I can enter and save data on the selection of the level 0 member, but when I select its parent, cells member is listed on.

    I understand that it is not advisable to enter data at zero level members. Users would still like to store textual information about the parent member. According to my understanding, BSO Cubes should allow us to enter data into the zero-level member.

    Kindly advice.

    Thank you

    Thomas

    Cube Essbase BSO
    Dimension feature - Sparse - element of the Web Form Page
    Account the Dimension - as always Dense - rows on the Web Form
    Year Dimension - Sparse - column on the Web form

    Yes, "Ascending" you cannot enter data at a higher level. You must do as a target version, then you can enter any level of data.
    You can also create several versions and make any version as 'target' version and enter the data for the target version.

  • What is the difference between the "Received" column &amp; "Date"?

    The entries in the columns of "Receipt" and "Date" of the re CT should be the same; When they differ, it is no more than a few minutes. I wonder, that these columns show exactly? Why do these two categories? It obviously has something to do with the header lines, but I could not find it.

    one is the date of the sending of the message, the other the arrival time. Usually it is only a minute or two different these days, hours were not uncommon in the past and even now, Google, will try and deliver a week. If your server down lovers and it takes 5 days to fix or the submarine cable is blown, you will get the google mail which takes days in the date but also fresh column like today in the received.

    I have only the date. By clicking on the right-hand column headings allow you to customize the columns are displayed

Maybe you are looking for

  • compatible printer for Mac OS 10.7.5

    I'm desperate trying to find a personal printer with Mac OS 10.7.5 My old printer died, and I was able to talk to the shops, technicians with a broken accent, :-(, for hours and cannot find a new printer.  I can't update my OS if I have, also, becaus

  • Centro memos does not start

    I always use a Palm Centro.  I had a memo open and accidentally launched hot Synch when I was not connected to the cable.  I kept trying to cancel to make a phone call emergency and finally removed the battery to reboot the device. Now every time I t

  • Satellite C670 - Strange "popping" noise

    Hello I just got a Satellite C670. Overall, I'm happy with it, but it makes a strange noise 'dry' every 5 minutes or so. It seems to come from the right under the keypad.It doesn't seem to affect performance. Any ideas? Thank you Stuart

  • Constant extreme airport issues

    IM really hoping someone has an idea of my problem. My setup is a 6th GEN airport connected to the modem with an ethernet cable from one end of the House to the other linking to my extreme gen 4. It worked great for about a month. The 4th gen now has

  • Unanticipated delays, the closure of dynamically called VI

    LV10.0 / WXP A VI is called dynamically by Method VI Run (wait until done = FALSE, Auto have Ref = TRUE). Queues are used to Exchange data with the main VI. Closing (the main VI "stop" message), the LabVIEW VI hangs for about 25 seconds (!) with one