Info about user and tablespace

i have created a tablespaces with names TS1 and TS2
then created a user ts1 with the default tablespace as TS1
is there anyway by which the user can create tables in tablespace TS2.?
ts1 user is created in tablespace TS1.....
will he be able to create tables in TS2 even if he has admin privileges.?
thnq

alter user <user_name> quota unlimited on <tablespace_name>;
alter user <user_name> quota 1M on <tablespace_name>;
Once you define a quota either unlimited or not, the user will be able to create objects as long as it has enough privileges, you are supposed to grant at least the create table privilege to the user, otherwise, even if it has enough quota, it won't be able to create segments.
~ Madrid

Similar Messages

  • Finding out the source user and tablespace in a database export

    Hi folks,
    Lets say a customer gave us a export of their DB using expdp or exp, whats the best way to find out what users and tablespaces are in that export? With exp Ive used imp and created a index file but it seems a datapump export doesnt give up this information so easily. Short of going back to a customer and asking, whats the best technique?
    -Mark

    No this doesnt really give enough info. It give a hint toward the tablespace but not the user:
    $ grep "ORCH" test.sql
    sys.dbms_logrep_imp.instantiate_schema(schema_name=>SYS_CONTEXT('USERENV','CURRENT_SCHEMA'), export_db_name=>'ORCHTST.VODACOM.CORP', inst_scn=>'53131043');
    In the above example I know the user and tablespace will contain the charaters "ORCH" in part and this only shows the one entry.

  • In weblogic server when I Setting Up a User and Tablespace for the Server M

    In weblogic server when I Setting Up a User and Tablespace for the Server Migration Leasing Table in Sql Plus I got an error. ORA-00972: identifier is too long

    Refer: How to: Grant User Access to a Report Server (Report Manager), but this gives a step-by-step procedure for
    adding users who are a part of the Domain. In your case you are trying to add users who are not a part of the domain, meaning, you are trying to create users only specific to Reporting Services, am I right?
    But Reporting Services either relies on AD to authenticate the users, or you can create a custom-authentication extension to authenticate the users.
    In your case, you might need use a custom security extension, and use that to create/delete/modify users. Check the Forms authentication Sample here:
    http://msftrsprodsamples.codeplex.com/wikipage?title=SS2008%21Security%20Extension%20Sample&referringTitle=Home
    Other references:
    Implementing a Security Extension
    How to: Configure Custom or Forms Authentication in Reporting Services
    Hope this helps
    Chaitanya( Twitter |
    Blogs )
    Any documentation bug? Tell us about it at
    Connect. Please feel free to add any community comments in any of the MSDN/technet articles.
    This posting is provided "AS IS" with no warranties, and confers no rights.
    The next CTP for SQL Server Code Name "Denali" is coming soon.
    Sign up now to be notified of the next CTP release.

  • Is there another way of getting apps from the appstore without putting your credit card number in, ive heard about the itunes gift card thing can anybody just give me more info about that and how i can buy free things free things from the appstorepls help

    Is there another way of getting apps from the appstore without putting your credit card number in, ive heard about the itunes gift card thing can anybody just give me more info about that and how i can buy free things free things from the appstore...pls help as im only a teenager and have no credit credit and my parents dont trust me with theres and they dont care about the fact that you can set up a password/.... PLEASE SOMEONE HELP I WILL BE SO GRATEFUL... And i would really like to get the iphone 4 but if there is no way of etting apps without your credit number then i would have to get a samsung galaxy s3 maybe ...

    You can set up an Apple ID without a credit card.
    Create iTunes Store account without credit card - Support - Apple - http://support.apple.com/kb/ht2534

  • Where to find info about JNDI and Glassfish 3.1.2?

    Hello,
    i am searching already long time to find information on how to find e.g. an EntityManagerFactory using JNDI and an Glassfish server.
    Can anybody point me to some useable documentation? The GF admin and developer and deployment guide as well as the reference
    does not provide a lot of information. They write about general JNDI topics, how to configure data sources, that JNDI can be used to
    lookup resources and the like, on other places people write about, hey, lookup the EntityManagerFactory for your persistence unit
    (persistence.xml), but i am not able to find what JNDI names i can lookup and where and how i can find out what JNDI names are
    available in my server at all.
    Thanks for any hint,
    Chris

    Hello
    Maybe it sounds stupid now but what kind of info do you need exactly?
    When you need BIOS update you can visit BIOS download page - http://www.toshiba.eu/innovation/download_bios.jsp
    For drivers Toshiba drivers download page - http://www.toshiba.eu/innovation/download_drivers_bios.jsp
    When you need Users manuals document you can download it from - http://www.toshiba.eu/innovation/download_manuals.jsp
    General info about this machine you can find on http://aps2.toshiba-tro.de/unitdetails/
    Thats all you can find.
    I have old P200 and it is the same machine as your A200 just bigger with 17 display. In BIOS under advanced BIOS options there is SATA controller mode option and two options: AHCI and Compatibility mode.
    It should be used with AHCI mode and then you will have full HDD performance. Many people use compatibility mode to install old WXP without loading SATA driver.
    Can you please tell us what kind of info do you need and what do you want to do with this machine.
    I really hope we can help you somehow.

  • Users and Tablespaces

    Specs:
    OS: Win 2003 Sp1
    Oracle 9i - rel2 (9.2.0.5.0)
    I had something like 200 users and dedicated tablespaces associated to them. Eventually, I ran into a usual very natural and obvious problem of -running low on disk space. So I took a task to free some space off by deleting some tablespaces - not realising that there will be users who will have these tablespaces assigned to them as their default tablespace.
    Now, having deleted these tablespaces - I need to clear these users off - so whats the best way to do it?
    What will happen to these users?

    Eric,
    The objects owned by those users were dropped with the tablespaces.Not all objects, but all segments. If users are owners of procedures/functions..., these ones still exists.
    Paul,
    cascade is probably redundant,That depend, for the same reason (if functions/proc exists) :
    SQL> create user testuser identified by testuser;
    User created.
    SQL> grant create session, create procedure to testuser;
    Grant succeeded.
    SQL> conn testuser/testuser;
    Connected.
    SQL> create or replace procedure test_proc is begin null; end;
    SQL> /
    Procedure created.
    SQL> conn / as sysdba
    Connected.
    SQL> select default_tablespace from dba_users where username='TESTUSER';
    DEFAULT_TABLESPACE
    USERS
    SQL> select segment_name from dba_segments where tablespace_name='USERS' and owner='TESTUSER';
    no rows selected
    SQL> drop user testuser;
    drop user testuser
    ERROR at line 1:
    ORA-01922: CASCADE must be specified to drop 'TESTUSER'
    SQL> drop user testuser cascade;
    User dropped.
    SQL> @OP,
    You probably need to take care with a script which drop users, in case of some users are users without being schema (not owner of any objects), and for users which aren't the owner of any segments, and which you want to keep.
    Nicolas.
    Message was edited by:
    N. Gasparotto

  • Comprehensive Information about User and Objects

    Hello,
    This is on 9i
    Which tables /views I can use to derive following information?
    1.Owner Name/User Name
    2.Objects owned by the user
    3.Privileges assigned
    4.Roles assgined
    5.Whether user has admin privileges
    6.whether user is grantor to other user
    7.whether user is grantee by other user
    8.tables privileged
    9.columns privileged
    10.whether user has ISDBA/ISOPER roles
    11.recent login attempts
    12.last password reset date
    Thanks,
    R

    This is kind of an odd forum post, especially given that you listed twelve general questions. It almost seems like a homework assignment :)
    With that in mind I'll give you the general instructions that you should follow before posting any other questions on the forum.
    Go to http://tahiti.oracle.com
    Then click on your version. This will bring you to all the documentation for the version you have chosen. In this case the following books may be a good place to start:
    Database References (this lists all the views in the database)
    Administrator's Guide (will have information about permissions and other administrative tasks)
    Security Guide
    HTH!

  • User and Tablespace info

    Hi,
    I have to create some scripts to create a new and empty DB ready for a new install of our apps on a new server.
    I am easily getting the tables, views etc info from SQL Developers Export facility (without the data of course), but I have a problem where I need to define the userid and the TableSpace.
    I realise these are quite straight forward, but what I would like to know is how the original ones are defined on our current DB, as the original scripts (and info) are no longer available, and I need to make sure I create them correctly with the new scripts.
    So how do I display all the required info for a userid and for a TableSpace so that I can use this info in the create commands in the scripts ?
    It may be helpful for you to know this is my first attempt at scripting and only my 2nd attempt at and interfacing with Oracle, so I have limited knowledge in this field, hence the simple request. :)
    Any help or advice would be most appreciated.
    Cheers, George.

    942589 wrote:
    Hi,
    I have to create some scripts to create a new and empty DB ready for a new install of our apps on a new server.
    I am easily getting the tables, views etc info from SQL Developers Export facility (without the data of course), but I have a problem where I need to define the userid and the TableSpace.
    I realise these are quite straight forward, but what I would like to know is how the original ones are defined on our current DB, as the original scripts (and info) are no longer available, and I need to make sure I create them correctly with the new scripts.
    So how do I display all the required info for a userid and for a TableSpace so that I can use this info in the create commands in the scripts ?
    It may be helpful for you to know this is my first attempt at scripting and only my 2nd attempt at and interfacing with Oracle, so I have limited knowledge in this field, hence the simple request. :)
    Any help or advice would be most appreciated.
    Cheers, George.DBMS_METADATA.GET_DDL
    or just export (expdp) & import (impdp)
    Read The Fine Manuals found at http://docs.oracle.com

  • Total number of Users and Tablespaces in EBS

    Hi,
    I want to know how many total number of Oracle database users are there inn Oracle EBS R12, and how many number of tablespaces are there in EBS. what docx should I consult for this sort of information. Kindly send me the links of such info.
    Regards,
    Abbasi

    Hi,
    Please see these links/docs.
    Connected users
    http://forums.oracle.com/forums/search.jspa?threadID=&q=Connected+users&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Note: 131704.1 - Database Scripts Library Index
    Thanks,
    Hussein

  • New RMAN catalog in existing EMREP database - new user and tablespace?

    Hi all,
    I am FINALLY getting "with the times" and trying to get my databases to back up with RMAN. I already have a dedicated server that is running Oracle Enterprise Manager 10g Grid Control, so it already has the OMS database on it, called EMREP. I was hoping to just use this database as my RMAN catalog, is that considered good practice or not?
    So assuming this practice is considered OK, I know that I need to create a new user (which I'll just call RMAN) in this database. Would it be best to also create a separate tablespace for this user? I have no idea how big I should expect this RMAN schema to get. I'm sure it all depends on the number of databases I'm backing up, but can anyone give me some realistic size expectations that I could start with?
    Any advice/info is greatly appreciated!

    I think that the catalog is only applicable if you will have several databases to manage.
    If you he will have only one, I dont see necessity to use the catalog, therefore with backups of controlfiles only, you can to execute the tasks of backup/restore/recovery.
    But, for catalog creation information, see
    RMAN CATALOG CREATION STEP BY STEP by Joel Pérez
    RMAN ( CATALOG CREATION ) STEP BY STEP by Joel Pérez
    Message was edited by:
    ARF

  • Question about Users and/or ICE

    I am new to BC and already frustrated.
    I have a site created in DW. I want my client to be able to edit some of the general text and edit—add and subtract—the images inside a photo gallery (from a BC module). On of my team has added ICE code to certain items that we want them to be able to change but do not know if—or how—ICE can be applied to images in the photo gallery module.
    So I can use ICE for my client but, after watching and reading several tutorials about how great ICE is, I have not found the answer to the simple question: how does my client access this process? I have also tried to create a limited User for the client but even there I have no clear answer on how to limit the client's access, or for that matter target only the text and photo gallery.
    I am hoping that some kind soul out there will take pity and explain—step-by-step—the best way to accomplish what seemed when I started this process to be a pretty straight forward request. I have gone to several tutorial sites and even found what may be the only book written on BC and after the fact discovered that these materials are already obsolete. Please, help. The account people are breathing down my neck to get this done.
    Thank you in advance for your help.
    Kevin

    useradd --help
    -g, --gid GROUP name or ID of the primary group of the new account
    -N, --no-user-group do not create a group with the same name as the user
    You may set these options.
    useradd -m -g users -G audio,lp,optical,storage,video,wheel,power -N -s /bin/bash thomas

  • Getting info about explorer and language from WD for ABAP

    Hi,
    Is there is a possibility to get some information from the explorer in use,  of the frontend in a Web Dynpro ABAP application?
    We have some errors from our customers that not appears on our wotkstations.
    We need explorer (IE, Mozila Firefox, Google Chrome and version number), and the language (language used for explorer) used on the process of our WD application that they are using in the moment of the error.
    Thanks.
    Gustavo Barboza
    Edited by: Margarita Urbina Sarmiento on Aug 17, 2010 10:50 PM

    Hi Margarita,
    it's probably because it can't be done.
    (there may be some very very low level code that is involved in the actual rendering of the Web Dynpro that does have a knowledge of the browser etc)
    However, from the WDA interfaces the most you can know is if you are in portal, stand-alone or NWBC.
    You could use Islands to read information about the current browser and pass that through to your WDA app, but in standard WDA I do not think it is possible to get this information. Web Dynpro is supposed to be browser agnostic...
    Cheers,
    Chris

  • Need info about cs and cs2.

    i have several copies of creative suite cs, photoshop cs, illustrator cs and illustrator cs2.
    but now adobe take down the server so i cant activate anymore.
    but i found the download link that adobe provide with serial.
    my question is:
    1) my version is cs, can i still use the cs2 that adobe giv?
    2) if cs cant use the cs2 that adobe provide, how do i activate the cs version?
    3) the serial csn be use on multiple pc?
    thanks

    I ran into this problem last night, my Photoshop CS (Windows version) lost its activation at some point since the time it was used last about a week ago. Coincidently, I had installed a new version of Norton Internet Security during this time, and thought it had something to do with this problem. I tried turning off Norton, but it made no difference trying to reactivate Photoshop. Apparently, sometime around 12/13/12 to 12/15/12, Adobe shut down the server that supports CS & CS2 product activations.
    Whether Norton affected the original Adobe Product activation or not is a moot point (Symantec denies their product it at fault), as it is now no longer possible to reactivate the CS version, either by internet or phone. I logged into my Adobe account, followed the link to the CS2 activation fix, I didn't find anything for supportting CS, but decided to try downloading the CS2 version of Photoshop. It installed and a ran fine with the new key Adobe provided.
    The biggest thing is that I got lucky in getting the fix, and while the Adobe phone support guy said he couldn't support my old CS product, he did give me the web link to find the work-around. While it was frustrating to lose use of my original CS product, I guess I can't complain as I got a minor version upgrade that appears to work fine at no cost.
    http://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.htm l

  • Need info about LAN and WLAN cards on Satellite L300-12P

    Hi,
    Can anyone tell me which network-adapter and which WLAN-adapter is used in the
    Satellite L300-12p notebook and in the L300-17I notebook?
    The best info would be the PCI\VEN and DEV -ID shown in Windows device-manager.
    Can anyone help me?
    Greetings
    Mike

    Hi
    The LAN adapter is a Realtek RTL8102 Family PCI-E Fast Ethernet NIC (NDIS 6.0)
    The WLan is a Realtek RTL8187B Wireless 802.11 b/g 54Mps USB 2.0 Network Adapter
    Hope this helps you because other details are not known to me.
    Greets

  • Info about OIM and WebCenter integration

    Any info or doc/url for OIM and WebCenter integration would be helpful. Any experiences etc please provide some links.

    Follow the link -
    http://docs.oracle.com/cd/E21764_01/core.1111/e12037/oam.htm#WCEDG345
    Follow the below points -
    *"Credential and Policy Store Configuration"*
    *"Oracle Access Manager 10g Integration"*
    *"Oracle Access Manager 11g Integration"*
    *"Configuring WebCenter Applications"*
    *"Configuring WebCenter and BPEL Authentication"*
    *"Backing Up the Installation"*

Maybe you are looking for