Can you get userid and username from OID through sqlplus?

Anyone know where the user information stored in OID, I mean which table and schema. Thanks!

Yes you could, but the query would be difficult. LDAP which has a tree-like structure is stored in relational tables. So, in order to get the data you will need to poke into tables in the ODS schema of the metadata repository.
Have a look at ods.ct_dn and ods.ds_attrstore.
But take my advice and stick to ldap commands. You can also use the dbms_ldap package from pl/sql.
cu
Andreas

Similar Messages

  • Can you get your money back from itunes

    Can you get your money back from itunes

    if you purchase a itunes gift card you will not be able get your money back. unless if it has never been used, such as enetering the bar code then you can probably take it in to the original store where you bought it from with the receipt. 

  • How can I get pictures and music from an ipod touch to an iphone

    how can I get music and pictures from an ipod touch to a iphone 4s, tried alot of things but not having any luck

    Use this to get the items in your iTunes library and then sync to the other device
    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities

  • Can you transfer photos and videos from iPhone directly to flash drive?

    Can you transfer photos and videos from iPhone directly to flash drive?

    SO you either need a computer or the internet?

  • How can I get contacts and calendar from outlook on my desktop to my new ipad 4

    How can I get contacts and calendar from outlook on my desktop to my new ipad 4

    Move the cursor over the icon and click the X that appears.

  • Can you Bluetooth music and pictures from other devices?

    Can you Bluetooth music and pictures from other devices that aren't apple?
    <Re-Titled By Host>

    No.

  • Can not get mail and  messages from old phone to my new phone

    can not get my mail and text messages transferred from my old Verizon Droid x2 to my LG Optimus  what's the process

        lock321, Let's get your information transferred! Text messages do not transfer from device to device unless you have backed the text messages up with an application on your Droid X2. Do you recall backing your text messages up using our  Verizon Cloud http://vz.to/1BkRU5Tor another 3rd party app? Emails usually transfer over once you add your email account information into the LG Optimus. http://vz.to/1BkRYCK
    TanishaS1_VZW
    Follow us on Twitter @VZWSupport

  • Can you get a customized iMac from one of the retail stores?

    I wanted to know if it was possible to get a customized iMac from one of the Apple retail stores or Apple affiliated retail stores ( www.yescomputers.com for example )?
    The reason I am asking is because the ONLY problem I have with Apple is their shipping. They seem to always use FedEx when shipping to me and FedEx, SOMEHOW, is extremely terrible at shipping products to my address. UPS is fine but FedEx just can not figure it out.
    If it is not possible I think the base model 27-inch: 2.66GHz might be okay. I would just like to know either way.

    As far as I'm aware, Apple do not sell customised/configure-to-order Macs in their Apple Retail Stores.
    If you want to configure your Mac, you have to order it online from the Store.Apple.com website.

  • How can you get  the public variables from object that extends JLabel?

    I'm using the mouseClickedListener method e.getComponent(); to get the component that is clicked on the sceen. The component i clicked is type "object" and extends a jlabel, and i really need to acces a variable from it. Heres the code i'm using-
    MouseListener listenerDown=new java.awt.event.MouseListener() {
            public void mousePressed(MouseEvent e){
                paintAll();
                mX=e.getX();
                mY=e.getY();
            public void mouseClicked(MouseEvent e) {
                Component c = e.getComponent();
                drawResizeBox(c);
                selected=c;
            public void mouseReleased(MouseEvent e) {
            public void mouseEntered(MouseEvent e) {
            public void mouseExited(MouseEvent e) {
    package javapoint;
    import java.awt.Color;
    import java.awt.Graphics2D;
    import java.awt.Image;
    import java.awt.Rectangle;
    import java.awt.RenderingHints;
    import java.awt.geom.Line2D;
    import java.awt.image.BufferedImage;
    import javax.swing.Icon;
    import javax.swing.ImageIcon;
    import javax.swing.JLabel;
    public class object extends JLabel{
        public object(Rectangle rect,int id){
            idNum=id;
            Rect=rect;
            BufferedImage image = new BufferedImage((int)rect.getWidth()+1, (int)rect.getHeight()+1, BufferedImage.TYPE_INT_ARGB);
            Graphics2D g = (Graphics2D) image.getGraphics();       
            g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
            g.drawRect((int)rect.getX(), (int)rect.getY(), (int)rect.getWidth(), (int)rect.getHeight());
            Icon icon = new ImageIcon((Image)image);
            setIcon(icon);
            setBounds((int)rect.getX()-1, (int)rect.getY()-1, (int)rect.getWidth()+1, (int)rect.getHeight()+1);
            mainFrame.slideArr[mainFrame.sIndx].add(this);
            setVisible(true);
            r=true;       
        object(Oval oval,int id){
            idNum=id;       
            setBounds(oval.getX(), oval.getY(), oval.getWidth(), oval.getHeight());
            getGraphics().drawOval(oval.getX(), oval.getY(), oval.getWidth(), oval.getHeight());
            o=true;
            setVisible(true);
        object(Line2D line,int id){
            idNum=id;       
            setBounds((int)line.getX1(), (int)line.getY1(), (int)line.getX2(), (int)line.getY2()); //Not gunna work
            getGraphics().drawLine((int)line.getX1(), (int)line.getY1(), (int)line.getX2(), (int)line.getY2());
            l=true;
            setVisible(true);
        object(Icon icon,int id){
            idNum=id;
            setIcon(icon);
            setBounds(50,50,icon.getIconWidth(),icon.getIconHeight());
            i=true;
            setVisible(true);
        void drawObject(object obj){
            if(r){
                Rectangle rect=obj.Rect;
                setBounds((int)rect.getX()-1, (int)rect.getY()-1, (int)rect.getWidth()+1, (int)rect.getHeight()+1);          
                Rect=rect;
                BufferedImage image = new BufferedImage((int)rect.getWidth()+1, (int)rect.getHeight()+1, BufferedImage.TYPE_INT_ARGB);
                Graphics2D g = (Graphics2D) image.getGraphics();           
                g.setColor(Color.red);
                g.drawRect(0, 0, (int)rect.getWidth(), (int)rect.getHeight());           
                Icon icon = new ImageIcon((Image)image);
                setIcon(icon);
            }else if(l){
            }else if(o){
            }else if(i){
        public boolean r=false;
        public Rectangle Rect;
        public boolean o=false;
        public Oval Oval;
        public boolean l=false;
        public Line2D Line;
        public boolean i=false;
        public Icon Icon;
        public JLabel label;
        public int idNum;
    }Edited by: ghostbust555 on Feb 12, 2010 2:14 PM

    ghostbust555 wrote:
    Well see the problem is i have an array of 200 objects.What does that have to do with anything? And if it does, why isn't it in the code you posted?
    I dont understand what you mean in your "Edit..." part. could you show some code/ explain farther? sorry if its a dumb question I'm still a bit of a novice at java.Yeah.
    object yuck = (object) e.getComponent(); // That's a cast.
    boolean yucksR = yuck.r; // Get the "r" variable from the object.

  • Can you transfer apps and music from different acounts if they're under the same bank account?

    In my family we have 3 apple products all on different acounts but all on one bank account, my brother has recently got an ipad mini, and we want to put music and apps from everyones account onto it for him, how do we do that?

    See if this helps: https://discussions.apple.com/docs/DOC-3141

  • If messages are deleted from an itouch that is synced the same Apple ID and phone number, how can you get them to delete from the phone as well?

    how do I delete messages from both my itouch and my iphone

    You have to delete the messages from the individual device. If you delete messages on one device, messages on the other are not automatically deleted.

  • How can you get your music synced from iTunes to your iPod when a window pop ups on the screen saying"The iPod "Edward's iPod" cannot be synced. An unknown error occured (13019))?

    I had 429 songs already on my iPod Touch. When I was in the process of syncing a song from my iTunes Library on to my iPod, a window popped up on the screen saying, ""The iPod "Edward's iPod" cannot be synced. An unknown error occured (13019)). I click "Device" on my iTunes Library to make sure the song was in my iPod. It showed the song that was recently synced now listed under "Device", but when I physically looked for the song on my iPod Touch, it does not appear on there at all. It all started when I decided to put a Playlist I created in the iTunes Library and transferred it on to my iPod. Do you know why it may affected my syncing process and is there any way where I could get the syncing function back to normal so that I can continue adding songs on my iPod? Thank you for listening.    P.S. My iPod iOS version is 4.3.5.
    Message was edited by: edwardwashere

    Try here:
    iTunes: Error 13019 during sync

  • Can you get your money back from canceling a pre-order?

    I recently pre-ordered an album that I no longer want.  I canceled the pre-order but my current balance on my account hasn't changed.  I spent $17 on the album, and want to know if there is any way that I can get that back.
    Thanks,
    Logan

    if you purchase a itunes gift card you will not be able get your money back. unless if it has never been used, such as enetering the bar code then you can probably take it in to the original store where you bought it from with the receipt. 

  • How can I import passwords and usernames from Google Chrome into FireFox using Mac OSX?

    All of my passwords are in the Google Chrome browser, but I want to use Firefox as adblock plus is better for firefox. How can I import my firefox passwords & usernames in OSX easily?

    You can't currently.<br />
    Importing passwords from Google Chrome is not implemented.
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=589589 Bug 589589] – Chrome profile migration for Import Wizard and Migration Assistant - passwords, form data, and settings
    ''(please do not comment in bug reports)''

  • Can you play apps and videos from iCloud

    If I use iCloud can I stream Videos or play apps from iCloud?
    Have to just say it really ***** not to be able to expand storage on the next Gen iPad!  I have no room for "7", not that important at the moment, but will be when things require me to have it, and I need to make room for 4GB. That is a lot of Removal and it is all stuff our child uses, which is our big problem!
    HELP!
    I even purchased a Seagate Wifi to my great disappointment............
    Any insight would be greatly appreciated!

    Sorry, no you cannot stream from iCloud.
    Also note that your apps are NOT in your iCloud space.  yes, they are "in the cloud" in the sense they are online on Apple's servers, but those are the servers for the Apple iTunes and App stores, not your personal iCloud account.  So your apps are the same copy of those apps that are stored for anyone and everyone, both current and future purchasers since it is just the copy that Apple has in its storefront.  Your iTunes or App store account record with Apple simply has a flag in it that says you've already paid for it so can re-download it.

Maybe you are looking for

  • Dear All,what are the major issues in implementation in sap hcm

    what are the major issues in implementation in SAP HCM project scope is PA ,OM,TIME, INDIA PAYROLL

  • My files just disappeared. How do I recover them?

    Hello, I turned on my computer today and Creative Cloud was saying "Syncing 1284 files" or something to that effect. I let it sync. Turns out "syncing" meant "nuking my files." I only found out when I wanted to continue working on a work project. The

  • Logical system names after system copy for SAP ECC 6.0

    Hi! We successfully installed SAP ECC 6.0 system as system copy. All the logical system names of old system have been copied to new system. Question What is the approach to change the logical system names for new SAP system? a) just via tcode SCC4 b)

  • How to create xmla catalog

    Hi, I can get catalogs from sap server by xmla. xml such as below: <row>   <CATALOG_NAME>ZD_SALES</CATALOG_NAME> </row> <row>   <CATALOG_NAME>Z_ST_ODS</CATALOG_NAME> </row> <row>   <CATALOG_NAME>$INFOCUBE</CATALOG_NAME> </row> how to create $INFOCUBE

  • Problem with speed using ODP and DataReader

    We are developing an application that uses an Oracle database and are having problems trying to optiomise some of the query handling. The application is written in C#, using Visual Studio, .NET 1.1, ODP 11g, and connects to a 10gR2 database with Loca