Analytics features

Hi, I'm looking to solve a specific logic by using the analytical function, but I am not able to understand.

consider the following data from table.

create table sample_data (varchar2 (100) from table_source, cid varchar2 (30), mncid number, number s_id);

Insert into SAMPLE_DATA (TABLE_SOURCE, cid, MNcid, s_id) values ('DMT', '301', 1234, 5678);

Insert into SAMPLE_DATA(TABLE_SOURCE, cid, MNcid, s_id) Values('DMT', '301', 4321, 5678);

Insert into SAMPLE_DATA (TABLE_SOURCE, cid, MNcid, s_id) values ('DET', '301', 1234, 5678);

Insert into SAMPLE_DATA(TABLE_SOURCE, cid, MNcid, s_id) Values('DMT', '161', 2145, 9999);

Insert into SAMPLE_DATA(TABLE_SOURCE, cid, MNcid, s_id) Values('DET', '161', 2145, 7777);

Insert into SAMPLE_DATA(TABLE_SOURCE, cid, MNcid, s_id) Values('DMT', '602', 2144, 9899);

INSERT in SAMPLE_DATA (TABLE_SOURCE, cid, MNcid, s_id) values ('DET', '602', 2123, 9899);

Insert into SAMPLE_DATA(TABLE_SOURCE, cid, MNcid, s_id) Values('DMT', '602', 2334, 9849);

INSERT in SAMPLE_DATA (TABLE_SOURCE, cid, MNcid, s_id) values ('DET', '131', 2123, 9899);

INSERT in SAMPLE_DATA (TABLE_SOURCE, cid, MNcid, s_id) values ('TB', '131', 2123, 9899);

COMMIT;

I want to write a query using analytical functions such that it displays the following output.

table_source cid MNcid s_id Flag1, Flag2

161 2145 7777 DET Y S

DMT 161 2145 9999 N O

301 1234 5678 DET Y S

DMT 301 1234 5678 N O

DMT 301 4321 5678 N O

602 2123 9899 DET Y S

DMT 602 2144 9899 N O

DET 131 2123 9899 N O

DMT 602 2334 9849 N O

131 2123 9899 N TB O - this line should stay as it is in the table because it is not a DAND/DMT

The logic works like this:

1. a DMT folder may match a TBD records (cid and MNCID) or (cid and s_id)

a DMT 161 notice for example 2145 corresponds to a record DET cid and MNcid so I derive two columns (Flag1 and Flag2) hard Y S-code

Another example is, DMT record 301 1234 matches a DET save by cid and (MNcid or s_id) once again, I put flag there, S

2 record DMT 301 4321 does not correspond to any folder of cid and MNcid, but it corresponds to one record by cid and s_id

in this case, it will be rendered DET 301 1234 5678. However, this record was already made in step 1. It's ok to reset the indicator to go, S or just skip if flag has already been set to O, S by an another record DMT corresponding

the output above is not to be in that order, I said.  the point here is that I want to find matching records.

for a DMT record matching a record DET based on the above-mentioned column.  the flag itself must be defined for recording DET

that is the record of DMT.  However, if a DMT record does not match all records DET then DET indicator registers should the value N, O

as seem in the last two rows in the output above. DMT 602 2334 record does not match all DET records

can someone help me write a query with such logic using analytical functions?  my actual table is about 7 million lines but off 1.7 7 million are DET and about 6 thousands DMT

Hello

These requirements, you can replace the CASE expression in got_flag1, like this:

WITH got_table_source_grp AS

(

SELECT the table_source, cid, mncid, s_id

CASE

WHEN table_source IN ("DET", "DMT")

THEN "DET_DMT".

ELSE 'OTHER '.

END AS table_source_grp

OF sample_data

)

got_flag1 AS

(

SELECT the table_source, cid, mncid, s_id

CASE

-* Changed Begin section *.

WHEN ((COUNT (*) OVER (PARTITION BY table_source_grp, cid, mncid)))

-COUNT (*) OVER (PARTITION BY table_source, cid, mncid)

) > 0

OR (COUNT (*) OVER (PARTITION BY table_source_grp, cid, s_id))

-COUNT (*) OVER (PARTITION BY table_source, cid, s_id)

)  > 0

-* End of article changed *.

)

AND table_source = "DET".

THEN 'Y '.

ANOTHER "N".

END AS Flag1

OF got_table_source_grp

)

F SELECT

CASE

WHEN Flag1 = 'Y '.

FROM THERE"

ELSE 'O'

END AS Flag2

OF got_flag1 f

ORDER BY cid

table_source

;

Do you really need to use analytical functions?  This problem would be simpler, easier to maintain and probably more efficient if you use EXISTS instead:

WITH got_flag1 AS

(

SELECT the table_source, cid, mncid, s_id

CASE

WHEN table_source = "DET".

AND THERE ARE)

SELECT 1

OF sample_data

WHERE cid = m.cid

AND table_source = "DMT".

AND (DECODE (mncid, m.mncid, 1) = 1)

OR DECODE (s_id, m.s_id, 1) = 1

)

)

THEN 'Y '.

ANOTHER "N".

END AS Flag1

OF sample_data m

)

F SELECT

CASE

WHEN Flag1 = 'Y '.

FROM THERE"

ELSE 'O'

END AS Flag2

OF got_flag1 f

ORDER BY cid

table_source

;

Tags: Database

