Reg : User name and table spaces

Hi all,
I want to show all the user names in DB and total table apace , Occupied spaceand free space .
Please help on this,
Thanks in advance .

for all users you can query
select * from ALL_USERSbut why are you posting the same problem in 3 different threads.
for calculating size of the table you can use
select sum(bytes) from dba_segments
where segment_name = 'YOUR_TABLE'and for rowsize you can use something like this
select 
     max(vsize(empno)) +
     max(vsize(ename)) +
     max(vsize(job)) +
     max(vsize(mgr)) +
     max(vsize(hiredate)) +
     max(vsize(sal)) +
     max(vsize(comm)) +
     max(vsize(deptno))  Bytes
from
     scott.emp;

Similar Messages

  • Need  table which is having User name and surname

    hi,
    I am having User ID from caufvd strucure , based on this i want User name and surname. In which table i will get those two fields by passing User id. Please urgent.
    Thanks,
    MK.

    Hello,
    use table USR01 to achive it...
    All user tables start with USR++.
    Bye
    Gabriel

  • Table contain user name and tcode

    Dear Experts,
    Can you tell me which Table contained user name and tcode field?
    Thanks and Best regards,
    wilson

    You need to be even more carefull with parameter transactions.
    If SU24 is not maintained for them, PFCG will pull the proposals from the core transaction (via which the parameters are used in the skip screen feature...). If the core transaction has authority proposals for S_TCODE, then you will get those tcodes and their proposals as well.
    A carefull choice of menu objects (not only limited to Tcodes), taking heed of SU24 defaults and tuning it to meet your needs is the key. But it requires organizational discipline and good training, otherwise rather dont use it for anything other than important objects which you want to control manually only, even if your business roles are a mess.
    You can also restrict the authorizations of the security admins for example (as unpopular as that may sound... to segregate authorization concept development (SU24 etc), role building development (PFCG etc) and user administration (SU01 etc). Object S_USER_TCD also has a field called TCD...
    There are also other objects (as Dipanjan has pointed out) which have TCD as a field of an object which is not S_TCODE. In addition to I_TCODE, Q_TCODE, P_TCODE, see also S_IDOCMONI for example.
    To be honest I have given up on trying to find them all
    The easiest solution is to use the menu and maintain SU24 when the transaction is configured or the application is developed and tested. That is what SAP does as well in SU22. It is more work upfront, but more sustainable in the long run.
    If your users (and auditors) only see the menu (and use the SUIM --> Executable transactions) options, then you can get away with it in the short or even medium term. Latest when someone else need to maintain the roles they will hate it...
    My 2 cents,
    Julius

  • TS4009 before upgrading to Lion, I switched from MobileMe to iCloud.  At that time I used my MobileMe user name and password.  I purchased additional storage space to 20GB.  I was unabl to send any emails during this time.  After researching, I upgraded t

    before upgrading to Lion, I switched from MobileMe to iCloud.  At that time I used my MobileMe user name and password.  I purchased additional storage space to 20GB.  I was unable to send any emails during this time.  After researching, I upgraded to Lion and changed my icloud mail usuer name and password from the original I used from mobileme.  How do I get my upgraded storage to my new account.  I intend to delete the first one.
    Please help!

    Welcome to the Apple Community.
    Unfortunately you can't, the additional storage belongs to your first account, you can't transfer it.

  • How to find out the user name and email address from SAP user id?

    Hi experts,
    In sto3n I find out the the user id with most navigations. I like to know his name or email address to contact him. Which table stores the user details? how to do it?
    Thanks in advance.
    Sharat.

    hi,
    The below tables will give only the name .
    USER_ADDRS
    USER_ADDR
    USER_ADDRP
    USR02
    i think you need email address .
    you can use this Tcode : su01d
    and give the user name and excute it
    i hope it will help you.
    Ram
    Edited by: Ram velanati on Jun 30, 2008 6:57 PM

  • PL/SQL Function to check user name and password

    Hi,
    I am new to PL/SQL. I have a table that stores user name and password. I want to write a PL/SQL function that checks if the entered user name and password is correct, by validation against the values in the table... Can someone help me with the code? Both user name and password is varchar2

    First of all, I believe you mean a procedure that would check the application username and password. Fot, if you mean a PL/SQL procedure, that runs in the database, and that means it has to be executed after the client application is connected to the database.
    Maybe you need a procedure like this:
    procedure check_pass(p_user varchar2, p_pass varchar2) is
    pragma autonomous_transaction;
    v_passwd varchar2(200);
    begin
    select passwd into v_passwd
    from password_table
    where user_name=p_user;
    if v_passwd!=p_pass then
    update password_table set
    last_unsucc_logon=sysdate
    ,unsucc_logon_n=nvl(unsucc_logon_n,0)+1
    where user_name=p_user;
    commit;
    raise_application_error(-20101,'Invalid username/password!');
    end if;
    exception
    when no_data_found then
    raise_application_error(-20101,'Invalid username/password!');
    end;
    Study this piece of code and see if this will do.

  • AppleScript: Waiting for a user to enter user name and password

    I'm currently working on an AppleScript designed to automate binding a computer to Active Directory and another script to install a login certificate. While you can create a UNIX shell script for the Active Directory binding, I found that you have to have your user name and password in the script itself and this system will be deployed by multiple people.
    So instead I'm doing an GUI Automation AppleScript of Directory Utility. What I'd like to do is have the script to wait for the admin user (who will be remoting in by ARD) to enter their Network user and password, click okay and then continue the script to quit the program and then run a self-destruct (which I'd also appreciate any advice about doing in AppleScript)
    Here's the script so far, which I've set up successfully:
    activate application "Directory Utility"
    tell application "System Events"
      click text field 1 of row 1 of table 1 of scroll area 1 of group 1 of group 1 of window "Directory Utility" of application process "Directory Utility"
      click button 1 of group 1 of group 1 of window "Directory Utility" of application process "Directory Utility"
      click text field 2 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "EXAMPLE.COMPANY.com"
      click UI element 3 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click radio button "Administrative" of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click checkbox "Allow administration by:" of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 1 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExamplePS NA"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 2 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleNA"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 3 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleNATemps"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 4 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleTeam 1"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 5 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleTeam 2"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 6 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleTeam 3"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 7 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleDesktop Admins"
      click button 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      click row 8 of table 1 of scroll area 1 of tab group 1 of sheet 1 of window "Directory Utility" of application process "Directory Utility"
      keystroke "GroupExampleDomain Admins"
      click button "Bind…" of sheet 1 of window "Directory Utility" of application process "Directory Utility
    <<WAIT LINE HERE FOR NETWORK ADMIN AND AND PASS, THEN USER WILL CLICK OKAY, THEN CONTINUE SCRIPT>>
    <<QUIT ACTIVE DIRECTORY>>
    <<SELF-DESTRUCT>>
    end tell
    It isn't a real command prompt like if you're changing System Preferences or something. It's a specialized prompt specifically for Directory Utility. However, I do need to know how to make AppleScript wait for a password for a standard Password Prompt for adding a certificate to the login keychain through Keychain Access. I've also done pretty much the same thing as above for that script.
    Any tips would be GREATLY appreciated.

    Yeah, I know GUI Scripting is not the best way, but I couldn't find a successful variable system for the following script. The other issue is that I'd prefer to send this by ARD and have ARD ask for a User Name and Password, but I've found there's no way to do that. Then again, I can't send the AppleScript purely remotely either.
    What I mean by self-destruct is simply I only want the Active Directory binding script to run once upon login to the primary admin user and then delete itself so it doesn't get run again. The login certificate script I want to run once on each new user who logs in (so I'll likely be putting it in the "User Template") and then delete itself so it doesn't run the next time they log in. I can't figure out any way to hit those buttons through a shell script.
    Here's the original UNIX shell script: (This is what I'm using temporarily until I figure out a solution that doesn't require my user name and password to be embedded)
    #! /bin/bash
    MACNAME=$(scutil --get ComputerName)
    dsconfigad -add "CORP.DOMAIN.NET" \
    -username USER \
    -password PASS \
    -computer $MACNAME \
    -mobile disable \
    -mobileconfirm disable \
    -localhome enable \
    -useuncpath enable \
    -shell /bin/bash \
    -ou OU=Macs,CN=Computers,DC=corp,DC=DOMAIN,DC=net \
    -force \
    -localpassword "PASSWORD" \
    -groups "GROUPS"
    And here is the Certificate Installation AppleScript
    activate application "Keychain Access"
    tell application "Finder" to open POSIX file "/FolderName/Certificate.crt"
    delay (3)
    tell application "System Events" to tell process "Keychain Access"
      click button "Add" of window "Add Certificates"
      click button "Always Trust" of group 3 of sheet 1 of window "Keychain Access"
    end tell
    Thanks for the help. I really appreciate it. This is a rather new field for me and most of my knowledge comes from Google Searches and about a billion tabs trying to find answers.

  • User name and Country from User master

    Hello Friends,
             I want the User name as per User master record and the Country.  I have USR03 table. But in that  I have a fieldname BNAME.
    That is not the direct user name. Where can i get these both ( User name and Country ).
    Thanks,
    Ajay

    Hi,
    Try using function module to get the user names
    ALM_ME_READ_USER_STATUS
    PAR_EBPP_GET_USER_LOGIN_INFO
    BP_CENTRALPERSON_GET
    SUSR_USER_ADDRESS_READ
    Regards
    Ravi

  • New MacBook Pro - user name and password question

    Okay, I am fired up. I just opened my brand new MacBook Pro 15.4". I purchased it from MacMall and had them install Parallels (I use one program that is Windows only) and Office:mac 2008 Special Media Edition.
    Since MacMall installed Office and Parallels (and then Windows XP Pro) they initially set up the user name and password for my MacBook Pro. The user name is simply "user" and there is no password. How can I go back and reset the user name and password at the system level?
    BTW, this is my first Mac in 15 years! My firm uses all Windows based machines . . . except me now!
    Message was edited by: J Perry

    It is possible to either change the account's name, or create a new account. The first (changing the username), does NOT fully change the name. A version of your name (called the short name) remains unchanged.
    Therefore, I recommend creating a NEW account. The procedure...
    1) In the Apple menu, select "System Preferences".
    2) Click "Accounts"
    3) If locked, click the lock (lower-left corner) and login (guarantees you are the authorized person).
    4) Click "+" to create a new account.
    5) Assuming you want to be the administrator of your computer, setup the NEW ACCOUNT as "Administrator".
    6) Enter your desired username.
    7) Enter your desired shortname (can be the same, but no spaces and all lowercase).
    8) Enter your desired password.
    9) Click "Create Account".
    However, the computer is still configured to automatically login the user "user" at startup. You can change this at the "Accounts" pane of "System Preferences" as well. Proceed...
    10) Click "Login Option"
    11) Change AUTOMATIC LOGIN to either "Disabled" or your new username (your choice).

  • Problems with User names and Password

    For some reason iWeb does not want to accept my user name and password: I enter it in the programm, update the whole website (which by the way didn´t occur incrementally), and then when I try to call up the page it won´t let me in - instead I have to give in the password and the user name over and over again with the result of the page being loaded just a "little" bit more each time but nothing happening!
    Please help!
    <Edited by Moderator>

    David ~ You're posting in this 'Web '08 forum so this Apple doc about iWeb 1.x may not apply: _Password-protected sites don't publish to .Mac_.
    For iWeb '08, passwords are case-sensitive and must use between 6 and 20 characters. They can include any combination of letters, numbers, and symbols, but can’t include spaces.
    Post back confirming that you're using iWeb '08 and MobileMe — if you don’t publish your site to MobileMe password protection is unavailable.

  • TS3276 Cannot send mail from my iPad...."user name and or password is incorrect"......mail can be sent from my iPhone

    Why do I get the message   "Cannot send mail, the user name and or password for my email outgoing server is incorrect"?  I use the same account, etc. on my iPhone and haven't any trouble sending mail.

    If your email requires a password for the SMTP server you can set it up in the settings in the General mail setup. Some i.e Gmail require a password for SMTP.
    Otherwise you will probably get better answers in the iPad forum.
    https://discussions.apple.com/community/ipad/using_ipad

  • Upgrade of our 10.4.11 laptop to 10.5 is accomplished and we now need to upgrade Quicktime and iTunes; however, the user name and password is now not working after the upgrade to 10.5.

    Object is to sync address and calendar between laptop with Max OS 10.4.11 and iPhone. Upgrade of our 10.4.11 laptop to 10.5 is accomplished and we now need to upgrade Quicktime and iTunes; however, the user name and password for the laptop is now not working after the upgrade to 10.5., though it was working prior to the upgrade, for file sharing.

    @ BDAqua > I tried your suggestion but no luck. holding opt+command just gave me a blue screen and it rebotted, pushing the disk out of the drive. Yes, the macbook has 1 gb of ram. I realize that the min req. call for 2 gb of ram so i've got an order in for another dimm to put into the machine. Thanks for your suggestions.
    @ a_brody > Yes. The machine was plugged into a power source. The disk promts you to do that and i recall aspect this form other installs. Thanks for the reminder tho! ( btw your second post is like greek to me man!) 
    @ Kuncklesmac > You're right about Snow Leopard being an upgrade from Leopard. I'm aware of this. And yes previously i've been told by Apple that I needed the Box Set (not the family pack.  i am using the family pack for OS Snow Leopard) to upgrade my 10.4.11 mac - they never mentioned adding ram but i figured that out on my own and an apple specialist recommended it when i purchased Snow Leopard and confirmed that I coul duse the Snow Leopard to upgarde from Tiger (10.4.11). I've also read extensively (as i said above) that it isn't necessary (always) to buy the box set. Several 10.4.11 users report having upgraded using the Snow Leopard upgrade disk only (not the Box Set) without trouble on intel macs (also see the apple link i posted). So i'm just ondering how they did it and i cannot. 
    Thanks fo rall yor help!

  • User name and passwords autofill

    user name and passwords autofill only autofills the user name and not the password. Any ideas on how to change this so that passwords are also autofilled?

    Hi Geoffrey
    Some web sites (particularly banks, credit card companies) specifically code their sites to prevent the password from automatically appearing. This is due to security concerns.
    Notwithstanding the above, It's possible there's oddities in the Keychain file. This file retains your User Name/Password information. In your Finder: Applications>Utilities folder. Open Keychain Access. Go to the Keychain Menu>Keychain First Aid>Repair. If any errors appear rerun until you get a clean pass.
    If the lack of auto-fill continues, there is a workaround for the web coding via 3rd party Safari add-on (shareware) SAFT. In SAFT's Misc. preference file settings (part of the Safari Preferences) is "Auto-complete always on".
    Note: some of the more elaborate security sign-ons, such as those that use multiple pages for the sign-in are not overridden by the SAFT feature.

  • How do I connect to Net Flix? I put in my user name and password which work fine with my iMac but not on my Apple TV?

    How do I connect to Net Flix? I put in my user name and password which work fine with my iMac but not on my Apple TV?

    Can you give me a screenshot of the User Accounts window in Control Panel?
    Please create a screenshot by following the guide mentioned at [[How do I create a screenshot of my problem?]].
    Once you've done this, attach the saved screenshot file to your forum post by clicking the '''Browse...''' button below the ''Post your reply'' box. You really help us to visualize the problem.

  • My app store is not working after installing mavericks. When I open app store it repeatedly asking me to login with apple ID and to provide User name and Password for proxy authentication in a loop.I am a newbie to mac,Please help me.

    My app store is not working after installing mavericks. When I open app store it repeatedly asking me to login with apple ID and to provide User name and Password for proxy authentication in a loop.I am a newbie to mac,Please help me.

    Hmmmm... would appear that you need to be actually logged in to enable the additional menu features.
    Have you tried deletting the plists for MAS?
    This page might help you out...
    http://www.macobserver.com/tmo/answers/how_to_identify_and_fix_problems_with_the _mac_app_store
    Failing that, I will have to throw this back to the forum to see if anyone else can advise further.
    Let me know how you get on?
    Thanks.

Maybe you are looking for