Do anything in just one scheme

Hi friends. I have a user with DBA privileges but it is so much. How do I know which schemes exists in my Oracle and then how do I give privileges for do anything but in just one specific scheme?
<br>
Thanks

you can check the schemas in your database by
querying dba_users view.dba_users reveals info about user objects, and users can exist without a schema.
select username,schemaname
from dba_users,
(select owner schemaname, count(*) object#
from dba_objects
group by owner)
where username=schemaname(+)
e.g.
USERNAME                       SCHEMANAME
APEX_PUBLIC_USER
X
ANONYMOUS
SYS                            SYS
XDB                            XDB
TEST                           TEST

Similar Messages

  • My wife and I both have the new iPhones.  Is there a way to set up two separate iCloud accounts but have photo stream from both phones sync with one family mac?  So we don't want to share contacts or anything else, just photos... Thanks in advance

    My wife and I both have the new iPhones.  Is there a way to set up two separate iCloud accounts but have photo stream from both phones sync with one family mac?  So, we don't want to share contacts or anything else, just photos... Thanks in advance

    If you turned off Contacts wouldnt that mean that the Contacts would no longer be backed up to iCloud as well? That would make it a pain when upgrading a phone to not easily pull contacts back down.

  • IPhoto library Gone! (replaced in just one click w/o ever dragging 2 Trash)

    iPhoto library gone / replaced in just one click (w/ o ever dragging anything to the trash)!
    I currently own multiple PowerMacs all sharing the same high speed local network. All of them run the latest / Mac OS X.4.9 and have multiple HD’s (both internal and external) as well as iLife’ 06. And all of them also have iChatAV3 and are able to video chat one with the other at will while on the same local high speed network.
    This is my very first iPhoto library nightmare since I’ve owned a mac. and yes I’ve always been conditioned to backup everything one wishes to keep. This particular scenario is no different. (altho my back up HD for one of the three G4 computers involved was a bit dated by at least 6 months).
    This was essentially triggered via two separate iLife ‘06 apps , namely iPhoto and iChatAV3 (combined with at least an ounce of stupidity on my part). That combined with 2 people not communicating properly / being on the same page (or rather the same Folder) when working on the very same task. Hey... I do NOT claim to be an expert at this particular application even though I have used macs since apple first introduced the Apple IIe decades ago. So this does not stem from lack of experience but rather not thinking things thru entirely in terms of all the possible consequences of simple, yet catastrophic actions when it comes to replacing or authenticating one particular folder containing the entire iPhoto Library simply titled “pictures”.
    Starts like this, ichatav is open on 2 of three macs and my teenage daughter asks me to send her a roll of pictures she downloaded into my computer (since it’s twice as fast as her own) from her digital still camera. Now she wants all 12 photos on her computer as well. So I drag all 12 photos to my desktop and place them in a folder titled “Jackies pics”. I drag this folder to her icon on my buddy list and ichat AV simply refuses to allow sending the entire folder and ask me to send them one at a time. That should have been my first clue. Strange I thought. Always worked well in the past. Why not now? So I tell her over ichatav that the app simply won’t allow me to send her the entire folder and that I’ll have to send them one at a time. Please make a new folder on your HD called Jackie’s pics. She agrees and creates a folder on her end called .... (you guessed it) ...... “pictures”...... to which she drags each of the 12 images I sent over our local network.
    Little did she realize this newly created folder has the makings of an atomic bomb when it comes to importing the entire folder into iPhoto’s library on her own mac. A dialog box quickly materializes asking that she “authenticate” or hit cancel. So she ask me what to do. I said that’s fine, hit authenticate (assuming she titled it Jackies pics). BIG mistake! She hits authenticate and now she has the 12 images I sent her in iPhoto....BUT .... the 1600 or so originals in the entire iPhoto library quickly vanishes. Her entire iphoto library is now wiped out or rather replaced with this new folder. She asks me, what happened? And in less than 30 seconds she in complete tears. Over 2-3 years of her photos (all 1600 images) gone in the click of a mouse.
    Today is father’s day .... and I remembered that I have a complete backup of her HD (even though it is a bit dated). So together, we managed to recover about 90% of the lost images. If anyone reading this knows how I can possibly recover the final 10% (most current photos) then please help us.
    Bottom line: We were fortunate. This Father’s Day iPhoto Nightmare ended happily....
    TIA
    (3) G4 PM's/(3) S-Drives/Sony TRV900/Nikons/6FWHD's/PS7/iLife06/FCPHD/DVDSP/etc. Mac OS X (10.4.8)

    Just another update .... Today, my daughter was multitasking on her G4 powermac working within iPhoto as well as email account and last but not least the latest iTunes. As she opened this final app (and I mean "final").... her entire hard drive bit the dust after she saw the spinning beachball and hence attempted to force quit. (I should also point out we are having a heat wave in San Diego today ...which also may have contributed to this hardware issue mainly).
    This time, I had a complete updated copy of her HD and simply cloned it to a new hard drive. Took me a few hours to troubleshoot, clone and install a new drive in its place. But all is working normally again (sure hope it stays that way this time).
    Friendly reminder to those who read this post .....
    BACKUP, BACKUP, BACKUP .... ESPECIALLY IN IPHOTO & ITUNES!

  • I have an iTunes account with music. My wife has an iTunes account with apps. How do I get both on our iPad2? Without syncing to just one account?

    I have an iTunes with music and videos. My wife has an iPhone with music and apps. How do I get both on our iPad2?
    Without syncing to just one account?
    We each have our own laptops.

    Hmm.
    Probably easier for me to put all my stuff on my wife's computer I suppose.
    Rebuilding all those iTunes playlists is not very fun though.
    And of course anything new that I want on my laptop I will have to duplicate on her laptop in the future.
    Not sure how iCloud works just yet.
    So you can't have two laptops and manually sync both people's stuff to one iPad?

  • How to copy one schema into another

    I need to copy one schema into another. That means, all the tables, views, constraints, etc, and all the data as well.
    I have a dmp file of source-schema (created daily with expdp by our backup schedule).
    Can I use impdp to import this dmp file into dest-schema? I'm thinking about something like this:
    The dmp file was created with:
    expdp source-schema/pwd DIRECTORY=dmpdir DUMPFILE=myproject.dmp
    Create the copy on dest-schema with:
    impdp dest-schema/pwd DIRECTORY=dmpdir DUMPFILE=myproject.dmp
    (dest-schema is an existing schema on the same machine. I'll drop all the tables before executing the command. Is there anything else I should do first?)
    If this approach is not feasible, kindly suggest me an alternative.
    Thank you.
    Edited by: mgro on Apr 16, 2010 3:22 AM (changed 2nd command: expdp to impdp)

    Thank you both. Dean, I've made a note of your proposed command. May use it next time.
    In the end I used the following command and it worked for me. I added TABLE_EXISTS_ACTION=REPLACE since the destination was not empty.
    First I ran these command logged in as SYS
    GRANT Import Full Database TO dest-schema;
    GRANT Create Any Directory TO dest-schema;
    GRANT Unlimited Tablespace TO dest-schema;
    impdp
    dest-schema/pwd
    DIRECTORY=dmpdir
    DUMPFILE=myproject.dmp
    REMAP_SCHEMA=source-schema:dest-schema
    TABLE_EXISTS_ACTION=REPLACE
    LOGFILE=implog.log
    There were some errors though. The import process complained about constraints referencing non-existent primary keys.
    It turns out that the source schema has some constraints that are marked with status DISABLED. These constraints either:
    - are not part of the DUMP file
    or
    - are in the DUMP file but skipped during import
    Don't know if this is a bug or by design behavior.

  • You can download past purchases on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 71 days. Whats the deal???

    You can download past purchases on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 71 days. Whats the deal???

    You can use multiple AppleIDs to purchase new music but you are limited as to how frequently you can change authorizations for re-downloading  past purchases.  It may well be a measure to deter piracy by stopping a group of people from going around to a friend's computer and downloading purchases on the other person's computer.  It is easy to avoid by making sure you have backup copies on drives at home so you never need to redownload anything.

  • You can download past purchases on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 60 days. This is the message I get when trying to view purchased material!  My ID hasn't changed!

    I can't pull up purchased content without this - You can download past purchases on this computer with just one Apple ID every 90 days. This computer can be used with a different Apple ID in 60 days. - my ID hasn't changed

    You can use multiple AppleIDs to purchase new music but you are limited as to how frequently you can change authorizations for re-downloading  past purchases.  It may well be a measure to deter piracy by stopping a group of people from going around to a friend's computer and downloading purchases on the other person's computer.  It is easy to avoid by making sure you have backup copies on drives at home so you never need to redownload anything.

  • Can't hear just one person through my iPhone 4

    Okay, so lets see if this works. So I've had my iphone 4 for about a year and a half, I've never really had issues beside the normal glitching and having calls drop here and there. Recently I've had an issue with my iphone connecting with just one individual. Yes, I know it sounds weird but keep reading. I have been able to make calls and recieve phone calls fine, however I cannot with just one single individual. They to also only have the same problem with me, however the only difference is they can hear me but I cant hear them or anything. We're able to text and send picture messages without any issues.
    Now sometimes when I try to call them, itll ring twice and then the line just goes dead, but thats usually them picking it up. I cannnot hear them at all. I've already done the reset on my phone and I've already contacted apple about this issue and their about as lost as I am because it doesnt make sense that this is only happening with one individual. I've also blew out the speakers and such like people have suggested. I use my head phones that came with my speaker, and ive connected and reconnected them incase my iphone thought they were plugged in.
    Let me give you a little bit more info. They have an android phone, we have the same carrier which is verizon and they live in another state (not sure if thats helpful). I'm completely lost because this has been going on for about 4 days now and its driving me crazy. This happened a few weeks ago, however it magically fixed its self ( im thinking it was because I had bad service). If anyone has any solutions that might help, please, please let me know.

    The whole issue is that I cannot hear this person, but I can hear everyone else.
    That proves that the problem is either in the other party's phone or his carrier.  If you can hear everyone else, your phone is OK.

  • Data Guard Implementation   Importing one schema  will it reflect in other?

    Hi All,
    I have succesfully implemented data guard (Primary) and Physical Standby
    for 10g R2.
    It works fine. I would like to know if on the primary if I remove one schema and import the data/objects using a dump file will it get reflected in the standby?
    ie we have to refresh our primary database with actual production data by dropping one user (prod) and its objects. And I will run the import(dump file) in order to bring the data from production
    Will this refresh the data in the standby ?
    Thank u all
    Rajesh Alex

    The answer is Yes, that's the goal of the dataguard configuration, to replicate all changes from the primary to the standby database.
    Any DML or DDL is recorded by the redolog mechanism, and the redo information is transported from the primary to the standby database where the information is applied, exactly the same way it was applied at the primary database. DDL commands (create, alter, drop) are considered transactions against data dictionary tables, so they are recorded just like any other DML transaction on the redolog mechanism and transfered just the same to the standby.
    The time it will take to get replicated at the standby database will depend on the kind of Dataguard configuration you have, if you have a high avilability or a high performance configuration.
    ~ Madrid

  • Best LKM to move data from with in Oracle from one schema to another Schema

    Hi Gurus,
    What is the best KM to move data from one schema to another schema within same oracle database.
    Thanks in advance

    Dear,
    If your source and target are on the same database server then you dont need LKM.
    You have to 1. create one data server for the database server
    2. Create one physical schema for your source and another physical schema for your target under the above created data server.
    3. Then create models for each above created physical schema
    In this case you just need IKM knowledge module
    Please refer http://oditrainings.blogspot.in/2012/08/odi-interface-source-target-on-same.html
    If your source and target are on different server then you must create two different data servers in topology. You have to use LKM.
    The best LKM to use is LKM oracle to Oracle dblink. But you should have proper grants to use it
    If your source has very few records you can go with LKM SQL to Oracle other wise use LKM oracle to Oracle dblink

  • Syscontext use in a object by one schema can't access by others

    Syscontext related one schema objects given error during access in othere schema and use to take
    sys privs like "select any dictionary "
    Grant create any context to HR;
    conn hr/hr123 ;
    then
    CREATE OR REPLACE PROCEDURE "HR"."SET_ATT_DATE" (att_date IN DATE) AS
    var_date VARCHAR2(30);
    BEGIN
    var_date:=TO_CHAR(att_date,'DD-MM-YYYY');
    DBMS_SESSION.SET_CONTEXT('ATTENDANCE_CTX','ATT_DATE',var_date);
    END;
    create context ATTENDANCE_CTX using SET_ATT_DATE ;
    Whenever THIS procedure name "HR.SET_ATT_DATE" is used by schema scott in program it is given
    error insuficient priviledge during compilation but whenever i am given "select any dictionary to
    scott " then it's getting compile
    where as i have given grant priviledge
    grant execute on HR.SET_ATT_DATE to scott.
    Plz help me in this regards

    Thanks very much Mylenium for your help - I've scoured the file looking for everything you mention, and there anything fancy at all. I'm using no time-stretching or remapping, simply putting a text layer on top of a video, and moving its in and out points. No blurs or odd keyframes as far as I can tell. Video and comp are both 29.97 framerate (comp created using "New comp from selection").
    Glen

  • Can Outlook Sync in Just One Direction from iCal?

    I love my calendaring system as it stands now: iCal in Lion, and Calendar on my iPhone and iPad - all connectd via iCloud and working seamlessly. However, my coworkers who all use Outlook for PC or Mac (connected to Exchange server) want to at least be able to see my calendar. Everytime I've tried to make Outlook play nice with Outlook on my Mac it totally screws stuff up with duplicate appointments, missing events, etc. Is there any way to sync iCal data to Outlook in just one direction? In other words, I don't want Outlook to do anything in terms of sending or modifying data to my iCal. I hope this makes at least a little sense.

    I have the EXACT same situation (except I just want to look at someone else's outlook calendar) and I am hoping someone has an answer . . . anyone?

  • If I Could Ask for Just One Thing in Siebel What Would it Be?

    Hi All,
    Think this is too interesting. A while back I was on a call with Oracle and was asked what one thing I would ask for if I could ask for anything in Siebel. At that time I drew a blank I could not think of an answer. I have two good ones now and want to see if this makes sense.
    First – make the quality of Siebel releases even better than they are today. The quality of Siebel is very good but I would like to see it made even better. I wonder if part of this solution might be to not have so many code braches so more focus could be put on just one version. E.g. Instead of 8.0.0.0, 8.0.0.1 and 8.0.0.2 all being worked why not just put all the effort into 8.0.0.3 and making it super stable? Just an idea but improved release quality is wish #1.
    Second – when the Siebel OM encounters an exception (e.g. address violation) don’t terminate the whole process and all the other threads (users) running. TOAD does this so we know it is possible. If TOAD encounters an address violation it pops up a message and allows me to report it back to their technical support but does not crash. We would need to discuss what should happen in Siebel but terminating the whole process and all the running users is painful for Siebel customers.
    Take care,
    R
    Robert Ponder
    Lead Architect and Director
    Ponder Pro Serve
    cell: 770.490.2767
    fax: 770.412.8259
    email: [email protected]
    web: www.ponderproserve.com

    I was a bit unpleasantly surprised the automatic restart of the client after a compile was broken in Siebel 8. This was announced in 7.x as a productivity improvement for the Siebel developers, so I would say this should be part of the test scenarios for Siebel. But thanks for the fixpack.
    One thing I noticed on my current project is that it would be nice to have a conditional expression on the State Model level itself. That way it is much easier to manage a State Model for a limited set. Otherwise you have to create all possible State Changes and put conditions on them.
    Seeing that Runtime Events can work with conditions on two levels, I would see no significant hurdles to implement it for State Model.
    And one little big annoyance is that you can't login with enter for the customer facing applications. Might not look like a big issue, but almost all web apps I use allow you to use enter after user and password. And don't forget you are ruining the first impression.
    To end on a more positive note, I'm quite happy with Siebel 8.0 from a developer point of view. Keep up the good work and let's see how long I can stay a Siebel consultant. ;-)

  • Require client cert for just one servlet

    Hello
    I enabled SSL with mutual authentication in tomcat 5.5.x into Jboss like this:
    <Connector port="443" address="${jboss.bind.address}"
    maxThreads="100" strategy="ms" maxHttpHeaderSize="8192"
    emptySessionPath="true"
    scheme="https" secure="true" clientAuth="true"
    truststoreFile="${jboss.server.home.dir}/conf/confiaveis.truststore"
              truststorePass="111111"
    keystoreFile="${jboss.server.home.dir}/conf/.keystore"
    keystorePass="111111"
              sslProtocol = "TLS" />
    It�s working perfectly and any servlet requires client certificate. But now, i would like that just one servlet require client cert.
    Does any body could help me ?

    Application and web servers base their authentication mode on Listeners and not Servlets. Since Listeners listen on ports, and and can direct client calls to any number of Servlets, all Servlets served by a Listener will default to the authentication mode of the Listener.
    If you want to have selective authentication based on Servlets, then you should use a non-ClientAuth port for most of your Servlets, and redirect the client request to port 443 for the one Sevlet that needs ClientAuth. As a result, you will get the same effect.

  • When I try to burn music from my Playlist to a blank CD, the notification tells me that the list has too many minutes for the CD, even if I try to burn just one song. What's going on?

    WHEN I TRY TO BURN MUSIC FROM MY PLAYLIST TO A BLANK CD, THE NOTIFICATION COMES UP AND TELLS ME I AM EXCEEDING THE NUMBER OF MINUTES THE CD WILL HOLD. THIS NOTIFICATION HAPPENS EVEN IF I TRY TO BURN JUST ONE SONG. WHAT'S GOING ON?

    Katy, you are completely doing things in the wrong order.  You can't burn songs if you can't even play them, and iTunes can't play them if it can't find them. 
    The exclamation point normally occurs if the song file, or one of its containing folders, has been moved, renamed or deleted.  So if you encounter a track with an exclamation point, don't do anything else until you find the file.  It is usually somewhere else on your hard drive, or else in the Recycle bin.  Failing both of those, get it from your most recent backup.
    After your restore it, make sure it can play.  If it can play you can put it into a playlist.  Then you can burn the playlist.

Maybe you are looking for

  • Error message says Itunes on locked disk or no write permissions

    I have used ITUNES recently but today when I started it up I get the following error message. "the folder "Itunes" is on a a locked disk or you do not have write permission for this folder" I tried to download a new version, same problem.  HELP.

  • Cost in document currency is displaying wrong values

    Hi Experts, We have observed for some of the documents in VF03, cost is coming wrong. Scenario : When we are going to VF03 screen Cost in document currency is some value, when we click on the material and go to condition tab and then come back to pre

  • Strange mark on my screen

    Just noticed a strange marking on my screen when it is turned off, I've tried to clean it off with various products, but it appears to be grease-proof. Anyone know what it might be or how I might go about getting rid of it?

  • Inventory Costing Vs Material Costing

    Can someone explain the difference between inventory costing and material costing ? Edited by: VamsiM on May 3, 2010 2:14 AM

  • F4 Help for Selecting a File in WD ABAP

    HI,   What is the method, or FM that is available for selecting a file in WD ABAP.    method FILE_OPEN_DIALOG is not working as it required GUI. Thanks Mahesh