Can Bi Publisher (11G)  Recognize  Key Constraints Automatic or Not?

Hi,
We are using Oracle BI Publisher Enterprise Edition 11.1.1.6 (stand alone version)
We created a custom oracle database and in this database we are using the standard foreign primary key contraints in de database.
Can Bi Publisher recognise this automatically or not?
Is there anyone familiar with concept?
Regards,
Vivian
Edited by: VivaVegas on 4-mei-2012 2:51

Jorge,
Thank you for your reply.
I have checked all parameters you have suggested and they are okay. Still the issue persists.
One thing I have noticed. When I go to Windows>>Start>>BI>> Start BI Services, the progress stops at Managed BI Server.
For e.g. in following messages the window simply waits for long time after wls.mgd.alive: line.
Buildfile: StartStopServices.xml
get.credentials:
    [input] Please enter the username of a WebLogic admin user:
weblogic
Please enter the password for WebLogic user weblogic:
wls.admin.start:
     [echo] Starting WLS Admin Server at E:\MiddelwareHome\wlserver_10.3...
wls.alive:
wls.wait.alive:
     [echo] --> Weblogic Admin Server running: Admin console available at http:/
/WINDOWS11G:7001/console...
wls.mgd.start:
     [echo] Starting WLS Managed Server bi_server1 ...
wls.mgd.alive:That means following are not showing up/starting up.
wls.mgd.wait.alive:
     [echo] --> WLS Managed Server is running: available at WINDOWS11G:9704...
opmn.start:
     [echo] Waiting for OPMN managed services to start...
     [echo] OPMN has been started.
show_url:
     [echo] Oracle BI should now be available at http://WINDOWS11G:9704/analyticsThanks,
R

