Oracle OLAP Mailing List

Hi all,
If anyone's interested, Peter Odds and I have set up an Oracle OLAP mailing list as an additional resource for developers working with the OLAP Option.
The list homepage is at http://www.rittman.net/lists/olap where you can subscribe, change subscription options or view the list archives.
With a bit of luck it'll be an additional way for 9i/10g OLAP Option developers to share ideas, and if any good tips come up we can post them back on this forum.
If you're interested, please feel free to sign up, and if you've got any questions please contact me at [email protected]
regards
Mark

I could not find it in documentation till 11g so I doubt if there exists a stop list for Russian language as supplied.
You can probably create one using CTX_DDL package.
http://download.oracle.com/docs/cd/B19306_01/text.102/b14218/cddlpkg.htm#CCREF0600

Similar Messages

  • A New Mailing List for Oracle Apps DBAs

    Hello Oracle Apps DBA community,
    A new mailing list [email protected] has been created!
    Feel free to subscribe by sending email to
    [email protected] with 'subscribe' in the Subject field
    Feel free to unsubscribe :) by sending email to
    [email protected] with 'unsubscribe' in the Subject field
    This list is dedicated purely Oracle Apps DBA job related questions.
    Let share our experience, options and problems. Together we will make our job more efficient.
    If your job is Oracle Apps DBA please WELCOME to join the list.
    I am sure you will not regret.
    More information about new list available on:
    http://www.freelists.org/archives/ora-apps-dba/05-2006/msg00000.html
    Thank you in advance,
    Yury
    5 years Oracle Apps DBA.

    I appreciate if someone comes up with an EBusiness Architecture forum, where users can share there architectures and best practices to tame the monster EBusiness

  • Is there a mailing list for the OID in oracle?

    Hi All,
    Is there a mailing list in Oracle for the OID discussion?
    Thanks,
    Michelle

    Hi Michelle!
    You have posted to the right forum. Also there is an OID mailing list inside Oracle, but unless you are an Oracle employee you cannot mail to it (even not from the outside).
    cu
    Andreas

  • Please recommend me some good mailing list about oracle

    please recommend me some good mailing list about oracle
    thanks!
    null

    binghao (guest) wrote:
    : pleaes recommened me some good mailing list about oracle
    : thanks!
    I have seen a list of Oracle mailing lists at the Database
    Domain website which is at www.dbdomain.com I think. I think it
    used to me the www.oramag.com site. If you come across any good
    ones let me know. Good Luck
    Thomas Morgan
    null

  • What is the internal mailing list for Oracle SES

    Hello, I had this mailing list: : [email protected] but it appears to not be available now. Does anyone know where should I write now?
    Thanks in advance.

    Hello,
    This is list is the way for everyone to see which companies are actively contributing on SCN. The points of their employees are aggregated under the company names.
    We have a recognition program for SAP Partners called the [SAP Pinnacle Awards|http://www.sap.com/ecosystem/partners/recognitionprograms/pinnacleaward.epx]. In various categories such as Software, Technology, Services, Community etc we give an award to our partners at the Sapphire conference in May. For the Community Award, we look at companies who are active on SCN, we look at their contributions on SCN (via this list) but we also look at the quality of their contributions, their involvement in SAP and community events as well as community projects.
    So to sum up and answer your question: this list helps with partner recognition, but there's more to it.
    Best regards,
    Laure (from the SCN Collaboration Team)

  • Oracle OLAP ExpressDataProvider Exceptions

    Hi
    I'm using Oracle 9i OLAP API. There's something strange going on here. I written a test program that accesses the metadata and displays all it's contents. It runs fine on my home PC. At college the same program running on the same settings as that of my home PC (including the jar files required) gives me the error shown by the staacktrace below:
    Exception in thread "main" java.lang.AbstractMethodError: oracle.jdbc.driver.OracleConnection.getTypeMap()Ljava/util/Map;
    at oracle.express.idl.util.TypeMapHelper.setTypeMap(TypeMapHelper.java:14)
    at oracle.express.olapi.data.full.ExpressDataProvider.initialize(ExpressDataProvider.java:150)
    at metadata.main(metadata.java:44)
    Press any key to continue...
    I am also sending the code below:
    import java.sql.*;
    import oracle.jdbc.driver.OracleSavepoint;
    import com.sun.java.util.collections.Map;
    import com.sun.java.util.collections.List;
    import com.sun.java.util.collections.Iterator;
    import oracle.express.olapi.transaction.ExpressTransactionProvider;
    import oracle.express.olapi.data.full.ExpressDataProvider;
    import oracle.olapi.data.source.Source;
    import oracle.olapi.metadata.MetadataObject;
    import oracle.express.*;
    import oracle.olapi.*;
    import oracle.jdbc.OracleConnection;
    import oracle.express.mdm.*;
    import oracle.dms.console.DMSConsole;
    import oracle.jdbc.driver.DMSFactory;
    class metadata
    public static void main(String[] args)
    try{
    Class.forName("oracle.jdbc.driver.OracleDriver");
    String url="jdbc:oracle:thin:@ss14:1521:OLAP";
    String user="sh";
    String passwd="sh123";
    OracleConnection conn=(oracle.jdbc.OracleConnection)DriverManager.getConnection(url,user,passwd);
    ExpressTransactionProvider tp=new ExpressTransactionProvider();
    ExpressDataProvider dp=new ExpressDataProvider(conn,tp);
    dp.initialize();
    MdmMetadataProvider mp=null;
    mp=(MdmMetadataProvider)dp.getDefaultMetadataProvider();
    MdmSchema root=mp.getRootSchema();
    System.out.println("Created Root Schema object...[OK]");
    Explorer ex=new Explorer(root);
    }catch(Exception e)
    e.printStackTrace();
    class Explorer
    MdmSchema root;
    public Explorer(MdmSchema root)
    this.root=root;
    get_Dimensions();
    public void get_Dimensions()
    MdmDimension mdmDim=null;
    List dim=root.getDimensions();
    System.out.println("Listing Dimensions");
    Iterator iter=dim.iterator();
    while(iter.hasNext())
    mdmDim=(MdmDimension)iter.next();
    System.out.println(mdmDim.getName());
    System.out.println("Getting the regions within dimensions");
    MdmUnionDimensionDefinition unionDef=(MdmUnionDimensionDefinition)(mdmDim.getDefinition());
    try{
    List hierarchies=unionDef.getRegions();
    System.out.println("Tapped Dimensional metadata..[OK]");
    Iterator hieriter=hierarchies.iterator();
    MdmHierarchy mdmHier=null;
    while(hieriter.hasNext())
    mdmHier=(MdmHierarchy)hieriter.next();
    System.out.println(mdmHier.getName());
    }catch(Exception npe)
    System.out.println("No regions present");
    System.out.println("Determining Dimension Type");
    try{
    MdmDimensionMemberType dim_memb_type=mdmDim.getMemberType();
    //check for the type of member
    if(dim_memb_type instanceof MdmStandardMemberType)
    System.out.println("Dimension is a standard dimension");
    if(dim_memb_type instanceof MdmTimeMemberType)
    System.out.println("Dimension is a TIME dimension");
    if(dim_memb_type instanceof MdmMeasureMemberType)
    System.out.println("Dimension is a Measure Member Type");
    }catch(Exception e)
    System.out.println("Exception:"+e);
    //finally to finish off let's tap the attributes of each dimension
    try{
    List attrList=mdmDim.getAttributes();
    MdmAttribute attribute=null;
    Iterator attrIter=attrList.iterator();
    while(attrIter.hasNext())
    attribute=(MdmAttribute)attrIter.next();
    System.out.println("Attribute:"+attribute.getName());
    }catch(Exception e)
    System.out.println("Exception:"+e);
    I dunno what's happening.Someone help with this please.
    It's urgent
    Thanx
    Prahalad Deshpande

    Good questions and I have put them to the docs team to (1) update the online docs and (2) respond here. Let's see if they do.

  • Physical size of dimensions and composites (Express and Oracle OLAP)

    Hi, have a rather odd question re: the physical size (in bytes) of composites...are they affected by the dimension sizes?
    I.e. if I define a dimension "Org" as:
    define org dimension text width 10
    will that result in smaller composites than if I define it as
    define org dimension text width 30
    ? i.e. given that everything else if equal (same number of values, same # of tuples, etc.) does the physical definition of how wide a dimension is affect the size of the composites that use that dimension?
    p.s. need to know this for Express, but if Oracle OLAP doesn't behave the same I'd like to know that also.
    Thanks!
    Scott

    A 5 dimensional composite has keys built of 5 4-byte dimension positions. There is a copy of the 20 byte value stored indexed by physical position that we use internally to determine the value of the base dimensions. Also there is a copy stored in a hash table used to take the base dimension values and convert those back to a physical position (that's 20 bytes for the key and 4 bytes for the physical position).
    Finally, we have internal structures ("inversions") that we use to essentially do "limit composite to base dimensions" for looping (for each base dimension value, a list of physical positions that have that base value in it), at 4 bytes per dimension or another 20 bytes.
    That's 64 bytes. Yeah, it's not cheap, but compared to a dense variable, you save a ton of space. I seem to remember a calculation someone did a long time ago that said that composites were net smaller for anything less than 20% dense.
    I'm not surprised that under certain conditions you can find a better data layout. Certainly the overhead of storing dense data is tiny compared to a composite. If you are clever (or lucky) in your segmenting, you can take advantage of the "holes" in the data to improve the storage. The "holes" (large groups of NA values) can go for many pages, if the faster varying dimension size is large, and won't be stored.
    Oracle OLAP contains various improvements over the Express code. I believe we now use compressed bitmaps to store the inversions, rather than lists of values, for a substantial savings. There may be other changes as well (I'm not current on the details of the dimension storage).
    Hope this helps.
    Jim

  • BIB-9009 Oracle OLAP n'a pas pu créer le curseur.

    hi every body,
    i have this message error when i trying to visualised my cubes in AWM 11G R2
    BIB-9009 Oracle OLAP n'a pas pu créer le curseur.
    Erreur sur le serveur
    Classe d'erreurs : Echec dExpress
    Descriptions des erreurs du serveur :
    DPR : impossible d'exécuter l'interrogation, Générique à TxsOqCursorManager::fetchInitialBlocks
    INI : XOQ-00699: erreur interne, arguments : [TxsOqSQLCubePreGenerator::createCubeAWGenerationInfo-01], [xsoqscbg.cpp], [1533], [, Générique à xsoqscbg.cpp:1533
    oracle.dss.dataSource.common.QueryRuntimeException: BIB-9009 Oracle OLAP n'a pas pu créer le curseur.
    Erreur sur le serveur
    Classe d'erreurs : Echec dExpress
    Descriptions des erreurs du serveur :
    DPR : impossible d'exécuter l'interrogation, Générique à TxsOqCursorManager::fetchInitialBlocks
    INI : XOQ-00699: erreur interne, arguments : [TxsOqSQLCubePreGenerator::createCubeAWGenerationInfo-01], [xsoqscbg.cpp], [1533], [, Générique à xsoqscbg.cpp:1533
    oracle.dss.dataSource.common.OLAPException: BIB-9009 Oracle OLAP n'a pas pu créer le curseur.
    Erreur sur le serveur
    Classe d'erreurs : Echec dExpress
    Descriptions des erreurs du serveur :
    DPR : impossible d'exécuter l'interrogation, Générique à TxsOqCursorManager::fetchInitialBlocks
    INI : XOQ-00699: erreur interne, arguments : [TxsOqSQLCubePreGenerator::createCubeAWGenerationInfo-01], [xsoqscbg.cpp], [1533], [, Générique à xsoqscbg.cpp:1533
    Erreur sur le serveur
    Classe d'erreurs : Echec dExpress
    Descriptions des erreurs du serveur :
    DPR : impossible d'exécuter l'interrogation, Générique à TxsOqCursorManager::fetchInitialBlocks
    INI : XOQ-00699: erreur interne, arguments : [TxsOqSQLCubePreGenerator::createCubeAWGenerationInfo-01], [xsoqscbg.cpp], [1533], [, Générique à xsoqscbg.cpp:1533
    cheers
    Younés

    This error is fired when the code cannot generate SQL for one of the dimensions of a cube. Do you have a dimension without any hierarchies? It may help if you could list each dimension along with its hierarchies and levels.

  • Trying to create a mailing list.

    Hello,
    I am trying to create a mailing list application. i vcan send email to 1 person with the following procedure:
    begin
    html_email (
    p_to => '[email protected]',
    p_from => '[email protected]',
    p_subject => 'Contact Us information',
    p_text => 'Contact Us information',
    p_html => '<DIV class=callout>You have a new contact us:</div>
    <hr />
    <DIV class=callout>Name: ' || :p1_name || '</DIV>
    <DIV class=callout>Address: ' || :p1_address || '</DIV>
    <DIV class=callout>City: ' || :p1_city || '</DIV>
    <DIV class=callout>State: ' || :p1_state || '</DIV>
    <DIV class=callout>Zip: ' || :p1_zip || '</DIV>
    <DIV class=callout>Phone: ' || :p1_phone || '</DIV>
    <DIV class=callout>Email : ' || :p1_email || '</DIV>
    <DIV class=callout>Categories: ' || :p1_category_id || '</DIV>
    <DIV class=callout>Comments: ' || :p1_comments || '</DIV>
    <hr />',
    p_smtp_hostname => 'mymail.com',
    p_smtp_portnum => '25');
    end;
    Is it possible to write a loop statemnet that will insert email addresses from a table into the p_to field of the procedure??
    Message was edited by:
    blackmamba11

    There are a few great PL/SQL books out there, eg.
    Oracle PL/SQL Programming (http://www.amazon.com/gp/product/0596009771?ie=UTF8&tag=inorap-20&link_code=as3&camp=211189&creative=373489&creativeASIN=0596009771) or Oracle PL/SQL Best Practices (http://www.amazon.com/gp/product/0596514107?ie=UTF8&tag=inorap-20&link_code=as3&camp=211189&creative=373489&creativeASIN=0596514107)
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

  • New mailing list

    Please join the new Intermedia mailing list:
    informations are under:
    http://www.egroups.com/group/oracle-intermedia/

    I appreciate if someone comes up with an EBusiness Architecture forum, where users can share there architectures and best practices to tame the monster EBusiness

  • Beehive Online Mailing List: Reported as a spam at Customer side

    hi,
    It is reported by Customer that email came from Beehive Online mailing list get treated as a spam (Forged Sender) when they forward it internally.
    Customer forwarded the header of the email and it seems like that our beehiveonline.oracle.com server doesn't alter envelope sender information (return-path:).
    Could you kindly advise how to solve this?
    SR is submitted but they could not help...

    hi Jereen,
    Sorry for late response.
    Service Request#: 497386-92009072 &
    Service Request#: 497386-115086725
    As you can see, suggestions were made by service desk since I posted last time but the situation is the same.
    It would be great if you could advise on this.
    Can beehiveonline.oracle.com server alter envelope sender information (return-path:) ??
    Regards,
    Motoko

  • Linux Dtrace development mailing list ?

    Hi,
    Do you know if there is any linux-dtrace mailing list where the patches are posted ?
    Thanks

    Hi,
    There currently is no mailing list where patches are posted. Source code is provided in the GIT repositories for the DTrace kernel changes (GPL) and DTrace modules (CDDL) on oss.oracle.com, however.
    The GIT repositories are:
    http://oss.oracle.com/git/?p=linux-2.6-dtrace-unbreakable-beta.git;a=shortlog;h=dtrace-0.2
    http://oss.oracle.com/git/?p=linux-2.6-dtrace-modules-beta.git;a=shortlog;h=dtrace-0.2
    Hope this helps,
    Kris

  • *Help Needed* Adding multiple emails/mailing list in the email subscription

    Help Needed
    Hi,
    Can someone help me in adding multiple email address/mailing list in the email subscription for interactive reports in Apex 4.
    pls mail me at [email protected]
    Regards,
    Sunny

    The doc does not mention a separator for the email addresses because we only support one email address per subscription. I have logged a task for our next release to look at expanding it and allowing multiple.
    -- Sharon

  • OBIEE 11G   HOLAP( drill through)   from ORACLE OLAP  to  Relaltional table

    Hi Experts...
    I have some idea that the drill through from an essbase cube to an relational cube can be possible with few limitations in OBIEE 10g. I am looking for the same feature with ORACLE OLAP option . I have OLAP cube built in 11g (leve5 - granularity to one of the dimension) , and relational has 7 levels. In OBIEE once drill down to the level 5 it has fetched data from OLAP , and going beyond to level 6 -7 then it should get the data from relational table.
    Do anyone had gone through such solution, Please kndly share your inputs and documents which would be helpful.
    Thanks
    S

    This is very easy. It's really no different from setting up OBIEE to drill from one table to another. Let's assume that you have your cube mapped in OBIEE using the OBIEE plug-in for Analytic Workspace Manager. Here is an outline of the steps:
    1. Add the dimension table and fact table to the OBIEE physical layer.
    2. Add the new level to the OBIEE dimension object in the business layer.
    3. Add the dimension table as a new logical table source to the existing dimension table in the business layer.
    4. Add the fact table as new table in the business layer.
    5. Define joins in the physical and business model as appropriate.
    6. Set set keys in the tables and the dimension as appropriate.
    7. Set the level for the new dimension table to the appropriate level in the dimension.
    Again, it's really best to just think about this as drilling from one table to another.

  • Right click on the mail list doesn't open the context menu any more.

    Hi everybody,
    Thunderbird stoped to show the context menu on the mail list recently. Right click just prints the crossing line. What the problem could it be?
    Thanks anyone for any help.
    Win 8.1 64
    Thun 31.3.0

    ''Nick532 [[#question-1037921|said]]''
    <blockquote>
    Hi everybody,
    Thunderbird stoped to show the context menu on the mail list recently. Right click just prints the crossing line. What the problem could it be?
    Thanks anyone for any help.
    Win 8.1 64
    Thun 31.3.0
    </blockquote>
    ''Toad-Hall [[#answer-668503|said]]''
    <blockquote>
    Very odd.
    Right click on email in list should open a drop down selection.
    Usually a crossed line through something denotes that it is marked as deleted in an imap mail account.
    * http://kb.mozillazine.org/Deleting_messages_in_IMAP_accounts
    See if there is a conflict with an addon.
    Restart Thunderbird in safe mode.
    Help > Restart with addons disabled.
    then perform the same test; right click on email in list.
    Do you get the drop down, if yes, then one of your addons is causing the conflict.
    You would have to disbale each in turn to locate which one is the problem.
    Maybe the addon needs updating.
    Report back on results.
    </blockquote>
    I have the same problem too. When i restarted with addons disablem problem dissapeared but when i switch to normal mode and disable all off the plugins and addons the problem still remains.
    Please help.

Maybe you are looking for

  • Help! DVI to Video adapter not working!

    Hello, I bought a brand new DVI to video adapter and it's not working. I plug it in and it shows the start-up screen, but it's split screen and it's in black and white. Then, it goes into the black and white lines, not showing what's coming out of th

  • Can't open a 2.3 GB TIFF that was created in CS5

    This is my first post - any help is greatly appreciated. I created a layered tiff file in PS CS5 and saved it with layers. It was 2.3GB so I got the warning that the file might not be readable in all programs. I assumed this wouldn't be a problem sin

  • String subtraction

    String cannot be subtracted......but i want the following. example1: input: str1="abc   332.0"; str2="332.0" output: str3=str1-str2="abc" example2: input: str1="  332.0   abc "; str2="332.0" output: str3=str1-str2="abc"how can i do this ?

  • Mapping of records in file to one BAPI

    Hi Is it possible if I have a file with two different type of records and which needs to be mapped to two different structures of BAPI. How can this be done. Regards Rinku

  • EEWB field length modification error

    Hi, In our system, an EEWB project is already exist for custom fields in Quotation's product item (CI_EEW_CUSTOMER_I). I want to change the field length of those custom fields. Thus, I run the wizard of this EEWB project and change some of the field