Similar Questions

  • This MODEL query can be written with features of Google ANALYTICS?

    Hi guys,.

    Earlier today, I replied to this post:
    Update and related queries Co

    I think that the OP wanted looked like something like this:
    -We have a bank account and start with 100 USD.
    -On a monthty basis receive us, say 5%, interest in this account.
    -L' interest is added to the account monthly.
    -Next month we receive again 5%.
    -Etc.

    Penny our balance is changing:
    Month 1: 100
    Month 2: 100 + 0.05 * 100 = 105
    Months 3:105 + 0.05 * 105 =...

    Etc.

    A query can be written with analytics that generates monthly balances, say for the first 12 months?
    With the MODEL, it is easy (I think): see the message I mentioned.

    I just don't see how to do this with analytics.

    Toon

    It helps if you apply some mathematical soaps as well:

    Taking data from the post you refer to:

    SQL> with test as (
     select 'A' r, 1 period, 40 istock, 10 perc, 40 stock from dual union all
     select 'A', 2, 40, 10, 40 from dual union all
     select 'A', 3, 40, 10, 40 from dual union all
     select 'A', 4, 40, 10, 40 from dual
    )
    ---
    ---
    SELECT t.*,
               FIRST_VALUE (stock) OVER (PARTITION BY r ORDER BY period)
               * POWER (1 + FIRST_VALUE (perc) OVER (PARTITION BY r ORDER BY period) / 100,
                   ROW_NUMBER () OVER (PARTITION BY r ORDER BY period) - 1)
                    s
      FROM test t
    /
    R     PERIOD     ISTOCK       PERC      STOCK          S
    - ---------- ---------- ---------- ---------- ----------
    A          1         40         10         40         40
    A          2         40         10         40         44
    A          3         40         10         40       48,4
    A          4         40         10         40      53,24
    
    4 rows selected.
    
  • Satellite C650 - boring Toshiba button on Google Analytics

    Hello

    I see this annoying button whenever I go on Google Analytics and don't know how to get rid of it.
    Its a button with two screens (laptop and desktop... Black monitor).

    When I click it I get a black box that has:
    "Toshiba Media Controller plugin"
    "No device".

    I don't know why Toshiba would put in such a boring thing.
    Anyone know how to get rid of it, because it doesn't give me any options!

    Hello

    I found this info on the Toshiba driver page:

    + The Toshiba Media Controller is a new interface designed by Toshiba to make easy streaming content. This software facilitates sharing between connected multimedia devices support, allowing users to easily videos, music and photos from a media library on TV sets, laptops, smart phones or media players via a simple drag & drop interface. +

    Usually, you can remove it from the system.
    Go to control panel of control-> program features &-> uninstall or change programs

    Welcome them

  • Eloqua in Google Analytics data import

    Google Analytics recently released a cool new data import feature that can allow you to import impressions, clicks, subject lines and cost of campaigns in Eloqua directly in GA someone he knows a way to automate this?   Just a note - this is NOT the same as the auto-tagging links, but something totally different. Here's the documentation:

    Click on download and data on costs - Analytics help

    Measure the Performance of the campaigns of Paid - Google Analytics & mdash; Google developers

    Hi Sean,.

    Please follow these steps to start.

    You should do after to do this automatically.

    1. first create a campaign in Eloqua.

    2. Enter the budget/cost parameters in Eloqua.

    3 configure Google Analytics query parameters in the parameters Eloqua area according to post http://topliners.eloqua.com/community/do_it/blog/2011/07/14/basic-web-analytics-integration-with-eloqua.

    Example of a string: utm_campaign =& utm_medium = email & utm_source = Eloqua

    You can also add additional fields as you want.

    4. establish an export programmed with all campaign data (ID, name, cost, etc.).

    5 the same configuration of automated export of Google API Reporting to download data.

    6. create and modify the data in the CSV file for your campaign according to the specified model.

    7. either manually configure step 6 or your program to do this and feed it through the API of Google relationship management.

    I hope this helps.

    Thank you

    Amit

  • Feature Web analysis of 'year to date '.

    Dear,

    I need to retrieve data from "YearToDate' of Essbase in a Web analysis report as I select a month specified in a drop-down list and it will display data until the month selected. I couldn't find any topic related to the 'CDA' in the Web analysis user guide. WA does support this feature?

    Thank you and best regards,

    Ahmad.

    Hello

    Try this history option - to date in Web Analytics. Please check which will help get your task complete

    Kind regards

    Zohra.

  • Download the file and web analytics

    Hi, I would like to have assistance from a feature I want to achieve.

    I built a single scrolling page site and I did a link that allows you to download a PDF file. By some analytical tools (like Google analytic and Shinystat HTML code) my client needs statistics about PDF download (mostly country download location).

    Be a single page site, I need track Google and Shinystat will begin when pdf is downloaded, but I don't think it's possible to do so directly.

    Another cloud option be this download link pushing, Muse opens a new window with it Google and the Shinystat code. Then: How can I do that, when the new window opens, pdf starts downloading automatically and windows closes? I think, I have to add to the html code, but no idea how to make...

    Can I get help?

    Thanks in advance

    Hello

    Please see the link below that share the few options to do this at GA. You may need to customize the codes a bit more as muse and you should be all set.

    http://www.blastam.com/blog/index.php/2011/04/how-to-track-downloads-in-Google-Analytics

    Kind regards

    Vivek

  • RoboHelp 2015 - Analytics/Reporting/Feedback

    What options are available for Robohelp 2015 (responsive HTML5) Analytics/reports and user comments? Apparently, RoboHelp Server is not an option. I've seen Google Analytics, but judging by another post based on Robohelp 7, it was not a good option. I don't know if this has changed with the new product from Adobe, however. For the comments of the users, I watched incorporation Wufoo forms of feedback. They work, but looks like I need to create a separate form for each page. That would certainly turn into a headache. I'm hoping HR 2015 has these built-in features and I'm kind of on them. I doubt that is the case with the amount of research I've done, though. All the tips, tricks and advice is greatly appreciated!

    No article, even if this thread outlines: with the help of Google Analytics in robohelp project

    Basically, you get back the Google tracking code. You add then copy the following code to the header/footer page of your master page and you're ready to go. Alternatively, you can open the .slp skin file and add the tracking code there. Google offers good instructions, which should help you to make it work.

  • Can register on EM and Admin Console but not Analytics - down presentation server

    I installed 11G on Windows 7 Enterprise. I am able to sign on Enterprise Manager and the Administration Console but not in analytics.

    The presentation server is down and there is a message in the nqserver.log about a problem with the oracle.bi.security.service. I pasted the nqserver.log and the sawlog0.log file and the file nqsconfig.ini below.

    I checked the BISystemUser into the realms of Weblogic Administration Console/security/myrealm and reset the password.

    I also have to reset the password for BISystemUser in Weblogic Enterprise Manager/WebLogic Domain/Security/Credentials/oracle.bi.system

    Then restarted services.

    I checked to see that there's no lock on DEV_MDS and DEV_BIPLATFORM.

    I tried to restart the services on several occasions without any modification.

    I don't know what else to check or how to proceed. Is there anything else I should check to identify what I might need to the difficulty of obtaining this race?

    Thank you

    Dara

    c:\OBIEE11G\instances\instance2 > opmnctl status

    Process pending: instance2

    ---------------------------------+--------------------+---------+---------

    IAS-component | process type.     The NEST | status

    ---------------------------------+--------------------+---------+---------

    essbasestudio1 | EssbaseStudio |       0 | NONE

    essbaseserver1 | Essbase |     N/A | Down

    coreapplication_obiccs1 | OracleBIClusterCo ~ |    3940 | Alive

    coreapplication_obisch1 | OracleBIScheduler ~ |    7504. Alive

    coreapplication_obijh1 | OracleBIJavaHostC ~ |    7452 | Alive

    coreapplication_obips1 | OracleBIPresentat ~ |     N/A | Down

    coreapplication_obis1 | OracleBIServerCom ~ |    2476 | Alive

    nqserver.log

    [2013 10-14 T 08: 13:28.000 - 07:00] [OracleBIServerComponent] [NOTIFICATION: 1] [] [] [ecid: 00iHoglZgjCFW7WFLzqIOA0000ag000000] [tid: 1478] [36007] loading repository C:\OBIEE11G\instances\instance2\bifoundation\OracleBIServerComponent\coreapplication_obis1\repository\SampleAppLite_BI0018.rpd.

    [2013 10-14 T 08: 13:28.000 - 07:00] [OracleBIServerComponent] [NOTIFICATION: 1] [] [] [ecid: 00iHoglZgjCFW7WFLzqIOA0000ag000000] [tid: 169 c] domain [14055] loading: SampleApp Lite...

    [2013 10-14 T 08: 13:28.000 - 07:00] [OracleBIServerComponent] [NOTIFICATION: 1] [] [] [ecid: 00iHoglZgjCFW7WFLzqIOA0000ag000000] [tid: 169 c] [14056] done to the sector of activity: SampleApp Lite.

    [2013 10-14 T 08: 13:28.000 - 07:00] [OracleBIServerComponent] [NOTIFICATION: 1] [] [] [ecid: 00iHoglZgjCFW7WFLzqIOA0000ag000000] [tid: 1478] [58002] Query Cache loaded with 0 entries registered the cache files.

    [2013 10-14 T 08: 13:28.000 - 07:00] [OracleBIServerComponent] [NOTIFICATION: 1] [] [] [ecid: 00iHoglZgjCFW7WFLzqIOA0000ag000000] [tid: 1478] [85003] MDX member name Cache subsystem has been started successfully.

    [2013 10-14 T 08: 13:28.000 - 07:00] [OracleBIServerComponent] [NOTIFICATION: 1] [] [] [ecid: 00iHoglZgjCFW7WFLzqIOA0000ag000000] [tid: 1478] [85004] member recovered MDX entered names Cache subsystem: 0, size: 0 bytes.

    [2013 10-14 T 08: 13:29.000 - 07:00] [OracleBIServerComponent] [ERROR: 1] [] [] [ecid: 00iHoglZgjCFW7WFLzqIOA0000ag000000] [tid: 1478] an error message was received by security BI: oracle.bi.security.service.SecurityServiceException: SecurityService: < init > initialization error

    [2013 10-14 T 08: 13:29.000 - 07:00] [OracleBIServerComponent] [ERROR: 1] [] [] [ecid: 00iHoglZgjCFW7WFLzqIOA0000ag000000] [tid: 1478] [13026] error getting BI Security Service roles: "' an error message was received by security BI: oracle.bi.security.service.SecurityServiceException: SecurityService: < init > initialization error '"

    [2013 10-14 T 08: 13:29.000 - 07:00] [OracleBIServerComponent] [NOTIFICATION: 1] [] [] [ecid: 00iHoglZgjCFW7WFLzqIOA0000ag000000] [tid: 1478] [46172] store security database is not available, do not re - associate with this type of provider.

    [2013 10-14 T 08: 13:29.000 - 07:00] [OracleBIServerComponent] [NOTIFICATION: 1] [] [] [ecid: 00iHoglZgjCFW7WFLzqIOA0000ag000000] [tid: 1478] nqsserver: started clustered Oracle BI Server (64-bit).  Version: 11.1.1.7.0.

    [2013 10-14 T 08: 13:29.000 - 07:00] [OracleBIServerComponent] [NOTIFICATION: 1] [] [] [ecid: 00iHoglZgjCFW7WFLzqIOA0000ag000000] [tid: 1fbc] [43071] a connection with THE Cluster controller - 2083841:9706 was created.

    [2013 10-14 T 08: 13:31.000 - 07:00] [OracleBIServerComponent] [ERROR: 1] [] [] [ecid: 00iHoglTjROFW7WFLzqIOA0001qC000000] [tid: f9c] oracle.bi.security.service.SecurityServiceException: SecurityService: < init > initialization error

    [2013 10-14 T 08: 13:31.000 - 07:00] [OracleBIServerComponent] [ERROR: 1] [] [] [ecid: 00iHoglTjROFW7WFLzqIOA0001qC000000] [tid: f9c] [nQSError: 43126] failed authentication: invalid user/password.

    [2013 10-14 T 08: 13:39.000 - 07:00] [OracleBIServerComponent] [ERROR: 1] [] [] [ecid: 00iHogmFUwcFW7WFLzqIOA0001Ho000005] [tid: 688] oracle.bi.security.service.SecurityServiceException: SecurityService: < init > initialization error

    [2013 10-14 T 08: 13:39.000 - 07:00] [OracleBIServerComponent] [ERROR: 1] [] [] [ecid: 00iHogmFUwcFW7WFLzqIOA0001Ho000005] [tid: 688] [nQSError: 43126] failed authentication: invalid user/password.

    [2013 10-14 T 08: 13:43.000 - 07:00] [OracleBIServerComponent] [ERROR: 1] [] [] [ecid: 00iHogmAz8aFW7WFLzqIOA0001Ho000000] [tid: 153 c] oracle.bi.security.service.SecurityServiceException: SecurityService: < init > initialization error

    [2013 10-14 T 08: 13:43.000 - 07:00] [OracleBIServerComponent] [ERROR: 1] [] [] [ecid: 00iHogmAz8aFW7WFLzqIOA0001Ho000000] [tid: 153 c] [nQSError: 43126] failed authentication: invalid user/password.

    sawlog0.log

    [2013 10-14 T 07: 51:52.000 - 07:00] [OBIPS] [NOTIFICATION: 1] [,] [saw.sawserver] [ecid:] [tid:] Oracle BI Presentation Services (OBIPS) 11.1.1.7.0 (130303.2025 64-bit Build) start. [[

    Leader: sawserver.cpp

    Online: 455

    Geographical area:

    Saw.sawserver

    Saw.sawserver.initializesawserver

    Saw.sawserver

    ECID:

    ]]

    [2013 10-14 T 07: 51:52.000 - 07:00] [OBIPS] [WARNING: 16] [] [saw.mas.csf] [ecid:] [tid:] store database security is not available, do not re - associate with this type of provider. [[

    Leader: csfwrapperimpl.cpp

    Online: 152

    Geographical area:

    Saw.Mas.CSF

    Saw.sawserver

    Saw.sawserver.initializesawserver

    Saw.sawserver

    ECID:

    ]]

    [2013 10-14 T 07: 51:53.000 - 07:00] [OBIPS] [NOTIFICATION: 1] [,] [saw.sawserver] [ecid:] [tid:] security query's timeout is: 120 []

    Leader: odbcuserpoploaderimpl.cpp

    Line: 1068

    Geographical area:

    Saw.sawserver

    Saw.sawserver.initializesawserver

    Saw.sawserver

    ECID:

    ]]

    [2013 10-14 T 07: 51:56.000 - 07:00] [OBIPS] [WARNING: 1] [,] [saw.webextensionbase.init.workstationCheck] [ecid:] [tid:] WARNING: The Oracle BI Presentation server Services is running on a machine of class workstation (Windows XP Professional, Windows 7 Professional, etc). The number of concurrent users may be severely limited by the operating system. [[

    Leader: webextensionbase.cpp

    Online: 492

    Geographical area:

    saw.webextensionbase.init.workstationCheck

    Saw.webextensionbase.init

    Saw.sawserver

    Saw.sawserver.initializesawserver

    Saw.sawserver

    ECID:

    ]]

    [2013 10-14 T 07: 51:56.000 - 07:00] [OBIPS] [WARNING: 1] [,] [saw.catalog.local.checkforcatalogupgrade] [ecid:] [tid:] update is recommended in the latest version of the catalog. [[

    Leader: localwebcatalog.cpp

    Online: 242

    Geographical area:

    Saw.Catalog.local.checkforcatalogupgrade

    saw.catalog.local.loadCatalog

    Saw.Subsystems.catalogbootstrapper.loadcatalog

    Saw.webextensionbase.init

    Saw.sawserver

    Saw.sawserver.initializesawserver

    Saw.sawserver

    ECID:

    NQSConfig.INI

    ###############################################################################

    #

    # NQSConfig.INI

    #

    # Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.

    #

    # INI file parser rules are:

    # If the values are in literals, numbers, or _, they may be

    # given as such. If the values contain characters other than

    literals #, numbers or _, the values must be in quotes.

    #

    ###############################################################################

    ###############################################################################

    #

    # Article repository

    #

    # Repositories are defined as the name of the logical repository - file name

    pairs of #.  ODBC drivers use names of logical repository defined in this

    # section.

    #

    # All repositories must reside within the Oracle BI Server instance

    Directory of repository #.

    #

    ###############################################################################

    [REPOSITORY]

    Star = SampleAppLite_BI0018.rpd, default value;  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    ###############################################################################

    #

    # Query result Cache Section

    #

    ###############################################################################

    [CACHE]

    ACTIVATE = YES;  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    # A list separated by commas of the < maxSize directory > pairs.

    # They are relative to the directory of the process instance.

    # e.g. DATA_STORAGE_PATHS = "nQSCache" 500 MB;

    # resolves to

    # $(ORACLE_INSTANCE) / bifoundation/OracleBIServerComponent / < instance_name > / nQSCache

    DATA_STORAGE_PATHS = "cache" 500 MB;

    MAX_ROWS_PER_CACHE_ENTRY = 100000;  # 0 is an unlimited size

    MAX_CACHE_ENTRY_SIZE = 20 MB;  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    MAX_CACHE_ENTRIES = 1000;  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    POPULATE_AGGREGATE_ROLLUP_HITS = NO;

    USE_ADVANCED_HIT_DETECTION = NO;

    MAX_SUBEXPR_SEARCH_DEPTH = 7;

    DISABLE_SUBREQUEST_CACHING = NO;

    #Cache the size of the file buffer. Default is 128 KB

    CACHE_FILE_BUFFER_SIZE = 128 KB;

    # Cluster cache.

    # Note that, since it is a network share, the directory should not be

    # relative.

    GLOBAL_CACHE_STORAGE_PATH = "' 0 MB;  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    MAX_GLOBAL_CACHE_ENTRIES = 1000;

    CACHE_POLL_SECONDS = 300;

    CLUSTER_AWARE_CACHE_LOGGING = NO;

    ###############################################################################

    #

    # General section

    #

    # Contains general settings of the default server location

    # and internationalization, temporary space and memory, allocation

    # and other default parameters used to determine how data is returned

    # from the server to a client.

    #

    ###############################################################################

    [GENERAL]

    # Localization/internationalization settings.

    LOCAL = "English - United States";

    SORT_ORDER_LOCALE = "English - United States";

    SORT_TYPE = "binary";

    # Case must be adjusted with the remote control

    target database of the #.

    CASE_SENSITIVE_CHARACTER_COMPARISON = ON;

    # SQLServer65 sorts NULL values first, while Oracle sorts

    # nulls last. This property of ini file must conform to the

    # of the remote target database, if there is a

    # unique remote database. Otherwise, choose the command

    # that corresponds to the database (i.e. the)

    # based on the volume of data, frequency of access, sorting

    # bandwidth performance).

    NULL_VALUES_SORT_FIRST = OFF;

    DATE_TIME_DISPLAY_FORMAT = "yyyy/mm/dd hh ';

    DATE_DISPLAY_FORMAT = "yyyy/mm/dd";

    TIME_DISPLAY_FORMAT = "hh."

    # Allocation of temporary space, memory and resources

    # parameters.

    # You can use KB, MB for memory size.

    # Working directory paths can be left empty and default

    # for the temp of the process instance directory.  For example,.

    # $(ORACLE_INSTANCE) / temp/OracleBIServerComponent / < InstanceName >.

    # If it is relative, it will be compared to this path.  So absolute.

    # We take the absolute path when running.

    WORK_DIRECTORY_PATHS = "";

    VIRTUAL_TABLE_PAGE_SIZE = 128 KB;

    # Analytics Server returns all month names and day three

    abbreviations # (for example, "Jan", "Feb", "Sat", "Sun").

    # To use full names, set the following values to YES.

    USE_LONG_MONTH_NAMES = NO;

    USE_LONG_DAY_NAMES = NO;

    USE_UPPERCASE_MONTH_NAMES = NO;

    USE_UPPERCASE_DAY_NAMES = NO;

    UPPERCASE_USERNAME_FOR_INITBLOCK = NO;  # default is none

    ###############################################################################

    #

    # Security section

    #

    # The legal value for DEFAULT_PRIVILEGES are:

    # NO READ

    #

    ###############################################################################

    [SECURITY]

    DEFAULT_PRIVILEGES = READ;

    PROJECT_INACCESSIBLE_COLUMN_AS_NULL = YES;  # default is none

    # Note that the below paths must be relative to the instance

    directories of config # if specified.  for example,.

    # $(ORACLE_INSTANCE) / config/OracleBIServerComponent / < InstanceName >

    #IGNORE_LDAP_PWD_EXPIRY_WARNING = NO;     default value is none.

    SSL = NO;  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    SSL_CERTIFICATE_FILE="C:\OBIEE11G\USER_P~1\domains\BIFOUN~1\config\FMWCON~1\biinstances\coreapplication\ssl\server-cert.PEM ';  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    SSL_PRIVATE_KEY_FILE="C:\OBIEE11G\USER_P~1\domains\BIFOUN~1\config\FMWCON~1\biinstances\coreapplication\ssl\server-key.PEM ';  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    SSL_VERIFY_SERVERS = YES;  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    SSL_VERIFY_CLIENTS = NO;  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    SSL_CA_CERTIFICATE_FILE="C:\OBIEE11G\USER_P~1\domains\BIFOUN~1\config\FMWCON~1\biinstances\coreapplication\ssl\combinedcacert.PEM ';  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    SSL_TRUSTED_PEER_DNS ="";

    SSL_CERT_VERIFICATION_DEPTH = 9;

    SSL_CIPHER_LIST ="";

    ###############################################################################

    #

    # Server section

    #

    ###############################################################################

    [SERVER]

    READ_ONLY_MODE = NO;  # It is both online and offline - this Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    MAX_SESSION_LIMIT = 2000;

    MAX_REQUEST_PER_SESSION_LIMIT = 5000;

    SERVER_THREAD_RANGE = 40-100;

    SERVER_THREAD_STACK_SIZE = 0;  # default is 256 KB (32-BIT mode), default of 0 for 1 MB (64-bit),

    DB_GATEWAY_THREAD_RANGE = 40-200;

    DB_GATEWAY_THREAD_STACK_SIZE = 0;  # default is 256 KB (32-BIT mode), default of 0 for 1 MB (64-bit),

    HTTP_CLIENT_THREAD_RANGE = 0-100;

    HTTP_CLIENT_THREAD_STACK_SIZE = 0;  # default is 256 KB (32-BIT mode), default of 0 for 1 MB (64-bit),

    MAX_EXPANDED_SUBQUERY_PREDICATES = 8192;  # default is 8192

    MAX_QUERY_PLAN_CACHE_ENTRIES = 1024;  # default is 1024

    MAX_QUERY_PLAN_CACHE_ENTRY_SIZE = 0;  # default is 256 KB, (in 32-BIT mode), 1 MB (64-bit), the default value to 0

    MAX_DRILLDOWN_INFO_CACHE_ENTRIES = 1024;  # default is 1024

    MAX_DRILLDOWN_QUERY_CACHE_ENTRIES = 1024;  # default is 1024

    INIT_BLOCK_CACHE_ENTRIES = 20;  # default is 20

    CLIENT_MGMT_THREADS_MAX = 5;  # default is 5

    # This specifies the port number and IP that the server will be

    # listen to. When it is set to 0.0.0.0, the server listens on all IPs

    # address on the machine, otherwise the server will bind to the

    # specified ip address.

    RPC_SERVICE_OR_PORT = "9703;  # default is 0.0.0.0:9703 - this Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    LISTEN_ADDRESS = "0.0.0.0";  # default is 0.0.0.0

    LISTEN_PORT = 9703;  # default is 9703

    ENABLE_DB_HINTS = YES;  # default is Yes

    PREVENT_DIVIDE_BY_ZERO = YES;

    CLUSTER_PARTICIPANT = YES;  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    # Suite required if CLUSTER_PARTICIPANT = YES

    # The directory of publication must be a full path as it should

    # a shared drive.

    REQUIRE_PUBLISHING_DIRECTORY = NO;  # Do not join the cluster if the directory is not accessible - Configuration of this setting is managed by Oracle Enterprise Manager Fusion Middleware control

    DISCONNECTED = NO;

    AUTOMATIC_RESTART = YES;

    VARIABLE_VALUE_LIMIT = 4096;

    # EVALUATE_SUPPORT_LEVEL:

    # 1: evaluate is supported for users with the permission of manageRepositories

    # 2: evaluate is supported for all users.

    # other: assess only is not supported if the value is something else.

    EVALUATE_SUPPORT_LEVEL = 0;

    FMW_SECURITY_SERVICE_URL = " " http://131.216.37.7:7001 ";  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    FMW_SECURITY_SERVICE_MAX_NUMBER_OF_CONNECTIONS = 2000;

    FMW_SECURITY_SERVICE_MAX_NUMBER_OF_RETRIES = 0;

    # FMW_SECURITY_SERVICE_RETRY_EXCEPTION_SUBSTRING = "closed by force."

    FMW_UPDATE_ROLE_AND_USER_REF_GUIDS = NO;

    # ENABLE_NUMERIC_DATA_TYPE:

    # When this setting is enabled, the Administration tool will be

    # import, data type Oracle/TimesTen number as the type of digital data in physics

    column definition #.  Oracle BI Server will interpret the Oracle Number data

    # type in the form of digital data internally during its execution.

    ENABLE_NUMERIC_DATA_TYPE = NO;

    MONITOR_PORT = "9701;  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    ORACLEHARDWAREACCELERATION = NO;  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    ###############################################################################

    #

    Article # high availability

    #

    ###############################################################################

    [HIGH_AVAILABILITY]

    HA_DB_PING_PERIOD_MILLISECS = 60000;

    ###############################################################################

    #

    # Dynamic library section

    #

    # Dynamic libraries specified in this section

    # are classified by the CLI, they take over.

    #

    ###############################################################################

    [DB_DYNAMIC_LIBRARY]

    ODBC200 = nqsdbgatewayodbc;

    ODBC350 = nqsdbgatewayodbc35;

    Oci8 = nqsdbgatewayoci8;

    OCI8i = nqsdbgatewayoci8i;

    OCI10g = nqsdbgatewayoci10g;

    DB2CLI = nqsdbgatewaydb2cli;

    DB2CLI35 = nqsdbgatewaydb2cli35;

    NQSXML = nqsdbgatewayxml;

    XMLA = nqsdbgatewayxmla;

    BAPI = nqsdbgatewaysapbapi;

    ESSBASE = nqsdbgatewayessbasecapi;

    OracleADF = nqsdbgatewayoracleadf;

    OracleADF_HTTP = nqsdbgatewayoracleadf;

    OracleCEP_HTTP = nqsdbgatewayoraclecep;

    HyperionADM = nqsdbgatewayadm;

    OracleWS = nqsdbgatewayoraclews;

    Hadoop = nqsdbgatewayhadoop;

    TimesTen = nqsdbgatewaytimesten;

    timesten35 = nqsdbgatewaytimesten35;

    ###############################################################################

    #

    # Section monitoring of use

    #

    # Collect usage on each logical query statistics submitted to the

    # Server.

    #

    ###############################################################################

    [USAGE_TRACKING]

    ACTIVATE = NO;  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    #==============================================================================

    # Parameters used to write the data to a flat file (e.g., DIRECT_INSERT = NO).

    #

    # Note that the directory must be relative to the directory of the instance.

    # In general, we prefer directo insert flat files.  If you work in

    # a cluster, it is recommended that you use direct insertion.  If there is

    a single instance Oracle BI Server #, then you can use data from flat files.

    # The directory is assumed from the process instance.  For

    example #, "UTData" is resolved to

    # "$(ORACLE_INSTANCE) / bifoundation/OracleBIServerComponent / < instance_name > / UTData.

    STORAGE_DIRECTORY = 'path to the <>directory ";

    CHECKPOINT_INTERVAL_MINUTES = 5;

    FILE_ROLLOVER_INTERVAL_MINUTES = 30;

    CODE_PAGE = 'ANSI ';  # ANSI, UTF8, 1252, etc..

    #

    #==============================================================================

    DIRECT_INSERT = YES;  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    #==============================================================================

    # Parameters to insert data in a table (for example DIRECT_INSERT = YES).

    #

    PHYSICAL_TABLE_NAME = "<>database". "' Catalogue of <>. "" schema of <>. "< table > ';  # Or "<>database". "" schema of <>. "" < table > "; -This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    CONNECTION_POOL = "<>database". "<>Connection pool ';  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    BUFFER_SIZE = 250 MB;

    BUFFER_TIME_LIMIT_SECONDS = 5;

    NUM_INSERT_THREADS = 5;

    MAX_INSERTS_PER_TRANSACTION = 1;

    #

    #==============================================================================

    SUMMARY_STATISTICS_LOGGING = NO;  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    SUMMARY_ADVISOR_TABLE_NAME = "<>database". "' Catalogue of <>. "" schema of <>. "< table > ';  # Or "<>database". "" schema of <>. "" < table > "; -This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    ###############################################################################

    #

    # Query optimization flags

    #

    ###############################################################################

    [OPTIMIZATION_FLAGS]

    STRONG_DATETIME_TYPE_CHECKING = ON;

    ###############################################################################

    #

    # MDX member name Section Cache

    #

    # Subsystem of cache for the mapping between the unique name and the legend of

    number of members of all SAP/BW cubes in the repository.

    #

    ###############################################################################

    [MDX_MEMBER_CACHE]

    # The entry to indicate that if the feature is enabled or not, by default, NO because it applies only to the SAP/BW cubes

    ACTIVATE = YES;

    # The path to the location where the cache is persisted, applies to one place.

    # the number at the end indicates the storage capacity. When the feature is activated,

    # administrator must replace the "< directory path >" with a valid path.

    # This cache will be relative to the directory of the process instance data.  For

    example: #

    # DATA_STORAGE_PATH = "MDXCache" 500 MB;

    # resolves to:

    # $(ORACLE_INSTANCE) / bifoundation/OracleBIServerComponent / < instance_name > / MDXCache

    DATA_STORAGE_PATH is "MDXCache" 500 MB.;

    # Space maximum allowed for each user.

    MAX_SIZE_PER_USER = 100 MB;

    # Number of members in a level can be kept on the disk

    MAX_MEMBER_PER_LEVEL = 1000;

    # Maximum size for each individual cache entry size

    MAX_CACHE_SIZE = 100 MB;

    ###############################################################################

    #

    # Section aggregation persistence

    #

    ###############################################################################

    [AGGREGATE_PERSISTENCE]

    # Persistence default aggregation

    # The prefix must be between 1 and 8 characters

    # and should not have special characters ('_' is allowed).

    AGGREGATE_PREFIX = "SA_;

    AGGREGATE_THREAD_POOL_SIZE = 5;

    AGGREGATE_AW_NAME = "OBI_AW";

    PREAGGREGATE_AW_CUBE = YES;

    ###############################################################################

    #

    # Section Javahost

    #

    ###############################################################################

    [JAVAHOST]

    JAVAHOST_HOSTNAME_OR_IP_ADDRESSES = "AI - 2083841:9810";  # This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware control

    #JAVAHOST_HOSTNAME_OR_IP_ADDRESSES = '< machine-name1 >': < port_number1 >, < machine-name2 >: < port_number2 >;

    ###############################################################################

    #

    # Section Datamart Automation

    #

    ###############################################################################

    [DATAMART_AUTOMATION]

    ' ESSBASE_STUDIO_URL = ' http://localhost:9080/dma/dmaservlet "; 

    ESSBASE_SERVER = "localhost";

    DMA_DATABASE = "DMA_DB";

    Intresting...

    I recommend you go through the below article

    Rittman Mead Consulting & raquo; Blog Archive & raquo; OBIEE / FMW and networking on the DHCP hosts

    Thank you

    Angelique

  • Edge + Phonegap Google Analytics plus my nightmare

    Has anyone successfully google analytic implanted into a cordova/phonegap app?

    My analytics account IS showing me the information in the section 'real time '. But I don't get any data collection in my section found. I've heard various accounts of how long it takes for data to come. Some say the hour, some say weeks. So I don't know if I should just wait and see or if I should try to be proactive in this regard.

    In any case, I'll post some of my approach.

    I use the plugin analytical documented here: danwilson/google-analytics-plugin · GitHub

    (1) I added the following to my index.html file:

    < script type = "text/javascript" charset = "utf - 8" src = "cordova.js" > < / script > "."

    < script type = "text/javascript" charset = "utf-8" >

    Wait to load device API libraries

    //

    function onLoad() {}

    document.addEventListener ("deviceready", onDeviceReady, false);

    }

    feature of the API are available

    //

    function onDeviceReady() {}

    Now safe to use the device API

    window.analytics.startTrackerWithId('UA-XXXXX-XX') omitted real tracking id

    }

    < /script >

    (2) I also added the following to my compositonReady Stadium event. (not really sure if this is necessary)

    window.analytics.startTrackerWithId('UA-XXXXX-XX');

    (3) then on each button event I want to follow I put

    window.analytics.trackEvent ("product competitor", "Product name");

    Like I said before, it is recognizing the real time application, but not data collection.

    Looks like that patience is a virtue.

    Reports came through this weekend.

  • Popular analytics product search

    Hello

    We are working on a web application Powered short, where we need to provide related data looking for popular products on different pages of the site.

    These data should be provided by short. Is there an out of the box functionality in short that can provide this information. I find a few documents related to Analytics in short, who speaks some API.

    But how this is possible. These APIs should retrieve some data prepared for this purpose.

    How can I reach Analytics of short feature.

    Thanks in advance

    Kind regards
    Sachin

    Hi Salah,

    This requirement seems eerily similar to what we call 'closed loop' merchandising, when you ingest information related to research activities in the short MDEX engine to help complete and they influence the way in which products are presented to the end user (for example influence the search relevancy, help target products the most popular, etc.).

    If you already have an integration using web reporting tool (Coremetrics, Omniture, etc.), you can take specific excerpts from these tools around popular search terms, the more popular upgrades, etc. and feed only in to the MDEX engine. You can use these data to stand alone as its own type of 'record' to allow the front-end application use only the information on search behavior. Or you can use some of this information to complete more your product records (for example p_number_of_product_views = 500) and help to influence the relevance and targeted merchandising. Or both.

    If you do not use one of above mentioned web usage reporting tools, you might look based on short logging server. You can read more here: http://docs.oracle.com/cd/E29585_01/PlatformServices.61x/LogServerReportGen.pdf

    Finally, if you are looking to view these data looking for popular products using visualizations, or you need summarize the data at query time, I suggest you look to shoot short analytical to the: http://docs.oracle.com/cd/E38682_01/MDEX.640/pdf/AnalyticsGuide.pdf

    Hope this helps,
    Dan
    http://branchbird.com

  • Manage users of OBIEE 11 g analytics with the Console of Administration of WLS?

    Hello everyone.
    I want manage users of analytics. Is there an effective way to provide access to specific folders in the catalog in the correspondence with the attributes of user? For example.
    User1: Director
    Role1: reports2011 (R)
    Role2: statistics2011 (R)
    3: wages2011 (R)

    User2: commonUser
    Role1 reports2011 (R)

    the util_3: admin
    role4: "all_folders" (RW)

    I'm looking for new ways to do this feature.

    Thank you
    Lives

    The specific roles of BI and policies in the administration Console are for this exact purpose (use of BI, BI author etc..)

    Please refer to these excellent posts: http://www.rittmanmead.com/2012/03/obiee-11g-security-week-understanding-obiee-11g-security-application-roles-and-application-policies/

    http://www.rittmanmead.com/2012/03/OBIEE-11g-security-week-subject-area-catalog-and-functional-area-security-2/

    http://www.rittmanmead.com/2012/03/OBIEE-11g-security-week-managing-application-roles-and-policies-and-managing-security-migrations-and-deployments/

    Please check if useful/correct.

  • Do you need to use Google Analytics or BC offers essentially the same thing with the reports?

    I don't know much about SEO and I know that you should have a type of analytical software. But from what I've seen so far, it seems that BC offers reports?

    Hello

    You can easily add Google Analytics, you can get them directly from Google APIs, to any site hosted Adobe and get rich reports features it provides. The system also provides an integrated reporting system advanced with all sites, that you can use without any additional configuration.

    HRE are some useful links that will help understand the BC system

    http://helpx.Adobe.com/business-catalyst/topics/reports.html

    http://forums.Adobe.com/docs/doc-2863

    I hope this helps.

  • Google Webmaster tools, analytics, Manager of tags

    I am trying to optimize my Web site using Google's free products.  However, I have noticed that Google recommends to change the html code of the site in several cases: Add the Analytics script and tag Manager and structured data, improvements.  Structured data, I have noticed, is already in the raw text of my page properties keywords but not seen optimally by google.  Tag Manager recommends that I insert my manager of script tags in the body, but I don't see how this would be possible in Muse. If I cut and paste in the head box on the page properties metadata option, it will of course appear in the head. I noticed I can do only by file in catalyst for business manager by opening the page in html, but willl edit only html have a destructive impact on my site; s ability to download.  I have no experience in code so I rely on the design features of Muse exclusively, but I wonder if it's one of the comprimises with the help of Muse as opposed to Dreamweaver...

    Just in case anyone has this issue in the future, there is now a widget that will do that for you: Google tag Manager | Free Muse Widget Adobe

  • How to set options to generate as Postgresql SQL Analytics

    Q: I need to know how to set options in web analytics or the driver BI so that web analytics will be limited to the Postgresql type commands.

    Environment: Web analytical running in Windows Exporer. Driver of BI of Oracle running on Windows XP. Tunneling via PuTTY on our own server non-Oracle database.

    I heard that somewhere in Oracle BI there is the possibility to activate and disable several features SQL so that Oracle users can capture their SQL generating tools (such as web analytics) to match other DB standards.

    Can someone tell me if this is true? If Yes, where can I access these options?

    Hello

    I'm sorry if I could not you, but I understand that you would like to BI Server to build queries depending on the your DB traits.

    If this is the case, you can then follow the steps below

    1. open .rpd

    2. navigate to the physical layer

    3. among the different databases, choose the one you want to resolve.

    4. right click, choose Properties-> features.

    5. here, you can see a number of features of DB that you could try to turn it OFF / ON.

    6. you can also perform a DBMS for "query" that will interview your DB.

    Hope this is what you are looking for.

    Thank you
    Diakité

  • Ability to add Google Analytics to track the link/button click?

    I would like to follow the button clicks and the link on my site to Muse that lead to external websites. For example - by clicking on a 'Buy Now' button on my site from Muse leads to 3rd part of page Web. Is it possible to add Google Analytics in these Articles? I already have the GA code integrated on my main site, but it gives me all the data about the button clicks or any other type of event. Any information would be appreciated!

    Hello

    I can't make any promises in that regard. Our team is already to check it out and work on it. The best solution to implement this will be your site in html export, and using a code editor, you can apply your features.

    Concerning

Maybe you are looking for

  • Vocals and guitars/keys using multiple output

    Hello I intend to play a CONCERT with MainStage 3 this weekend, and I'm trying to find a way to make it work. I sing and play on the keys or on guitars. I add a few effects on channel strips in the. I know I could put just outputs of the channels out

  • Cannot access Windows XP newsgroups.

    Get the message for a few weeks now: 'Temporarily unavailable' what is happening?

  • Records navigation

    Hi all I picked up the 4 GB Clip + today and load of the songs on it.  The problem is, however, some the folders appear as a string of digits, or numbes and letters, followed by the name of folder.  Other folders appear as a string the number and let

  • Disable pass it to the next chapter?

    I listen to books and am constantly touching the > and< keys,="" restarting="" the="" book="" and="" loosing="" my="" place. ="" i="" notice="" in="" my="" wife's="" clip="" that="" her="" buttons="" are="" disabled="" (don't="" work?),="" but="" we=

  • Why is the Linksys help number a scam?

    Yesterday I call number help Linksys and had someone in Saudi I understand just to help me to re - connect my Extender (it has been disconnected and the software did not work for the re - connect). Because it was the number of help Linksys (directly