About patch 2529822,is it necessory for BI sample?

Hi folds!
I want to use the sample of olap,and i must install BI Beans from OTN.My database is Oracle9.2.0.2,and i know i need patch sets :263293,2529822 .
But i am a student and have no Support Identifier.How can i get patch sets? what is patch 2529822? is it necessory?
Best Regards.
Thanks
Jiaowei Zhao

Oracle9i OLAP
Best Practices for Tabular Cube Aggregation and Query Operations
Release 2 for Windows and UNIX
March 2003
Part No. A92122-04
This document provides techniques and practices designed to optimize the performance of typical OLAP operations and manageability of the environment. This information is divided into four distinct categories:
Schema Design Considerations
Oracle Configuration Parameters and Session Settings for Access Structure Builds
Access Structure Scripting Package
Query Operation Optimizations
Schema Design Considerations
Assign surrogate keys, which are unique across all hierarchical levels, to dimensional data. The surrogate keys are defined as type NUMBER with length defined by the magnitude of distinct dimension members. (If there is expected growth in this list, factor that in accordingly.) These surrogate keys are to be used as the primary keys of the dimension tables. A routine to supplement the character keys in the fact tables with the newly defined surrogates must be run prior to defining OLAP objects. An example script for this type of routine is provided below.
Create separate tablespaces for planned Materialized Views and View Indices. This will not significantly affect any aspect of performance, but it is good practice for file management.
Compute statistics on base tables prior to executing build scripts for access structures (materialized views and indices).
Surrogate Key Assignment (Example)
This example generates surrogate keys for the channel members and recreates the channel table with the surrogate keys. It then recreates the sales table with the surrogate keys included.
PROMPT Generate surrogate keys for CHANNELS
DROP TABLE chan_skey;
CREATE TABLE chan_skey AS
SELECT
lvlid AS lvlid,
dimval AS dimval,
dense_rank () OVER
(ORDER BY lvlid, dimval) AS dimkey
FROM
(SELECT DISTINCT TO_CHAR(channel_total) AS dimval, 0 lvlid FROM
channels UNION ALL
SELECT DISTINCT TO_CHAR(channel_class) AS dimval, 1 lvlid FROM
channels UNION ALL
SELECT DISTINCT TO_CHAR(channel_id) AS dimval, 2 lvlid FROM
channels);
COMMIT;
DROP INDEX chan_skey_index;
CREATE INDEX chan_skey_index ON chan_skey(lvlid);
COMMIT;
PROMPT Create CHANNELS_NEW table with surrogate keys
DROP TABLE channels_new;
CREATE TABLE channels_new
( channel_id CHAR(1),
channel_id_key NUMBER,
channel_desc VARCHAR2(20),
channel_class VARCHAR2(20),
channel_class_key NUMBER,
channel_total VARCHAR2(13),
channel_total_key NUMBER) ;
INSERT /*+ APPEND*/ INTO channels_new
SELECT c.channel_id,
(SELECT DISTINCT sk2.dimkey
FROM chan_skey sk2
WHERE sk2.dimval = TO_CHAR(c.channel_id)
AND sk2.lvlid = 2),
c.channel_desc,
c.channel_class,
(SELECT DISTINCT sk1.dimkey
FROM chan_skey sk1
WHERE sk1.dimval = TO_CHAR(c.channel_class)
AND sk1.lvlid = 1),
c.channel_total,
(SELECT DISTINCT sk0.dimkey
FROM chan_skey sk0
WHERE sk0.dimval = TO_CHAR(c.channel_total)
AND sk0.lvlid = 0)
FROM channels c;
COMMIT;
DROP table chan_skey;
prompt Create SALES with references to the surrogate keys
DROP TABLE sales_new;
CREATE TABLE sales_new
PARTITION BY RANGE (time_id_key)
(PARTITION sales_q1_1998 VALUES LESS THAN (91),
PARTITION sales_q2_1998 VALUES LESS THAN (182),
PARTITION sales_q3_1998 VALUES LESS THAN (274),
PARTITION sales_q4_1998 VALUES LESS THAN (366),
PARTITION sales_q1_1999 VALUES LESS THAN (456),
PARTITION sales_q2_1999 VALUES LESS THAN (547),
PARTITION sales_q3_1999 VALUES LESS THAN (639),
PARTITION sales_q4_1999 VALUES LESS THAN (731),
PARTITION sales_q1_2000 VALUES LESS THAN (822),
PARTITION sales_q2_2000 VALUES LESS THAN (913),
PARTITION sales_q3_2000 VALUES LESS THAN (1005),
PARTITION sales_q4_2000 VALUES LESS THAN (MAXVALUE))
AS
SELECT products_new.prod_id_key,
customers_new.cust_id_key,
times_new.time_id_key,
channels_new.channel_id_key,
promotions_new.promo_id_key,
sales.quantity_sold,
sales.amount_sold
FROM products_new,
customers_new,
times_new,
channels_new,
promotions_new,
sales
WHERE sales.prod_id = products_new.prod_id AND
sales.cust_id = customers_new.cust_id AND
sales.time_id = times_new.time_id AND
sales.channel_id = channels_new.channel_id AND
sales.promo_id = promotions_new.promo_id;
REM DROP TABLE sales;
REM RENAME table sales_new sales;
Oracle Configuration Parameters and Session Settings for Access Structure Builds
Cube Aggregation Optimizations
init.ora Parameters
Modify the standard init.ora file (named initsid.ora, located oracle_home/admin/sid/pfile) by setting or adding the parameters described below. When starting the database for an initial build or major data update operation, use this specifically modified parameters file with a command such as this:
startup pfile = filepath
Make the following changes to the parameters file:
db_cache_size=n
Where: n is 25% of real memory
Example: 128M for 512M of RAM
db_file_multiblock_read_count=n
Where: n is a number based on hardware. The ideal would be multiplier of 8k blocks to equal the disk stripe width.
shared_pool_size = n
Where: n is 10% or less of real memory.
Example: Approximately 10M for 512M of RAM
pga_aggregate_target=n
Where: n is 50% of real memory
Example: 256M for 512M of RAM
parallel_automatic_tuning=true
#parallel_max_servers
Comment out this setting with the # symbol.
#parallel_min_servers
Comment out this setting with the # symbol.
workarea_size_policy=AUTO
disk_asynch_io=true
Session Parameters
In the SQL*Plus® session in which the access structure build scripts will be executed, set the following parameters:
alter session enable parallel query;
alter session enable parallel dml;
alter session set "query_rewrite_enabled"=FALSE;
Access Structure Scripting Package
Refer to the Oracle9i OLAP User's Guide, Part V, for creating and managing tabular summary data structures.
Query Operation Optimizations
init.ora Parameters
For the RDBMS 9.2.0.3 patch set, make the following change to the init.ora parameter file. For additional information on changing the database initialization settings, refer to "init.ora Parameters".
multijoin_key_table_lookup=false
ALTER_SESSION Parameters
Insure that the SYS.OLAP$ALTER_SESSION table is populated with the following settings:
pga_aggregate_target=n
Where: n is 25% of real memory. Increase as needed for larger concurrent user loads.
Example: 128M for 512M RAM
db_file_multiblock_read_count=2
star_transformation_enabled=true
query_rewrite_enabled=true
query_rewrite_integrity=stale_tolerated
optimizer_index_cost_adj=25
#optimizer_mode=all_rows
Uncomment this setting for the RDBMS 9.2.0.2.x patch set
subquerypruning_enabled=true
noor_expansion=true
querycost_rewrite=false
prerewrite_push_pred=true
generalizedpruning_enabled=true
unionrewrite_for_gs=force
The SYS.OLAP_ALTER_SESSION table contents are invoked automatically when an OLAP API client connects to the database. Other clients connecting for querying purposes should set these parameters via the ALTER SESSION command.

