Access to safety class for parents and children

Dear Experts,

If I give you access a parent to a user entity 'All', it also gives access to the children of the parent entity?

Thank you very much.

Kind regards

Benoit

Hi Benoit,.

If you give access to a parent entity 'All', it means that the user will be able to read/write/promote an entity. If in the "Security node" attribute of application properties, you select 'Entity', access will be available only for the specific entity. If you have selected 'Parent', then specific access will be available for all children of that entity.

Check the man page of admin 90.

Kind regards

Thanos

A truth about...:... options calculation

Tags: Business Intelligence

Similar Questions

  • parents and children of the same table records

    I want to create a query that is a union such that 2nd resultset is based on the game of results 1. I have a table that has parent and child records in the same table.

    Table: EVENTS
    EVENT_ID
    PARENT_EVENT_ID
    CREATED_DATE
    (other columns)

    If PARENT_EVENT_ID is null, then this is a parent record, otherwise it is a book of the child. I want to select all parent records then union them with all the related child records... something like this:

    Select * from EVENTS where CREATED_DATE < sysdate - 90 and PARENT_EVENT_ID is null - all parents
    Union
    Select * event where PARENT_EVENT_ID in (select EVENT_ID of EVENTS where CREATED_DATE < sysdate - 90 and PARENT_EVENT_ID is null)-include all children selected from the top parent

    It works but it of kind of ugly, I want to avoid using the subselect in the 2nd because it is a repeat of the 1st statement, is there a way to alias the first statement and only refer to him in the 2nd query?

    Hello

    CONNECTION is very similar to a UNION on the same table. How is this:

    SELECT     *
    FROM     events
    WHERE     created_date     < SYSDATE - 90
    START WITH     parent_event_id     IS NULL
    CONNECT BY     parent_event_id     = PRIOR event_id
         AND     LEVEL          <= 2    -- Maybe
    ;
    

    ?

    To answer your question: Yes, you can still keep the result set of a query and the Treaty as if it were a table or vew, like this:

    WITH     roots     AS
    (
         SELECT     *
         FROM     events
         WHERE     created_date     < SYSDATE - 90
         AND     parent_event_id     IS NULL
    )
    SELECT     *
    FROM     roots
         --
    UNION ALL
            --
    SELECT     *
    FROM     events
    WHERE     created_date     < SYSDATE - 90
    AND     parent_event_id     IN (
                          SELECT  event_id
                          FROM    roots
                      )
    ;
    

    It's always a bit ugly, however. I would use CONNECT BY or from Oracle 11.2, a recursive WITH clause (which is explicitly a UNION), or, in any version, a self-join, like this:

    SELECT     c.*
    FROM          events  c
    LEFT OUTER JOIN     events     p  ON   p.event_id  = c.parent_event_id
    WHERE   p.parent_event_id  IS NULL
    ;
    

    I hope that answers your question.
    If not, post a small example of data (CREATE TABLE and only relevant columns, INSERT statements) for all of the tables involved and the results desired from these data.
    Report where the queriy above (the one you decide to use) is producingthe bad results and explain, using specific examples, how you get the right results from these data in these places.
    Always say what version of Oracle you are using (for example, 11.2.0.2.0).
    See the FAQ forum {message identifier: = 9360002}

  • Cursors for parent and child, bind variable and library cache

    I was going through the documentation to understand the difference between the parent and the child cursors. Surprisingly, there's not too much help for this. I was able to collect the following information about this

    For each statement SQL cache library contains a cursor "parent" for the text of the SQL statement. The parent cursor is composed of a "handle" that can be searched by the hash value via the library cache hash table and an «object' which contains pointers to each of its «child» cursors Each cursor of the child is also composed of a handle and an object. The child object is composed of two segments numbered from 0 to 6. Lot 0 contains all the credentials for a particular version of the SQL statement and lot 6 contains the execution plan. This distinction between parent and child cursors is maintained even when there is only one version of each SQL statement.

    Lets say that 2 LMD were fired with the same set of variables bind (names of variables were same but differed from the value.) The only difference between the 2 LMD was the value of the variable binding) and under the same conditions of load.

    These DML 2 would be a sliders 2 children of one parent only cursors.

    Please tell me detailed documentation on the subject, so my question is too elementary

    Kind regards
    Vishal

    I'm not sure how useful jumping in stuff like bunch 0 and 6 bunch is in terms of understanding what is a parent and what is a child cursor.
    This quote seems to come from Steve Adams - http://www.ixora.com.au/q+a/0104/19005414.htm
    It's a good idea to cite your references.

    I'll give it a go.

    A cursor is a lot of information stored in memory on a SQL statement.

    The basic information for a parent cursor is the text of the SQL statement - exact matches of the statement can only share the parent cursor.

    The cursor of the child is really on the implementation plan specific for a statement and the different settings and parameters that caused this plan to be generated.

    There are a whole bunch of reasons why the executions of the same SQL statement may or may not reuse the existing child cursors.

    In your example 2 statements that differ by the variable binding are likely to lead to different children, although there are factors that can lead to lie different values, do not share the same children among whom for example, the length of the dregs, Adaptive setting cursor_sharing = similar and histograms, or new features like cursor sharing (on subsequent runs of renowned sql running suboptimal initially).

    It might be useful to see V$ SQL_SHARED_CURSOR. This shows the disparities that cause children to not be shared. There are more than 60 columns in this view which gives an indication of the number of factors that can influence.
    http://download.Oracle.com/docs/CD/E11882_01/server.112/e17110/dynviews_3059.htm#REFRN30254

    You might want to look here the criteria for sharing SQL:
    http://download.Oracle.com/docs/CD/E11882_01/server.112/e16638/memory.htm#i40017

    Away from the main documentation, perhaps some of the writings of the optimizer Development Group could help?
    http://blogs.Oracle.com/mt/mt-search.cgi?blog_id=3361&tag=cursor%20sharing&limit=20

    Christian Antognini described this area very well in the "Oracle Performance Troubleshooting Guide".

    Published by: Dom Brooks on February 24, 2011 16:45

  • Hierarchical query with several parents and children without parents

    Hi all,

    I have a problem of follow-up:

    1, parent_1,.

    2, child_1, 1

    3, child_2, 1

    4, grandchild_1, 2

    5, parent_2,.

    6, child_3, 5

    7, child_0,.

    In this case, I can have multiple parents, and I also have children who do not have parents. Can someone help me solve this problem

    Concerning

    Hello

    So, if a node has itself or 0 as its parent_id, it's the same as with the NULL value?

    In this case, include all these possibilities in the START WITH clause:

    SELECT DLI

    , LPAD (' ' ')

    , (LEVEL - 1) * 3

    , ' '

    ) || descr AS descr

    parent_id

    T

    START WITH NVL (parent_id, 0) (0, DLI)

    CONNECT BY parent_id = PRIOR DLI

    AND idd <> parent_id

    ;

  • How can I access the mobile site for phone and Tablet map versions?

    I presented a site map for the desktop version by entering www.mysite/sitemap.xml to webmaster tools easily. This site map includes mobile pages, but Google is able to index the pages office, ignoring those mobile simply. I have to do something different?

    Thanks for any help and suggestions.

    You won't need to do anything more here Muse generates a sitemap for the site that contains all the information for Tablet and mobile version, Google knows that office pages are canonical.

    You can find more details here: Google groups

    Thank you

    Sanjit

  • Snapshots of parent and children.

    Hi all

    How stereotypes of children occur when changes are made to the parent?

    Original disc

    | -> Snapshot 1

    | -> Snapshot 2

    What happens to snapshot 2 after using ' go to ' / 'Come back' function and which dates back to 1 snapshot and make going to it?

    These changes to propagate to children?

    Thank you.

    I don't think that there is a best practice for how to manage your golden images (snapshots) for pools. Depends actually if patch 3 groups is much easier than coming back on "Common software", this patch and then re-create the 3 groups (i.e. reinstall additional software).

    André

  • Parents and children Touch - event management

    I have a container with some controls.

    I want this is notecard to the container code to run only if no child control has handled the event onTouch.

    Is this possible?

    Thank you

    Jamie

    I solved it.

    Here's how...

    First of all, there are two touch events, I have now, I understand as follows:

    'touchCapture' is received in a container before the spread of children take place.

    'touch' is received in a container after the propagation takes place.

    I've added a property to the container like this:

    Boolean touchHandled property

    I added handlers for the touchCapture and the touch, like this:

    onTouchCapture: {}
    touchHandled = false
    }

    Notecard: {}
    If (! touchHandled) {}
    Manage you like...
    }
    }

    If a child control manages the key event, I the child touchHandled set to true. For example, in one of the children, I manage a TOP event. I have code like this (in children):

    Notecard: {}
    If (event.isUp ()) {}
    Do all that...

    touchHandled = true
    }
    }

    Mission accomplished. Comments are welcome...

    Jamie

  • Insert objects parents and children in the same request

    Hello.

    I use Web 2.0 CRM on demand Services create opportunities with Notes, but I'll have a few mistakes if I add a Note to the ListOfNotes of the opportunity.

    I use a windows forms application that is coded in c#.
    I wan't creat the opportunity and his notes in the same request (method OpportunityInsert).

    I fill the object [] OpportunityData with the data of opportunity and theOpportunityData. ListOfNote.Note [0] with the Note data. When I run my application, I get this message:

    "Operation on the 'Opportunity' integration component update failed because no record corresponding to the component 'led' with search specification" [name] = "XXXXX" ' could be found. "." (SBL-EAI-04403) »


    Why does say 'operation update' if I call the OpportunityInsert method?
    It seems he's trying to find an opportunity before creating it, I do not understand...

    Ins't it is possible to define in the parent (opportunity) all child objects (Notes, activities) and call the Insert and create all? How can I do this?

    Thank you.

    Edited by: 859863 may 18, 2011 18:24

    Hello

    I got your point. As I said most early to insert a new Note, you will need to use the method Execute of opportunity because InsertChild method is not supported in WS 2.0. Here is an example of XML code demonstrates how to use the Execute method to display several insert in a single SOAP request operation.


              
                   
                        
                             New
                             ABC
                             XYZ
                             XYZ
                             
                                  
                                  

                             

                        

                   

                   LIC
              

         

    If possible to share code you are using, and then I can fix your code. But first try to use the Execute method, then enter in this method
    operation = "insert".

    Thank you & best regards
    Sablok

  • definition of gradients in actionscript for Panel and children

    I have a panel with a graphic in it. I don't want to display a border, but the group container is nice to set the title and add a caption. I use this code to disable the border:

    "" < mx:Panel xmlns:mx = ' http://www.adobe.com/2006/mxml ' styleName = "gradientBgrd" >
    < mx:Style >
    {.gradientBgrd}
    borderStyle: applicationControlBar;
    }
    < / mx:Style >

    But I would like to create some charts to let the user customize the color of the Panel/table (the user, it must seem like a single object, affecting thus the color of the Panel must also create a fill of the chart)

    I know you can do something like this for the buttons:

    button.setStyle ("fillColors", ["#FF0000", "#0000FF"];)

    But how to do this in Actionscript for the Panel/table I described?

    Well, I finally got it to work with the code from this blog:

    o-a-Flex-Panel http://www.brucephillips.name/blog/index.cfm/2007/1/20/apply-A-background-color-gradient-T

  • How can we stop Member of "attribute" inheritance from parents to children?

    Dear all,

    Do you know how I can stop sharing the attribute member between parents and children?

    In the case, I need to change the currency of the parent (CAD $) entity, but I want children to keep the currency CAD.

    In my case, when I change the attribute of the entity, the children inherit the mother.

    For me, the legacy is applied automatically to all members of the sub of the parent.

    Thanks in advance for your support.

    Jean Daniel

    Hyperion Planning 11.1.2.3

    As described in the Administrator's Guide

    If a parent has several children, of whom only one child has a currency that is overridden, the mother inherits code currency overridden in Essbase (which is not displayed on the forms of data).

    I think that is what is happening with you... I guess nothing can be done to avoid this, as it is written in the bible of the oracle!

  • Why can't access any Web site for two days? Ken

    For 2 days I get the message "Firefox can't establish a connection to the server...". "This happens with any web site, and it's frustrating.

    Internet Explorer works on this computer, but I do not like.

    One possible cause is security software (firewall) that blocks or limits Firefox or plugin-container process without informing you, possibly after the detection of changes (update) for the Firefox program.

    Delete all rules for Firefox in the list of permissions in the firewall and leave your firewall again ask permission to get full unlimited access to the internet for Firefox and the plugin-container and the update process.

    See:

  • parental control for windows and IE8 lists

    could you tell me where to find lists allow/block for access in ie8 Manager and parental control under accounts of users and parental control?

    Hi pavilion_alex,.

    For Access Manager, see the following: http://www.dummies.com/how-to/content/how-to-use-content-advisor-in-internet-explorer-8.html.

    For Parental control, see the following: http://windows.microsoft.com/en-US/windows-vista/Set-up-Parental-Controls.  For each category, there is a tracking link that provides details on how to manage this particular aspect, including where are the lists and how block/allow access.

    Windows Live Family Safety 2011 allows you to manage remote parental control - but not really adds additional means to block or allow.  You can simply access computers remotely to do what parental controls can do this on the local PC.  Here's where to find this program: http://explore.live.com/windows-live-family-safety?os=other.

    I hope this helps.

    Good luck!

  • A safety class is not found in this JAVA virtual machine for the following reason: sun.security.x509.CertAndKeyGen

    I'm trying to start OUD 11.1.2.2.0 after a new installation on Windows 2008 Server (oud - setup.bat) and I see the following error. Any ideas?

    [18/Apr / 2014:13:34:04-0600] category = gravity CORE = INFORMATION msgID = 132 msg = The Directory Server starts the configuration of the boot process

    [18/Apr / 2014:13:34:05-0600] category = gravity CORE VIEW msgID = 458886 msg = directory = unified Oracle 11.1.2.2.0 (build 20131115153045Z, R1311150604) commissioning

    [18/Apr / 2014:13:34:08-0600] category gravity = RUNTIME_INFORMATION = VIEW msgID = 20381717 msg = installation directory: C:\Oracle\Middleware\Oracle_OUD

    [18/Apr / 2014:13:34:08-0600] category gravity = RUNTIME_INFORMATION = VIEW msgID = 20381719 msg = Instance directory: C:\Oracle\Middleware\asinst_1\OUD

    [18/Apr / 2014:13:34:08-0600] category gravity = RUNTIME_INFORMATION = VIEW msgID = 20381713 msg = Information FMV: 1.8.0_05 - b13 by Oracle Corporation, architecture 32 bits, the size of the heap 652476416 bytes

    [18/Apr / 2014:13:34:08-0600] category gravity = RUNTIME_INFORMATION = VIEW msgID = 20381714 msg = JVM Host: slc00dbh.us.oracle.com, running Windows Server 2008 6.0 x 86, size of 8177541120 bytes of physical memory, the number of available processors 2

    [18/Apr / 2014:13:34:08-0600] category gravity = RUNTIME_INFORMATION = VIEW msgID = 20381715 msg = JVM Arguments: ' - Dorg.opends.server.scriptName = start - ds. "

    Exception in thread "main" java.lang.ExceptionInInitializerError: a safety class is not found in this JAVA virtual machine for the following reason: sun.security.x509.CertAndKeyGen

    to org.opends.server.util.Platform$ PlatformIMPL. < clinit > (Platform.java:132)

    to org.opends.server.util.Platform. < clinit > (Platform.java:85)

    at org.opends.server.util.CertificateManager.generateSelfSignedCertificate(CertificateManager.java:283)

    at org.opends.server.admin.AdministrationConnector.createSelfSignedCertifIfNeeded(AdministrationConnector.java:703)

    at org.opends.server.admin.AdministrationConnector.initializeAdministrationConnector(AdministrationConnector.java:182)

    at org.opends.server.core.ConnectionHandlerConfigManager.initializeAdministrationConnectorConfig(ConnectionHandlerConfigManager.java:356)

    at org.opends.server.core.DirectoryServer.initializeAdministrationConnector(DirectoryServer.java:2872)

    at org.opends.server.core.DirectoryServer.startServer(DirectoryServer.java:1539)

    at org.opends.server.core.DirectoryServer.main(DirectoryServer.java:9930)

    C:\Oracle\Middleware\Oracle_OUD > java-version

    Java version "1.8.0_05".

    Java (TM) SE Runtime Environment (build 1.8.0_05 - b13)

    The Client Java VM (build 25, 5 - b02, mixed mode, sharing)

    I used the following jdk based on the matrix and it worked fine:

    C:\Oracle\Middleware\Oracle_OUD>Java-version

    Java version "1.6.0_24".

    Java (TM) SE Runtime Environment (build 1.6.0_24 - b07)

    The Client Java VM (build 19.1 - b02, mixed mode, sharing)

  • My child has its own Apple ID, throughout I would buy apps for her and she would transfer to his iPad. But since a new update she has no access to its power supplies that are on my shopping list. She is using "Video star" app?

    My child has its own Apple ID, throughout I would buy apps for her and she would transfer to his iPad. But since a new update she has no access to its power supplies that are on my shopping list. She is using "Video star" app?

    Hi Breda49

    iTunes purchases (free downloads are taken for granted) are permanently linked to the Apple that was used to buy ID.

    To work around this problem, you can set up sharing of family and your child. This will allow you to share all your purchases.

  • The Parental account for my child's account has been disabled for inactivity and to accept the new terms of use for the xbox update must be parental confirmation.

    The Parental account for my child's account has been disabled for inactivity and to accept the new terms of use for the xbox update must be parental confirmation. I can't do this because even when you type the parental email address in the password recovery, it does not recognize because because it is inactive. I need a Windows Live technician to reactivate the account and I don't know if I should put the email address of the account here for security reasons. My other question is also if you can't reactivate can you switch parental permissions to another account.

    -Thanks, Michael

    Hello

    What version of the Windows operating system is installed on your computer?

    I suggest you to refer to the following article in the Xbox and check if it helps.

    Xbox LIVE connection issues:

    http://support.Xbox.com/en-us/billing-and-subscriptions/Windows-Live-ID/Xbox-Live-sign-in

    If the steps in the section of the Xbox did not help, then it would be better to post the same question in the Windows Live ID portal and forum Xbox to get help. We have a dedicated team to help you with questions of this type.

    Windows Live ID Portal: http://www.windowslivehelp.com/product.aspx?ProductID=10

    Forums Xbox: http://forums.xbox.com/

    Hope the information is useful.

Maybe you are looking for