Similar Messages

  • How can I get firefox to shut down automatically when not in use for an hour

    How can I get firefox to shut down automatically when not in use for an hour

    Sorry, there is no feature for that built into Firefox, and I haven't seen an add-on to add that feature to Firefox.

  • 2008 Mac Pro 10.5.8 shuts down after hours of no use, Set to never shut down. Can be resumed pressing any key but all programs not in startup list need to be restarted and unsaved data lost .   New behavior.  No system changes.

    2008 Mac Pro 10.5.8 shuts down after hours of no use, Set to never shut down. Can be resumed pressing any key but all programs not in startup list need to be restarted and unsaved data lost .   New behavior.  No system changes.

    2008 Mac Pro 10.5.8 shuts down after hours of no use, Set to never shut down. Can be resumed pressing any key but all programs not in startup list need to be restarted and unsaved data lost .   New behavior.  No system changes.

  • Can i make exisitng Foreign key constraint deferrable?

    Hello, Is it possible to make the existing FK constraint deferrable? We can do this when we add New FK constraint. But i am not sure, we can make deferrable???
    scott@orcl> CREATE TABLE MASTER(id NUMBER(10));
    Table created.
    scott@orcl> CREATE TABLE child(id NUMBER(10), master_id NUMBER(10));
    Table created.
    scott@orcl>
    scott@orcl> ALTER TABLE master ADD PRIMARY KEY (id);
    Table altered.
    scott@orcl>
    scott@orcl> ALTER TABLE child ADD CONSTRAINT fk_master
    2 FOREIGN KEY (master_id)
    3 REFERENCES master(id)
    4 DEFERRABLE
    5 /
    Table altered.
    scott@orcl>
    scott@orcl> drop table child;
    Table dropped.
    scott@orcl> drop table master;
    Table dropped.
    scott@orcl>
    scott@orcl> CREATE TABLE MASTER(id NUMBER(10));
    Table created.
    scott@orcl> CREATE TABLE child(id NUMBER(10), master_id NUMBER(10));
    Table created.
    scott@orcl>
    scott@orcl> ALTER TABLE master ADD PRIMARY KEY (id);
    Table altered.
    scott@orcl>
    scott@orcl> ALTER TABLE child ADD CONSTRAINT fk_master
    2 FOREIGN KEY (master_id)
    3 REFERENCES master(id)
    4 /
    Table altered.
    scott@orcl> alter table child modify constraint
    2 fk_master deferrable;
    fk_master deferrable
    ERROR at line 2:
    ORA-00933: SQL command not properly ended
    scott@orcl>
    How can we make existing FK constraint as deferrable? Any help is appreciated....

    From Oracle doc
    Restrictions on Modifying Constraints
    Modifying constraints is subject to the following restrictions:
    You cannot change the state of a NOT DEFERRABLE constraint to INITIALLY DEFERRED.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_3001.htm#SQLRF01001

  • Some of my macbook pro keys are getting dim, how can i fix these select keys because it is not the whole keyboard?

    It is mainly the "i, o, p, k, and l" keys.

    yes. Here: https://expresslane.apple.com/GetproductgroupList.do?PRKEYS=SG1

  • Creating primary key constraint

    hi,
    if i have a table created, and i inserted say around 10 records ( there are no primary key or any other constraints ) , after inserting those 10 records now can i create a primary key constraint with enable novalidate option ?
    thanks

    No, you can create a PK Constraint which is initially disabled:
    alter table t add constraint t_pk primary key(owner) disable;But when you try:
    alter table t enable novalidate constraint t_pk;You will get a ORA-02437 Error if there are duplicat values (Oracle 10g).
    Dim

  • Can I disable the ESC key in camera raw?

    When working in Photoshop in general, I've gotten into the habit of using the ESC key to get out of a tool I'm currently using, but when using Camera Raw, this has the consequence of closing the image I've been working on without saving any of the edits I've made.  I've tried looking in the keyboard shortcut assignments for it, but no luck.  Maybe it's a Windows-wide setting, or a per-application setting that can be set?  And yes, I know I can stop hitting the ESC key, but that's not the answer I'm looking for.  Thanks in advance for any help on this.

    Jeff Schewe wrote:
    I guess you don't understand the fact the in ACR, the ESC key is doing EXACTLY WHAT IT'S SUPPOSED TO DO...exit without changes...
    And CTRL+S in PS also does what it's supposed to do as the programmers assigned it, but I got tired of accidentally hitting it when I meant to hit CTRL+D, so I removed the CTRL+S assignment from the Save command.  I wonder why the programmers gave us access to the shortcut key assignments.  Maybe it's so that we can make or remove assignments that work best for us, and not just accept what someone else thought worked best?
    Jeff Schewe wrote:
    And maybe it's you that needs to adopt and adapt?
    In this case, that could very well be true.

  • Publish: dropping index when it is used for foreign key constraint enforcement

    Hi,
    I'm trying to update a target schema from a reference database via Publish. Among the changes to apply, there's an index that needs to be dropped. Since it's linked to a foreign key constraint, it cannot be deleted unless the foreign key is temporarily dropped
    (I saw somewhere that disabling the foreign key should be enough but it doesn't seem to work either).
    Since there are other changes to be made on the same table, this foreign key also has to be dropped before the script can delete the table and re-create it. This part of the script is correctly generated. The problem is that this part appears after the 'DROP
    INDEX' instruction.
    So when generating the update script, SSDT tries to drop the index BEFORE dropping the foreign key. And I can't drop the foreign key in my custom pre-deployment script, otherwise the update script would fail when trying to delete it again.
    Shouldn't SSDT be smart enough to drop the constraint before the index? Is it a bug or did I forget to set an option? If it's not a bug, what can I do apart from doing it manually?
    Thank you for your help

    Hi Elsa,
    That sounds like a bug. Could you please file a Connect issue for this at
    https://connect.microsoft.com/SQLServer/feedback/CreateFeedback.aspx using the category "Developer Tools (SSDT, BIDS, etc.)"? We're trying to track all bugs through
    Connect so that you can tell when we have fixed the issue and we can request more information.
    A workaround for this issue might be to write a pre-deployment script for your project to drop the foreign key prior to deployment. A pre-deployment script can be added to your project by right-clicking on the
    project in solution explorer and then clicking on Add > Script... and selecting Pre-Deployment Script from the list.
    Thanks!

  • How can I run a check for a record across other records in the same dataset based on unique key constraint?

    Dear community,
    I have a flat data set which I run through a lookup and return. I want to check if at least one of the records matching a unique key constraint had a successful return without merging all the records. Can some one point me in the right direction?
    Thanks!
    Marc

    Hi,
    Sounds like a job for the Lookup Check processor!
    As with all check processors, it adds a flag attribute (with a Y/N value) that denotes if the lookup was successful or not, as well as filtering records based on this at output.
    Lookup Check does the same as Lookup and Return but does not return the record(s) looked up.
    Also note that Lookup and Return does not actually merge records, but it does pull back the return data (which you can then split if you want a record for each).
    Regards,
    Mike

  • BI PUBLISHER 11G : Automatic Filtering Doubt

    Hello.
    I have one pivot table with same data and one data table with other data from different dataset. Both dataset are joined.
    What i want to do is when i run the report the data from pivot table is showed and the data from data table is not showed until i click in one row in the pivot table.Actually the data from both tables are showed and i want by default only to show the pivor table data.
    Other problem is when i have one line in pivot table without matches in data table i recieve this error message : "Error Ocurred" .
    Someone have an ideia how to fix this 2 problem?
    I'am using the last version of Bi publisher 11g.
    Thanks in Advance.
    Paulo Duarte

    Raphael,
    From reading your problem description, it sounds like you are working with BI Publisher that you have installed as part of OBIEE.  Is that correct?
    I also think that you have built the charts in BI Publisher, not Answers and have set up the filters using BI Publisher, not Answers.  Is that correct?
    The screen shots both look to be from BI Publisher.
    Have you used Answers at all in constructing this report?
    If not then I think that the best place for your question to be answered is in the BI Publisher sub-space. We can move your question there if you would like.
    One final question, is OBIEE the data source for the report?
    Regards,
    Ian Bristow

  • Can we have more than one primary key constraint to a Oracle Table?

    Hi,
    Can we have more than one primary keys to a single table in oracle? ( Not the composite key)
    Please somebody answer..
    Regards,
    Alaka

    811935 wrote:
    Can we have more than one primary keys to a single table in oracle? ( Not the composite key)
    In principle a table can have multiple keys if you need them. It is a very strong convention that just one of those keys is designated to be "primary" but that's just a convention and it doesn't stop you implementing other keys as well.
    Oracle provides two uniqueness constraints for creating keys: the PRIMARY KEY constraint and the UNIQUE constraint. The PRIMARY KEY constraint can only be used once per table whereas the UNIQUE constraint can be used multiple times. Other than that the PRIMARY KEY and UNIQUE constraints serve the same function (always assuming the column(s) they are applied to are NOT NULL).

  • Is 11g auto stats collection automatic on? where can I find this job?

    Is 11g auto stats collection automatic on?
    I manually created a 11g database, but I did not see auto stats collection job. where can I find this job? or how could I verify this is on?
    Thank you.

    Found in Automated Maintenance Tasks.

  • Download ios 7, and the location function is off, I can not access because I forgot the key constraints, I can not restore the iphone because I can not find iphone app access

    download ios 7, and the location function is off, I can not access because I forgot the key constraints, I can not restore the iphone because I can not find iphone app access

    If you have a passcode to the screen lock that you've forgotten, restore the device from the computer to which the device is synced. For information and instructions, see:
    http://support.apple.com/kb/ht1212
    If that will not work, you'll need to put the device into Recovery Mode and then try the Restore again:
    http://support.apple.com/kb/ht1808
    If that still doesn't work, as a last resort try DFU mode:
    http://www.iclarified.com/entry/index.php?enid=1034
    If your device is running iOS 7 and you set up Find My iPhone (iPad/iPod),  however, then it has the Activation Lock on it and you'll need to enter in your Apple ID and password to activate the device after restoring:
    http://support.apple.com/kb/HT5818
    Regards.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

  • Does anyone know how to use pages so you can export pdfs from the internet and automatically drag words from the document into the file name of the pdf (i.e., author, title of a scientific paper)

    Does anyone know how to use pages so you can export pdfs from the internet and automatically drag words from the document into the file name of the pdf (i.e., author, title of a scientific paper). For example, if I am downloading a paper by smith called "Surgery" that was published in 2002, it will automatically set the file name in the download to smith- surgery 2002. I have heard pages is smart enough to do this.
    thank you

    Pages can export only its own documents. They may be exported as PDF, MS Word, RTF or Text files.
    Pages can import (ie. Open a file as, or Insert a file into, a Pages document) documents in several formats, but won't rename the document as you describe. Documents that can be Opened (eg. Text, AppleWorks 6 WP, MS Word files) are converted to Pages documents, and retain their original names, with .pages replacing the original file extension. Files that can be Inserted (generally .jpg, .pdf and other image files) become part of the existing Pages file and lose their names.
    It may be possible, using AppleScript, to extract the text you want and to Save a Pages file using that text as the filename, but that would depend in part on being able to identify which text is wanted and which is not.
    How will the script determine where the author's name begins and where it ends?
    How will the script recognize the beginning and of the title, an decide how much of the title to use in the filename?
    How will the script recognize the year of publication?
    For papers published in a specific journal, with a strict format for placing each of these pieces on information, or containing the needed information as searchable meta data in the file, this might be possible. But it would require knowledge of the structure of these files, and would probably handle only papers published in a specific journal or set of journals.
    Outside my field of knowledge, but there are some talented scripters around here who might want to take a closer look.
    Best of luck.
    Regards,
    Barry

  • Using FOreign key constraints on tables in database.

    I am student and novice in the field of ORACLE and PL/SQL and Database Creation. I had created a database consisting tables and got problem while applying foreign key constraints.
    CUST_MSTR
    CREATE TABLE "DBA_BANKSYS"."CUST_MSTR"("CUST_NO" VARCHAR2(10),
    "FNAME" VARCHAR2(25), "MNAME" VARCHAR2(25), "LNAME" VARCHAR2(25),
    "DOB_INC" DATE NOT NULL,      "OCCUP" VARCHAR2(25), "PHOTOGRAPH" VARCHAR2(25),
    "SIGNATURE" VARCHAR2(25), "PANCOPY" VARCHAR2(1),      "FORM60" VARCHAR2(1));
    (CUST_NO is PRIMARY KEY, )
    -- EMP_MSTR
    CREATE TABLE "DBA_BANKSYS"."EMP_MSTR"("EMP_NO" VARCHAR2(10),
    "BRANCH_NO" VARCHAR2(10), "FNAME" VARCHAR2(25), "MNAME" VARCHAR2(25),
    "LNAME" VARCHAR2(25), "DEPT" VARCHAR2(30), "DESIG" VARCHAR2(30));
    (EMP_NO is primary key )
    --NOMINEE_MSTR
    CREATE TABLE "DBA_BANKSYS"."NOMINEE_MSTR"("NOMINEE_NO" VARCHAR2(10),
    "ACCT_FD_NO" VARCHAR2(10), "NAME" VARCHAR2(75), "DOB" DATE,
    RELATIONSHIP" VARCHAR2(25));
    (NOMINEE_NO is primary key )
    --ADDR_DTLS
    CREATE TABLE "DBA_BANKSYS"."ADDR_DTLS"("ADDR_NO" NUMBER(6),
    "CODE_NO" VARCHAR2(10),      "ADDR_TYPE" VARCHAR2(1), "ADDR1" VARCHAR2(50),
    "ADDR2" VARCHAR2(50), "CITY" VARCHAR2(25), "STATE" VARCHAR2(25),
    "PINCODE" VARCHAR2(6));
    ( ADDR_NO is primary key )
    Problem: I want to apply foreign key constraints on ADDR_DTLS table so that Before inserting value in ADDR_DTLS table it must check, VALUE in ADDR_DTLS.CODE_NO must be PRESENT either in attribute value CUST_MSTR.CODE_NO or EMP_MSTR.CODE_NO or NOMINEE_MSTR.CODE_NO table .
    I applied the foreign key constraints using this syntax
    CREATE TABLE "DBA_BANKSYS"."ADDR_DTLS"("ADDR_NO" NUMBER(6),
    "CODE_NO" VARCHAR2(10),      "ADDR_TYPE" VARCHAR2(1), "ADDR1" VARCHAR2(50),
    "ADDR2" VARCHAR2(50), "CITY" VARCHAR2(25), "STATE" VARCHAR2(25),
    "PINCODE" VARCHAR2(6),
    constraints fk_add foreign key CODE_NO references CUST_MSTR. CODE_NO,
    constraints fk_add1 foreign key CODE_NO references EMP_MSTR. CODE_NO,
    constraints fk_add2 foreign key CODE_NO references NOMINEE_MSTR.CODE_NO);
    (foreign key)
    ADDR_DTLS.CODE_NO ->CUST_MSTR.CUST_NO
    ADDR_DTLS.CODE_NO ->NOMINEE_MSTR.NOMINEE_NO
    ADDR_DTLS.CODE_NO ->BRANCH_MSTR.BRANCH_NO
    ADDR_DTLS.CODE_NO ->EMP_MSTR.EMP_NO
    When I applied foreign key constraints this way, its gives a error called foreign key constraints violation. (I understand that, its searches the attribute value of ADDR_DTLS.CODE_NO in all the three tables must be present then the value will be inserted. But I want, if the value is in any of the three table then its should insert the value or its gives an error.)
    Please help me out, though i put the question and i want too know how to apply the forign key in this way. and is there any other option if foreign key implementation is not pssible.

    If you are on 11g you can use ON DELETE SET NULL:
    CREATE TABLE addr_dtls
    ( addr_no          NUMBER(6)  CONSTRAINT addr_pk PRIMARY KEY
    , addr_cust_no     CONSTRAINT addr_cust_fk    REFERENCES cust_mstr    ON DELETE SET NULL
    , addr_emp_no      CONSTRAINT addr_emp_fk     REFERENCES emp_mstr     ON DELETE SET NULL
    , addr_nominee_no  CONSTRAINT addr_nominee_fk REFERENCES nominee_mstr ON DELETE SET NULL
    , addr_type        VARCHAR2(1)
    , addr1            VARCHAR2(50)
    , addr2            VARCHAR2(50)
    , city             VARCHAR2(25)
    , state            VARCHAR2(25)
    , pincode          VARCHAR2(6) );In earlier versions you'll need to code some application logic to do something similar when a parent row is deleted, as otherwise the only options are to delete the dependent rows or raise an error.
    btw table names can be up to 30 characters and don't need to end with MSTR or DTLS, so for example CUSTOMERS and ADDRESSES might be more readable than CUST_MSTR and ADDR_DTLS. Also if the Customer/Employee/Nominee PKs are generated from a sequence they should be numeric.
    Edited by: William Robertson on Aug 15, 2010 6:47 PM

Maybe you are looking for

  • Installation Hassle For Photoshop CS4

    I bought a Bamboo Fun Wacom Tablet that came with Photoshop Elements 6.0. Under Wacom's Privilege Program, I bought Adobe Photoshop CS4 for $299. http://www.wacom.com/privileges/privileges.cfm?id=55&tablet=BambooFun https://store1.adobe.com/cfusion/s

  • Computer got virus and lost everything

    My dell got a major virus and crashed and lost everything, got new dell inspiron and downloaded Itunes will read i pod but wonr sync music do i have to reset ipod?

  • How can I permanently "reset toolbars to default settings" when viewing pdfs in Firefox?

    Just upgraded to version 8.0.1. My job includes a fair amount of searching and printing from PDFs that have been published on the web. The standard toolbar at the top of the PDF is gone. I hit Alt-F8 to get it back ("Restore toolbar to default settin

  • Need suggestion to choose SAP module

    Hi All I am new to this, I have finished MBA and corrently working as Software test engineer. I am not satisfied with the current job, I am planning to learn SAP functional module. so can any one suggest me which module will be best to learn.

  • Apps disappeared, please help!

    Hi iPod experts! My iPod Touch crashed and rebooted.  After the reboot, I cannot see any of my apps.  I had 6 pages of apps before, but now there is only the default first page (calculator, etc.). I tried to reset the iPod a couple of times by holdin