Search for users who have the SYSADMIN responsibility

I want to find all the users who has SYSADMIN responsibility.


clues?

I want to find all the users who has SYSADMIN responsibility.

clues?

Application: submit the program simultaneous "users of a responsibility."

Of the database:

SQL> SELECT fu.*
FROM fnd_user_resp_groups_direct furgd, fnd_responsibility_vl frvl, fnd_user fu
WHERE furgd.responsibility_id = frvl.responsibility_id
AND fu.user_id = furgd.user_id
AND(to_char(furgd.end_date) is null
OR furgd.end_date > sysdate)
AND frvl.end_date is null
AND frvl.responsibility_name = 'System Administrator'; 

See also old son queries - http://forums.oracle.com/forums/search.jspa?threadID=&q=Query+AND+Users+AND+Responsibilities&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001

Thank you
Hussein

Tags: Oracle Applications

Similar Questions

  • Python script to search for users who belong to a group of weblogic

    Hello

    We know

    Python script to search for users who belong to a particular group in weblogic

    That's what I showed you already. You just need to add the function connect() and disconnect() around it and evaluate the slider that went back.

    If you don't want to learn how to write your own script and that you just want to use an existing one, try this one Weblogic Scripting Tool 101: WLST list users, groups, and users in groups

  • Can you create a button in Dreamweaver with a "promo code" function, so users who have the promo code can go to a discount on a product page?

    Can you create a button in Dreamweaver with a "promo code" function, so users who have the promo code can go to a discount on a product page?

    Unless you are a qualified PHP coder, you will need a full shopping cart 3rd party.

    Asecurecart is reasonably priced, and it can be integrated with your PayPal account for the processing of payments + many others like WorldPay, Authorize.net, etc...

    ASecureCart shopping cart. A shopping cart compliant secure PCI.

    Nancy O.

  • How to list all the users who have the privilege of s/n?

    How to list all the users who have the privilege of s/n?

    Peter

    Select * from dba_role_privs where GRANTED_ROLE = 'DBA ';

  • Unable to search for users while creating the new political

    I installed LiveCycle ES2 Rights Management and Extesión for Micorsoft office.

    I can create a policy with the 'x' user who have rights to the "Document Publisher".

    Once the document is secured using Micorsoft word I can open the same document in passing the credentials of the user for the user 'x '.

    However when the political establishment I'm not able to search for users to add multiple users to the list.

    The button 'Add' search user interface when creating political is always disabled. Also, I am not able to do the 'advanced search '.

    Using IE8 on Windows XP 32-bit. Server is installed on Windows Server 2008 64 bit.

    You must add 'domain' that contains the users you want to search (add to a policy) 'Users and visible groups' configuration for the strategy game that contains the policy.

    Login to the LiveCycle user interface and select Services > LiveCycle Rights Management ES2 > policies > strategy name > Visible to users and groups

    Concerning

    Steve

  • Stuck on a sql query to search for records that have the same parent child records

    Oracle 10 g 2 Enterprise Edition.

    Hello

    I'm writing a logic to find records in a parent table, who have the same values in a child table.
    This is part of a larger application, but I am stuck on that part for now, so I have mocked some of the below simplified tables to capture the heart of the
    the problem is that I'm stuck.
    Let's say I have a responsible parent, child employee table table and there are a number of many relationships between them.
    The aptly named Join_Table manages the relationship between them. If a manager can manage several employees, an employee can be managed by
    many managers.

    I have a feeling it's stupidly easy, but it seems to me having a bad episode of brain freeze today!
    -- parent table
    CREATE TABLE manager (
     id      number primary key,
     name      varchar2(100));
    
    -- child table 
    CREATE TABLE employee (
     id          number primary key,
     name      varchar2(100));
    
    -- link table
    CREATE TABLE join_table (
     manager_id          NUMBER, 
     employee_id      NUMBER,
     CONSTRAINT join_table_pk PRIMARY KEY (manager_id, employee_id),
     CONSTRAINT manager_fk FOREIGN KEY (manager_id) REFERENCES manager(id),
     CONSTRAINT employee_fk FOREIGN KEY (employee_id) REFERENCES employee(id) 
     );
    
    -- Insert some managers
    INSERT INTO manager (id, name) VALUES (1, 'John');
    INSERT INTO manager (id, name) VALUES (2, 'Bob');
    INSERT INTO manager (id, name) VALUES (3, 'Mary');
    INSERT INTO manager (id, name) VALUES (4, 'Sue');
    INSERT INTO manager (id, name) VALUES (5, 'Alan');
    INSERT INTO manager (id, name) VALUES (6, 'Mike');
    
    -- Insert some employees 
    INSERT INTO employee (id, name) VALUES (101, 'Paul');
    INSERT INTO employee (id, name) VALUES (102, 'Simon');
    INSERT INTO employee (id, name) VALUES (103, 'Ken');
    INSERT INTO employee (id, name) VALUES (104, 'Kevin');
    INSERT INTO employee (id, name) VALUES (105, 'Jack');
    INSERT INTO employee (id, name) VALUES (106, 'Jennifer');
    INSERT INTO employee (id, name) VALUES (107, 'Tim');
    
    -- Insert the links
    -- John manages Paul, Simon, Ken
    INSERT INTO join_table (manager_id, employee_id) VALUES (1, 101);
    INSERT INTO join_table (manager_id, employee_id) VALUES (1, 102);
    INSERT INTO join_table (manager_id, employee_id) VALUES (1, 103);
    -- Bob manages Paul, Simon, Kevin, Jack
    INSERT INTO join_table (manager_id, employee_id) VALUES (2, 101);
    INSERT INTO join_table (manager_id, employee_id) VALUES (2, 102);
    INSERT INTO join_table (manager_id, employee_id) VALUES (2, 104);
    INSERT INTO join_table (manager_id, employee_id) VALUES (2, 105);
    -- Mary manages Jennifer, Tim
    INSERT INTO join_table (manager_id, employee_id) VALUES (3, 106);
    INSERT INTO join_table (manager_id, employee_id) VALUES (3, 107);
    -- Sue manages Jennifer, Tim
    INSERT INTO join_table (manager_id, employee_id) VALUES (4, 106);
    INSERT INTO join_table (manager_id, employee_id) VALUES (4, 107);
    -- Alan manages Paul, Simon, Ken, Jennifer, Tim
    INSERT INTO join_table (manager_id, employee_id) VALUES (5, 101);
    INSERT INTO join_table (manager_id, employee_id) VALUES (5, 102);
    INSERT INTO join_table (manager_id, employee_id) VALUES (5, 103);
    INSERT INTO join_table (manager_id, employee_id) VALUES (5, 106);
    INSERT INTO join_table (manager_id, employee_id) VALUES (5, 107);
    -- Mike manages Paul, Simon, Ken
    INSERT INTO join_table (manager_id, employee_id) VALUES (6, 101);
    INSERT INTO join_table (manager_id, employee_id) VALUES (6, 102);
    INSERT INTO join_table (manager_id, employee_id) VALUES (6, 103);
    
    -- For sanity
    CREATE UNIQUE INDEX employee_name_uidx ON employee(name);
    If I ask for Manager John, so I want to find other managers who manage the exact list and even employees.
    Answer should be Mike.
    If I ask for Manager of Mary, the answer should be Sue.

    This query will give me the list of managers who manage some of the same employees as John, but not the same employees accurate...
    SELECT DISTINCT m.name AS manager
    FROM manager m, join_table jt, employee e
    WHERE m.id = jt.manager_id
    AND jt.employee_id = e.id
    AND e.id IN (
         SELECT e.id
         FROM manager m, join_table jt, employee e
         WHERE m.id = jt.manager_id
         AND jt.employee_id = e.id
         AND m.name = 'John')
    ORDER BY 1;
    I thought about using set operations to find managers with a list of employees less than my employees is null and where my employees under their list of employees is null. But there must be an easier way more elegant.
    Any ideas?
    BTW, I need to run as a batch on tables with > 20 million rows so the efficiency of queries is key.

    What about...

    WITH manager_list AS
    (
     SELECT name,
            LTRIM(MAX(SYS_CONNECT_BY_PATH(id,','))
            KEEP (DENSE_RANK LAST ORDER BY curr),',') AS employees
     FROM   (SELECT m.name,
                    e.id,
                    ROW_NUMBER() OVER (PARTITION BY m.name ORDER BY e.id) AS curr,
                    ROW_NUMBER() OVER (PARTITION BY m.name ORDER BY e.id) -1 AS prev
             FROM   manager m,
                    join_table jt,
                    employee e
      WHERE m.id           = jt.manager_id
      AND   jt.employee_id = e.id
      AND   m.name = :P_MANAGER)
      GROUP BY name
      CONNECT BY prev = PRIOR curr AND name = PRIOR name
      START WITH curr = 1
    ), all_list AS
    (
     SELECT name,
            LTRIM(MAX(SYS_CONNECT_BY_PATH(id,','))
            KEEP (DENSE_RANK LAST ORDER BY curr),',') AS employees
     FROM   (SELECT m.name,
                    e.id,
                    ROW_NUMBER() OVER (PARTITION BY m.name ORDER BY e.id) AS curr,
                    ROW_NUMBER() OVER (PARTITION BY m.name ORDER BY e.id) -1 AS prev
             FROM   manager m,
                    join_table jt,
                    employee e
      WHERE m.id           = jt.manager_id
      AND   jt.employee_id = e.id)
      GROUP BY name
      CONNECT BY prev = PRIOR curr AND name = PRIOR name
      START WITH curr = 1
    )
    SELECT a.*
    FROM   manager_list m,
           all_list a
    WHERE  m.employees = a.employees
    

    Would be easier in 11g, but I do not have a facility here so this is based on 10g.

    See you soon

    Ben

  • Search for user who has changed over Ride dependencies

    Is there a way to know who he was to replace dependencies for a specific job?

    Hi Paul,.

    The information you are looking for are in the msglog table, so try this query below:

    SELECT jobmst.jobmst_prntname, jobmst.jobmst_name, msglog.* FROM msglog

    JOIN jobmst ON jobmst.jobmst_id = msglog.jobmst_id

    WHERE

    msglog.msglog_text LIKE '% has sent the request to substitute %.

    and msglog.msglog_crtdt > = getdate() - 7 - it remembers the last seven days

    order of msglog.msglog_crtdt

    ARO

    The Derrick

  • Query to search for users based on the State of the resource

    Hi all

    I'm working on version 9 x IOM. I need to find all the users of a resource that is in "Ready" status in the profile of their resources

    Let say resource Genetiquea is here and for some users of the status of this resource in their resources profile is in "ready". I want to get these users.

    Melyssa, help me with this SQL query.

    Thank you
    Madhu

    Try this query:
    Select usr.usr_login, obj.obj_name, ost.ost_status, usr, obj, obi, Ouedraogo, ost where usr.usr_key = oiu.usr_key and obi.obi_key = oiu.obi_key and obi.obj_key = obj.obj_key and ost.ost_key = oiu.ost_key and obj.obj_name =''

    You can add: and ost.ost_status = to find the status as well.

    Kind regards
    GP

  • SQL query to get the employee details for those who have the same salary

    Hi Experts,
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    
    SQL> WITH EMP AS
      2  (
      3  SELECT 1000 EMPNO,100 SAL FROM DUAL UNION ALL
      4  SELECT 1001,90 FROM DUAL UNION ALL
      5  SELECT 1002,80 FROM DUAL UNION ALL
      6  SELECT 1003,90 FROM DUAL UNION ALL
      7  SELECT 1004,100 FROM DUAL UNION ALL
      8  SELECT 1005,20 FROM DUAL UNION ALL
      9  SELECT 1006,10 FROM DUAL
     10  )SELECT * FROM EMP;
    
         EMPNO        SAL
    ---------- ----------
          1000        100
          1001         90
          1002         80
          1003         90
          1004        100
          1005         20
          1006         10
    
    7 rows selected.
    SQL>
    Desired output:
         EMPNO        SAL
    ---------- ----------
          1000        100
          1004        100
          1001         90
          1003         90
    Please suggest how to work on the request?

    Thank you

    Oh, try

    WITH EMP AS
        (
        SELECT 1000 EMPNO,100 SAL FROM DUAL UNION ALL
        SELECT 1001,90 FROM DUAL UNION ALL
        SELECT 1002,80 FROM DUAL UNION ALL
        SELECT 1003,90 FROM DUAL UNION ALL
        SELECT 1004,100 FROM DUAL UNION ALL
        SELECT 1005,20 FROM DUAL UNION ALL
        SELECT 1006,10 FROM DUAL
       )
    SELECT * FROM EMP WHERE SAL IN (
    SELECT SAL FROM (
    SELECT count(sal) OVER (PARTITION BY SAL ORDER BY EMPNO) SAL_CNT, SAL FROM EMP
    )
    WHERE  SAL_CNT >1)
    ORDER BY SAL DESC;
    
    EMPNO     SAL
    1004     100
    1000     100
    1003     90
    1001     90
    4 rows returned in 0.01 seconds
    

    * 009 *.

  • Tips for Windows users who have chosen Macintosh

    Hello!

    If you read this discussion, so I'm assuming that you are now the proud owner of an iMac. Congratulations for your choice and welcome in the Macintosh community! The purpose of this discussion is to create a reference guide for users who have recently acquired a Mac and learn how to do many basic tasks as we used to do in Windows, but on a Macintosh instead. I will do my best to add content to this guide based on the feedback of the community, but for now, here is a list of topics that I find very useful for the first time that Mac users.

    Q: "that Mac has a right-click?

    A: right-click functionality is present on your Mac. If you use a third party with two buttons separate, then mouse right click is available in the same way that you're used to. If you opted to use the mouse Magic Mouse, you can activate "secondary click" by opening system preferences (the silver gear on your dock icon), by selecting 'Mouse' and check 'secondary click. " Now, the right side of your mouse Magic Mouse will provide right click functionality. Alternatively, you can press the control key on your keyboard while you press the button on your Magic Mouse to have access to the same functions. If you use the Magic Trackpad, you can enable secondary click in the same way you would with the Magic Mouse, but you will be rather type the Magic Trackpad with two fingers in order to access, click on functions.

    Q: "is there a keyboard shortcut that works like Alt + F4 to close the Mac?"

    A: there are indeed shortcut that allows you to stop your Mac from your keyboard. Press command + Eject and you will see a menu that says "restart, sleep, cancel, Shut Down. By default, 'Shut Down' is already highlighted, which means that all you have to do is press the Enter key. Just like that, you closed your Macintosh.

    Q: "what is the keyboard shortcut to close an application?

    A: for closing of an application you are using, press command + Q. Note that by tapping on the red circle (or red x, depending on which version of Mac OS X you are running) in the upper left corner of your application window does not close the application. By pressing the red circle only will leave the current application window, but keep the app running in the background.

    Q: "is there is start menu? How can I find my installed applications? »

    R: OS X, the advanced operating system that powers your Macintosh, manages the launch of applications and the user interface of Windows separately. First of all, installed applications can be read of Launchpad. To access Launchpad, you can click on the rocket icon silver on your dock (the dock is the place where a row of icons for application on the bottom of your screen). Alternatively, you can press the Launchpad shortcut key on the keyboard that came with your iMac. The shortcut key for Launchpad is F4. Second, you can use the Finder to display each application, the document or the file that is currently on your computer. Finder is the blue smiling icon on your dock, also known as the "Happy Mac" icon Open Finder, and listed on the sidebar will be the Applications folder, which will be an alphabetical list of all your applications.

    Q: "How do we install an application?

    R: If you use the Mac App Store to buy your software, everything you have to do is click on 'Install' once you have bought the application. If you use an application that sits on a DVD - ROM, or that you have downloaded from the Internet, then there are two methods that you will encounter. The first method is via an installation wizard, similar to Windows. Just follow the instructions given by the installation wizard, and the installer will do the rest. The second and the most common method is to mount the .dmg file (.dmg is an extension of a disk image file) by double-clicking it, and then dragging the icon of the application in your Applications folder. You can access your Applications folder in the Finder.

    Q: "how to ". uninstall applications? »


    A: the process of uninstalling applications on a Macintosh computer is fairly simple and often does not require the user to face a "Uninstall Wizard. Open the Finder, blue, smiling face icon located on your dock. Select 'Applications' in the sidebar. Locate the icon of the application that you want to install, and then you click-and - drag the icon to the trash icon on your dock. Once the application of the Recycle Bin icon, you can open the trash and choose "Empty" in the upper right. Just like that, your application is removed from your Macintosh.

    Q: "How do I find my Mac for files and applications.

    R: OS X and its antecedent, Mac OS, introduced the innovation, fully integrated desktop search, first with Sherlock and now with the projector. To access Spotlight, you can click on the magnifying glass icon in the upper right of the bar at the top of your screen. Once you click this icon, you will need to type in a search field. Start typing the name of the folder, file, document or application you are looking for, and Spotlight will provide a list by category that matches the query expression, you typed.

    Q: "How do I defragment my hard drive?


    A: Unlike Windows, OS X uses the HFS + file system. By default, HFS + automatically defragments the files on your hard drive. In other words, you have nothing to do at all, that OS X is "smart" enough to handle this task on its own. Please note that there are some third-party defragmentation tools that are available online. Avoid these tools, not only because they are unnecessary, but also because they run the risk of harming your Macintosh, rather than help them.

    Q: "How do I clean the registry?

    R: OS X does not make use of a registry to store application settings. Applications running in OS X are, for the most part, autonomous. So there is no registry for your management.

    Q: "what is the equivalent of Mac Control Panel?

    R: on the Macintosh, the 'System Preferences' is the tool that allows users to manage things like wallpaper, devices, user accounts, network settings and much more. "System preferences" can be found by clicking the gear icon money on your dock, or using the dashboard to choose "System Preferences" icon or by opening Finder, select 'Applications' in the sidebar and clicking on the icon "System Preferences."

    Q: "what is the equivalent of Mac of MS Paint?"

    A: Macintosh is a great computer to create media rich content and Apple offers several solutions for the production of such content. However, Apple does not provide equivalent software workaround for MS Paint. There are however a number of fantastic offers from third parties that provide a comparable and in many ways, superior functionality. I recommend an app called GIMP, acronym for "GNU Image Manipulation Program". GIMP has no monetary cost and may be acquired from the GIMP project site. Alternatively, you can use the Mac App Store and download a tool such as supreme paint, which is a tool of low-cost ($4.99 at the time of this writing) which also offers features similar to MS Paint and GIMP. Here are links to each

    GIMP: https://www.gimp.org/downloads/

    Supreme paint: https://itunes.apple.com/us/app/supremepaint-fully-functional/id993977111?mt=12

    Q: "what is the equivalent of Mac of Windows Movie Maker"

    A: every new Mac comes with the suite iLife software, including Garageband and iMovie. iMovie is a robust application that offers edition advanced functions and effects not found in Windows Movie Maker. If you are interested in a more powerful tool, Apple also offers Final Cut Pro, which offers a studio quality editing solution, with an interface that is familiar to users of iMovie.

    Q: "what is equivalent to Mac from Windows Media Player?"

    A: every Mac is QuickTime Player, a media player that supports a number of media formats, including AIFF, MP3, MP4, WAV, JPEG, MPEG files and many others still. If you play a DVD, you will need to use the DVD player, which is a separate application that is preinstalled on your Mac. Alternatively, you can use iTunes to watch and listen to all the same formats of files supported by QuickTime Player. You can also buy movies on the iTunes store and watch them in the iTunes application.

    I highly recommend that you are reading switch Basics: on Windows, I used to... - Apple Support and also https://www.apple.com/support/macbasics/pctomac/

    The use of a Mac is extremely simple, millions of PC users are passed successfully (including myself 10 + years), it takes very little time to become proficient.

    Moreover, drefragging a HD is not necessary on a PC and not a Mac. It is the thought of the early 1990s and was not necessary for many years. If you start playback as the two links provided, you will find all your answers, more I HIGHLY recommend that you look at the site of Apple OS X, located at http://www.apple.com/osx/

    Good luck and welcome to the light side.

  • To find the list of users who have access to the specific cube in essbase

    Hi team,

    I have EMP 11.1.2.2. Can you please let me know how to find the list of users who have access to the individual of the cube in shared services or by using script maxl essbase. I don't get the answer you need using the commissioning report.

    Thanks for your time and your help.

    Try the display Privilege, you must then filter for that particular cube. Why is commissioning report does not?

    Concerning

    Celvin

  • I have a problem with error 53.I know this mistake is for people who have their iPhones fixed by a third party before, the thing is my iphone 6 was never taken to a third party before, so all opinions

    I have a problem with error 53.i have 6 + and I m out of warranty. I know this error is for people who have their iPhones fixed by a third party before, the thing is my iPhone 6 + was never taken to a third person before, error 53, it isn't my fault .i was going to do a upgrade to the new version

    All view of what can be done

    If your device is outside its warranty, you can always make an appointment at the Apple Genius Bar to have the studied unit. 53 error will also occur if there is other material errors that are not defined on the device. One of them has to do with contact IDS. Your Touch ID was never working, or did it stop working? Have you had damage to the device by dropping, water damage or damage to the 'home' button?

    Apple can examine the device and determine your options. You will also be flooded with other options for independent repair facilities, however before turn you to this, understand that their work on your device will void any support post-warranty Apple, and there is no way of knowing that the qualities of these repair facilities, as they are not certified by Apple, as Apple does not certify independent repair facilities. If you decide to go this route, be sure to only find a way to check the reviews, etc..

  • How to obtain the list of users who have logged vCenter

    Y at - it a script that lists the users who have signed in a specific vcenter?  I couldn't seem to find a.

    Take a look on Get vCenter full session info

  • Is it possible for customers who have no tablets to buy and consult the pages on a Web site?

    Is it possible for customers who have no tablets to buy and consult the pages on a Web site? I understand that the folios can be shared and read online but is there a way to monetize the web version of a folio?

    It is possible if you have a business account and would involve relying on the direct right, custom libraries and the web viewer built-in. There is, however, a turnkey solution in place for this.

  • Can someone send the default drive (D: Lenovo) who have the record of the driver? Lenovo y510p

    Can someone send default player (Lenovo D who have the record of the driver?) Lenovo y510p

    I just deleted :')

    Anyone can he share for me?

    I thank...

    You can click the link for support on this page and go to the driver & downloads.

    You will find all the drivers for your laptop, just search with Y510p.

Maybe you are looking for