Similar Messages

  • Unable to open email inbox or files. screen changed suddenly last night. got some message about patch not being applied. i have the patience of a gnat and have no clue how to fix this issue. HELP! in English

    I'm running Mozilla-firefox on a Lenovo laptop. Last night the screen changed suddenly. brief alert about patch. unable to open email inbox to read/send emails. logged off thinking all would be right by morning. today, can access internet, google, etc, but unable to open email inbox. plus the listing of the various yahoo accts has changed the sequence order. please help. i depend on my email for my livelihood. i can read emails on my blackberry so the issue is not my internet provider.

    In the patch 29, it is
    function encode_attachment(str) {
    var c, i, s = ''
    for (i = 0; i < str.length; i++) {
    switch (c = str.charAt(i)) {
    case ' ':
    case '#':
    case '?':
    case '%':
    s += NN ? '_' : escape(c); break
    default:
    s += c
    return s
    NO issues seen, Able to open attachment which has space in the file name.

  • About Patch bay?

    Friends,
    If you know about usage and significance of Patch bay.
    Could you please elaborate here.
    Thanks in advance.

    Patch Bay is the JMS implementation provided within ATG which simplifies the process of creating JMS applications. Patch Bay includes an API for creating the Nucleus components which can send and receive messages, and a configuration file where you can declare these components and your JMS destinations. There are various features and events in ATG which makes use of JMS and uses Patch Bay. E.g. registration, login/logout events, scenarios, various commerce actions etc.
    Refer to the following documentation for more details about Patch Bay:
    http://docs.oracle.com/cd/E35318_02/Platform.10-1-1/ATGPlatformProgGuide/html/s1201atgmessagesystem01.html

  • One question about Pricing and Conditions puzzle me for a long time!

    One question about Pricing and Conditions puzzle me for a long time.I take one example to explain my question:
    1-First,my sale order use pricing procedure RVAA01.
    2-Next,the pricing procedure RVAA01 have some condition type,such as EK01(Actual Costs),PR00(Price)....,and so on.
    3-Next,the condition type PR00 define the Access Sequences PR00 as it's Access Sequences.
    4-Next,the Access Sequences PR00 have some Condition tables,such as:
         table 118 : "Empties" Prices (Material-Dependent)
         table 5 : Customer/Material
         table 6 : Price List Type/Currency/Material
         table 4 : Material
    5-Next,I need to maintain Condition tables's Records.Such as the table 5(Customer/Material).I guess the sap would supply one screen for me to input the data of table 5.At this screen,the sap would ask me to select one table,such as table 5.When I select the table 5,the sap would go to the screen to let me input the data of table 5.But when I use the T-CODE VK31 or VK32 to maintain Condition tables's Record,I found it's total different from my guess:
    A-First,I can not found one place for me to open the table,such as table 5,to let me input the data?
    B-Second,For example,when I select the VK31->Discounts/Surcharges->By Customer/Material,the sap show the grid view at the right side.At the each line of the grid view,you need to select the Condition Type at the first field.And this make me confused very much.Why the sap need me to select one Condition Type but not the Condition table?To the normal logic,it ought not to select Condition table but not the Condition Type!
    Dear all,I'm a new one in sd.May be this is a very stupid question.But it did puzzle me for a long time.If any one can  explain this question in detail and let me understand the concept,I will appreciate him/her very much.Thank you.

    Hi,
    You said that you are using the T.codes VK31 or VK32.
    These transaction codes are used to enter condition records for standard condition types. As you can see a grid left side having all the standard condition types like price, discounts, taxes, frieghts.
    Pl check using T.code VK11 OR VK12 (change mode)
    Here you can enter the required condition type, in the intial screen. (like PR00, MWST, K004, K005 .....etc)
    After giving the condition type, press enter or click on Combinations icon on top of the screen. Then you can see all the condition tables which you maintained for that condition type. Like as you said table 118, table 5, table 6 and table 4.
    You can select any table and press enter, then you can go into the screen in which you have all the field cataglogues you maintained for that table. For example you selected combination of Customer/Material (table 5) then after you press enter then you can see customer field on top, and material fields.
    You can give all the required values and save the conditon record.
    Hope this is clear.
    REWARD IF HELPFUL.
    Regards,
    praveen

  • HT4061 I never set up a paascode and haven't used my ipad in about 2 wks. now its asking for a passcode to unlick. help

    I never set up a paascode and haven't used my ipad in about 2 wks. now its asking for a passcode to unlick. help

    LOST PASSCODE
    You should be able to remove the passcode by restoring the device.
    Connect the device to the computer with which you normally sync and open iTunes.
    Note: If iTunes prompts you to enter the passcode, try another computer that you have synced with. Otherwise, go to "If you have never synced your device with iTunes", below.
    Right-click the device in the left column and select Back up.
    When the backup is complete, select Restore.
    When finished, restore from your most recent backup.
    Otherwise read this
    If that doesn’t work  you will need to perform a factory restore to remove it. Or read:
    Enter Wrong passcode
    http://support.apple.com/kb/ht1212

  • Can't open pdf. files something about patch package

    Can't open PDF files something about patch package verification.error.

    I am having the same issue.  Unable to open ANYTHING related to adobe (PDF, downloads), as well as unable to delete and reinstall or even change or correct. 

  • I'm thinking about getting an i pod touch for my daughter. If I get the 4th generation i pod, is it compatible with the ios 7 updates for i phones as far as if she wants to imessage or face time with me?

    I'm thinking about getting an i pod touch for my daughter. If I get the 4th generation i pod, is it compatible with the ios 7 updates for i phones as far as if she wants to imessage or face time with me?

    The 4G can not run IOS-7.  "6" is the highest that it can go.  You need the 5G for IOS-7.
    However, that won't affect her ability to use iMessage and FaceTime.

  • I: Patch 6.5.3.1 for 9i available via Supplement Option

    On headstart patch 6.5.3.0 (patch version ONLY for Oracle 9i Forms), there is a bug introduced in library qmslib65.pll
    How to reproduce
    ================
    - Start the headstart demo
    - From the menu open form Forms --> Project Business Rules
    - Press F8 (execute query)
    - Now you see project 1, without detail records(no employees)
    - Click on the item 'Employee' (first empty record)
    - Click on the item 'Name' of the Project in the master
    - Now message 'FRM-40202 Field must be entered' appears
    Location of the problem
    =======================
    QMSLIB65.pll qms$context package body
    contains the following code:
    . -- fix 6.5.3.0
    . if get_record_property(name_in('system.cursor_record')
    . ,name_in('system.cursor_block'),STATUS) = 'NEW'
    . then
    . set_record_property(name_in('system.cursor_record')
    . ,name_in('system.cursor_block'),STATUS,INSERT_STATUS);
    . end if;
    . -- end fix 6.5.3.0
    This piece of code should be deleted completely
    Fix
    ===
    This problem has been fixed in patch 6.5.3.1 for Headstart for Oracle 9i Forms. This patch is downloadable from the Supplement Option web site.
    Kind Regards, Marc Vahsen
    Headstart Team

    I think I've found a bug in this release: If you have an LOV defined on a report parameter (with value and description), the when-validate-item trigger of the field will validate the description against the LOV. It adds the following code to the validation query: ||l_where_and || l_description_column || ' = ' || '''' || name_in (qms0012f.get_param_description_item(p_block_name))||''''
    Th descriptor column in this case is the alias (= "description"). However, you cannot use column aliases in a where-clause. This will never work!!
    Is there a fix for this problem?

  • Hi gurus, can any one explain me about patches in SAP?

    Hi gurus,
    Can any one explain me about patches in SAP?
    Regards
    Raghu

    Hi Raghu,
    If you do bit of googleing you will get information.
    http://help.sap.com/saphelp_smehp1/helpdata/en/30/1fea80d9b44f5a88fc0038d3dabb76/content.htm
    http://help.sap.com/saphelp_smehp1/helpdata/en/57/4e0eb0eae6457ea69b509813048989/content.htm
    http://help.sap.com/saphelp_nwce10/helpdata/en/a8/02784278b66255e10000000a155106/content.htm
    http://www.saptechies.com/support-package-stack-guide-sap-netweaver-70/
    http://www.sapdev.co.uk/upgrade/sap-patching.htm
    http://www.erpgreat.com/basis/sap-patch-administration.htm
    Regards,
    Deepanshu Sharma

  • Patch 8.1.6.2 for HPUX-11 32-bit

    Does anybody know where I can download the patch 8.1.6.2 for HPUX-11 32-bit.
    Werner

    10.2.0.4 and 11.1.0.7 are patchsets, available on MOS/metalink only (you need a valid support contract). There's only the exception for Windows 2008,here you can get this versions on OTN.
    But who did you tell characterset AL32UTF8 is not available in the basis versions?
    Werner

  • Patch 10.1.2.2 for Solaris is avalialble ?

    Dear Oracle,
    When patch 10.1.2.2 for Solaris is available ?
    Thanks,
    Yorke

    Sorry, I post missing platform.
    I mean patch 10.1.2.2 for Linux not Solaris.

  • Can we unlock an iphone which one locked with an email address and password.I have no idea about the email address and password for the icloud

    can we unlock an iphone which one locked with an icloud email address and password.I have no idea about the email address and password for the icloud.can any one help me about this.

    It sounds like you are talking about an iPhone that has been Activation Locked.  This article explains:
    http://support.apple.com/kb/PH13695
    If so, the iPhone can never be unlocked without the original Apple ID and password.  This is an anti-theft measure.

  • Hi all. i have adobe PS cc and i want to upgrade to PS and lightroom. How do i go about this without haveing to pay for both and paying the one combined price? thanks

    hi all. i have adobe PS cc and i want to upgrade to PS and lightroom. How do i go about this without haveing to pay for both and paying the one combined price? thanks

    You should talk to Adobe Support thru chat or by phone when they are available (Not usually on weekends) as they might be able to help arrange the change without any cancellation penalties.
    Phone/Chat support - For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Make sure you are logged in to the Adobe site, have cookies enabled, clear your cookie cache.  If it fails to connect try using a different browser.
    Creative Cloud support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html ( http://adobe.ly/19llvMN )
    Otherwise what you would normally do is first consult the following page to see what you can do on your own
    Manage your membership and payments | Creative Cloud
    https://helpx.adobe.com/x-productkb/policy-pricing/membership-subscription-troubleshooting -creative-cloud.html
    and then if necessary cancel the current plan (penalties being possible) and subscribe to the new one.
    Cancel your membership or subscription | Creative Cloud
    https://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html

  • Just bought a Nikon d750 and confused about adobe LR4 and PS6 support for the RAW files. I have DNG 8.7 but wondering if LR and PS will import direct soon Thanks for any advice

    Just bought a Nikon d750 and confused about adobe LR4 and PS6 support for the RAW files. I have DNG 8.7 but wondering if LR and PS will import direct soon Thanks for any advice

    Support for the Nikon D750 was introduced in the latest version of LR 5.7 and ACR 8.7 on Novemder 18th 2014.
    Further updates to LR 4 were stopped when LR 5 was released on June 9th 2013. No further updates for bug fixes and new camera support.
    Nada, LR 4 will never support Nikon D750. The Nikon D750 was introduced into the market in September 2014 some 15 months after further development of LR 4 was discontinued.
    You can use the Adobe DNG program (free download for the package) to convert the Nef (raw) files from your Nikon D750 to the Adobe DNG format which will permit you to import those into LR 4. This is the crutch provided by Adobe to allow for the processing of raw files with outdated versions of LR and ACR.
    You can also update the ACR plugin for PS CS6 to version 8.7 which can also work with the raw files from the D750. For direct support in Lightroom you will need to upgrade (paid) to version 5.7.

  • Every sync gets "You are about to synchroniz​e your calendar for the first time" - Help !!!

    I am on a MBP with the Tour and was able to successfully sync iCal and Address Book with BB. But everytime I try to sync, I get the " You are about to synchronize our Calendar data for the first time." with the options to "Replace Device Data", "Merge Data" or Cancel. Has anyone seen this and know how to fix? Replacing data makes it impossible to update Mac with changes on BB.  
    Please help! 

    Create a backup of your iCal and your BlackBerry.
    Then create a test Calendar event on the BlackBerry, in iCal then test another synchronization once again.
    The first time sync prompt usually occurs when it does not detect entries in either the BlackBerry or iCal Calendar.
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

Maybe you are looking for

  • I am stcuk in error exception  java.sql.BatchUpdateException

    Dear, I have write a program which reads data from a file and write in a database Postrgresql.But when i run my program it shows the error after some time running.It shows the exception which is "java.sql.BatchUpdateException: Batch entry 122,098 INS

  • How to cast ArrayList to ....

    Hi, I got an ArrayList and its values are (1,2,3) List tempList = new ArrayList(); tempList.add("1"); tempList.add("2"); tempList.add("3"); I am wondering how to convert it to an int [] array. int [] tempInt; I know that I can do this : tempList.toAr

  • Idoc inbound error - encoding question

    Hello,    I receive idoc file from a parnter.    I create a File Ports(WE21) : Non-unicode format and Checked 'Continue Despite Conversion Error'.    The partner send to us a file with ASCII-encoding including  German NÄHER .    In WE02, I found the

  • Download data from internet

    I need to retrive the data from instrument which is connect with my PC via the LAN cable. I have a new IP addreess for this device and i don't know how to retrive the data from this device.. i m first learner in labview.. can sombody help me?

  • Canon EOS rebel T3i. Zoom lens

    My partner has a new camera. She Is a beginner she wants. Zoom lens. What do you. Suggest.?