Tablespace size. System data vs user data.

Hi,
I have Oracle 11.2.0.1 on Solaris 11 x86_64. Software using SYSTEM tablespace. The free space on this tablespace is allmost end,
When i check what amount of data is collected in database i get strange value:
select SUM(qq.MB) from (select table_name,(num_rows*avg_row_len)/(1024*1024) MB, num_rows, avg_row_len from user_tables) qq;
SUM(QQ.MB)            
6,43802738189697265625
So i suppose that data using only 6.4MB.... But statistic for this tablespace is
Tablespace                     Used MB                Free MB                Total MB               Pct. Free             
SYSAUX                         655                    35                     690                    5                     
UNDOTBS1                       27                     18                     45                     40                    
TQTBS                          11                     489                    500                    98                    
USERS                          0                      5                      5                      100                   
SYSTEM                         707                    93                     800                    12              
What is using 700MB?!

It is a very good thing to use the command line queries to understand these things.  But it is also good to know your tools.  You should check tablespace size with dbconsole, it shows nice little pictures of how much space is used.  Note that your system tablespace is autoextend, and this is a good thing, since as Sybrand noted, that's where the PL/SQL is stored.  As a practical matter, unless you are adding a lot of new code, that tablespace tends to expand to a steady size and just stay there.  You don't want to fix it there, because you might add new code in the future.
On the other hand, sysaux and your data may need some watching.  If you are curious, you can use the tablespace map function in dbconsole to see what is where in tablespaces (and there are scripts floating about to see it command line style).  But don't stress over it, Oracle is really good about doing things right.  What you have to watch out for is things like auditing or plan maintenance becoming space hogs in sysaux, and some apps, sometimes combined with some bugs, can use too much data space.  But really, you shouldn't bother with it too much unless you see something using way more space than you would reasonably expect. 
If you want to obsess over something, consider patching.  11.2.0.1 is not a good sign.

Similar Messages

  • Displayed data in User Details vs. Information entered in User Profile

    Hello All,
    I am running Portal 7.0 SPS13.
    In my Users Profile tab "Additional Information" I entered:
    Organizational Unit:  NIS
    Position: Consultant
    Department:  <is greyed-out / not editable>
    In my Users Details tab "Company" I only see:
    Job Title: Consultant
    My Questions are:
    1) Why do I only see the Information from "Position"
    2) The greyed out field "Department" is not filled (I guess at this point that it gets filled with the department information from the MS ADS (LDAP). But it's not.  Whoever the telephone information from the MS ADS is transferred to the regarding UME fields
    Thank you in advance for your help and hints.
    Kind regards,
    Philipp

    Hi Neeraj,
    i have already configured as below_
    User Details Data Source
              Target Connector =ECC system
               Sequence=1
               user Data Type=HR
    Regards,
    Arif

  • Cisco User Data Dump

    When I manually run the Cisco User Data Dump, it creates the report without any issues.  When I try to schedule the task or if I run it from the command line,  "E:\Program Files (x86)\Cisco Systems\Unity Connection\User Data Dump\Unity Connection User Data Dump.exe" /Silent=[xx.xx.xx.xx], the file is created but never get data.  I followed the instructions about saving the configuration, I checked enable to run whether logged in or off, highest privilege, the startup directory is E:\Program Files (x86)\Cisco Systems\Unity Connection\User Data Dump and I am in the administrative group.  The request just seems to hang and waiting for some input.  Is there any other line commands I can use or is there another "hidden" or non-published setting that I need to do?
    If I look at the task scheduler, the Last Run Results say "The task is currently running (0x41301)".

    I am having the same issue. Was there a solution in place for this? I am up to date with the UDD. I have reviewed the help documents again and again. glamarca Did you ever find a solution?

  • IMPORT DATA TO USER DEFINED TABLESPACE

    I HAVE FACED A PROBLEM REGARDING IMPORT DATA IN A USER DEFINED TABLESPACE.FOR DOING THIS AT FIRST I HAVE CREATED A TABLESPACE SAY USERS ASSOCIATED WITH A DATAFILE NAME AND PATH IS 'D:\ORACLE\ORADATA\ORCL\USERS01.DBF' ITS SIZE IS 200M.IN THE SAME PATH THERE IS A TEMPORARY TABLESPACE ASSOCIATED
    WITH A DATAFILE NAMED 'D:\ORACLE\ORADATA\ORCL\TEMP01.DBF' ITS SIZE IS 80M.
    THEN ASBESCO USER CREATED IN USERS TABLESPACE THROUGH THIS SQL COMMAND.
    CREATE USER ASBESCO IDENTIFIED BY ASBESCO
         DEFAULT TABLESPACE USERS
         TEMPORARY TABLESPACE TEMP
         QUOTA UNLIMITED ON USERS
         QUOTA UNLIMITED ON TEMP;
    GRANT PRIVILAGE TO ASBESCO USER BY THIS SQL .
    GRANT CONNECT,RESOURCE,DBA TO ASBESCO;
    MY EXPORT FILE NAME IS ASBESCO.DMP WHICH IS EXPORTED FROM ANOTHER MACHINE. I WANT TO IMPORT THIS INTO MY MACHINE'S SPECIFIED TABLESPACE. ITS SIZE IS APPROX 26 MB.
    NOW I MPORT ASBESCO.DMP FILE THROUGH THIS COMMAND..
    IMP SYSTEM/<SYSTEM PASSWORD> FILE= ASBESCO.DMP FROMUSER=ASBESCO TOUSER=ASBESCO.
    AFTER SUCCESSFULL IMPORT OPERATION I HAVE SEEN ALL OBJECTS IN ASBESCO USER ARE CREATED IN SYSTEM TABLESPACE NOT USERS TABLESPACE. WHY?
    IT IS TO BE NOTED THAT I HAVE NOT MENTIONED THE DEFAULT TABLESPACE 'USERS' WHEN I CREATED MY USER OBJECTS.

    Please change to lower case letters
    If the user has UNLIMITYED tablespace privilige
    Revoke it
    If the user has a privelegs on a tablespace
    Revoke it
    Create a new tablespace and assign it to the user as Default tablespace.
    then import

  • How to see tablespace size in data dictionary

    How can I see the tablespace size, and used tablespace size in data dictionary view?
    it is not in dba_tablespaces, and v$tablespace
    Thanks.

    I like this little piece of code of mine:
    SQL> SELECT
      2          TABLESPACE_NAME,
      3          RPAD(RPAD('|',100-PCT_FREE,'X'),100) || '|' USED
      4  FROM (SELECT TABLESPACE_NAME,
      5    100 -
      6      ROUND(100 -(SUM(BYTES)/1024/1024/1024)*100/
      7                  (SELECT SUM(BYTES)/1024/1024/1024
      8                   FROM DBA_DATA_FILES DF
      9                   WHERE DF.TABLESPACE_NAME=FS.TABLESPACE_NAME),2
    10            ) PCT_FREE,
    11    ROUND(SUM(BYTES)/1024/1024/1024,2) GIBFREE
    12  FROM DBA_FREE_SPACE FS
    13  GROUP BY TABLESPACE_NAME) TABLESPACE_SPACE
    14* ORDER BY TABLESPACE_NAME;
    TABLESPACE_NAME                USED
    ARCHDATA                       |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX      |
    DATBIGGX                       |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX                  |
    DATGX                          |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX                                                      |
    DATLOWGX                       |XXXXXXXXXXXXXXXXXXXXXX                                                                             |
    IDXBIGGX                       |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX                 |
    IDXLGX                         |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX                |
    IDXGX                          |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX          |
    LOGMNRTS                       |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX                                           |
    SYSTEM                         |XXXXXXXXXXXXXXXX                                                                                   |
    TOOLS                          |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX                                                   |
    UNDOGX                         |XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX                                         |Yoann.

  • Fetching the sales order data using both system status and user status

    Hi,
    Could any one tell me how to fetch sales orders using both system status and user status.
    My requirement is to fetch sales order data in a report where the user enters the system status and user status in the selection screen fields.
    For example i need sales orders where the system status is I1002 i.e. OPEN and user status is E0002 (status profile CMSCON0) that is In Process
    Early replies are appreciated.
    Thanks
    Tanveer

    Hi,
    The system status and user status are stored in CRM_JCDS & CRM_JEST tables you can get the all the order GUID on particular status further pass the order GUID in table CRMD_ORDERADM_H to get transaction ID.
    Regards,
    Dipesh.

  • Acct assignment cat. of item not in user data; Inform system admin

    Hi all,
    We are on a SRM EBP 5.0 project and we are getting the following error when we try to create a purchase order from the purchasers login.
    "Acct assignment cat. of item not in user data; Inform system admin"
    The complete details of the screen shot are as follows:
    The following error text was processed in the system DS1 : Acct assignment cat. of item not in user data; Inform system admin.
    The error occurred on the application server lndnysap1_DS1_01 and in the work process 0 .
    The termination type was: TH_RES_FREE
    The ABAP call stack was:
    Form: ABORT_PO of program SAPLBBP_PO_UI_ITS
    Form: ADD_TO_MSG_LOG of program SAPLBBP_PO_UI_ITS
    Form: ADD_TO_MSG_LOG_MULTI of program SAPLBBP_PO_UI_ITS
    Form: SET_PRICING of program SAPLBBP_PO_UI_ITS
    Form: DETERMINE_EXTERNAL_SCREEN of program SAPLBBP_PO_UI_ITS
    Module: DETERMINE_EXTERNAL_SCREEN of program SAPLBBP_PO_UI_ITS
    We did the following steps :
    Created shopping cart- employer and WF triggered apprd. by manager.
    Purchaser did "Carry Out Sourcing ", and if we say "Create Purchase Order", the PO gets created with a information message that "Incomplete purchase order 11/1 is created "
    When we go to  "Process Purchase Order" for the completion of the same. If we see Follow-on documents "Purchase Order Held" occurs.
    In the tab Item Data details Pricing tab we get this error.
    Do any of the SRM gurus can suggest us what to do?
    In our admin logon it shows
    "Server for pricing is not running. Start Server"  occurs after every run of this process purchase order from the purchasers login, though our IPC is working fine.
    Will be of great help if somebody replies soon.
    Sincerely,
    Sridhar.

    Hi,
    IPC has to be configured.
    Please check the following threads :
    https://forums.sdn.sap.com/click.jspa?searchID=211089&messageID=2714527
    https://forums.sdn.sap.com/click.jspa?searchID=211089&messageID=2715019
    Kind regards,
    Yann

  • Conversion of user date to system format

    i have a problem in conversion of user date.
    i use a function module in which the user have to give the date as input. he can give the date in any format like MM/DD/YYYY or DD.MM.YYYY etc . how to convert the given date into the system date.

    hi,
    use FM CONVERT_DATE_TO_INTERNAL
    cheers,
    sasi

  • Expire date for user in the system

    HI ,
    There is a place when we can defined expire date for user in the system ,
    something that similar to role that provided to user from 24/02/2010 - 25/02/2010 .
    i search in su01 and not found anything .
    any idea?
    Regards
    James

    hi james,
    i thin k you can do it in su01 logon data tab--->valid through (in validity period).
    Hope this will help you.
    Thanks,
    Tanmaya

  • Can you get User Data from a XI/PI System ?

    Hello All
    Can you with GRC 5.3 use PI as a User Data Source?
    How?
    Thank you

    Hi Kristian,
    for the AC 5.3 system user store itself or for the user details / user search you could use SAP ABAP, SAP UME, LDAP, etc.
    Short: yes, you could use the ABAP user store of PI.
    Best,
    Frank

  • SSD as system disk while users folder + data on HDD

    Hey there, I want to install SSD in my Mac Pro and since its only 120GB - use it only for system and Apps. While all my user data (photos, movies, music random files) I want to store on my HDD. Is it possible to do it that way, so the system knows where it should put Apps and where downloaded content and all the other stuff should go?

    ~/Library is hidden unless you unhide. It HAS to exist where user accounts are.
    The link is not what you want, it is hybrid SSD Fusion HDD setup.
    I leave ~/Library where it is, right, and don't worry and just link to other hard drive - after playing and trying to move user account to another drive, I swap boot drives a lot and it was easier.
    NetInfo and later Accounts control panel and now is it "Users"? but it is easy for anyone to point to another disk drive.
    How to Move the Home Folder in OS X – and Why ~ Chris ...
    chris.pirillo.com/how-to-move-the-home-folder-in-os-x-and-why
    I went from 120GB SSD (and that after trying to use 40GB) to 250GB and eventually 500GB SSD
    - next stop  SSD blade M.2
    Samsung XP941 M.2 80mm PCIe 2.0 x4
    Works with most Z97 and X99 motherboards and Mac Pro.
    Not compatible with the MacBook Air or Retina MacBook Pro

  • Is PGI date beased on system date or user profile time zone date?

    Hi All,
    When doing PGI what date system will take as Actual good issue date ? whether the System Date or User local Time zone date which maintained in User profile. If you have any idea on this please share.
    Regards,
    Lakshmikanth

    Hi,
    You need to check with the basis team for settings this to your local time.
    You can also check the field Personal time zone of the user in t.code SU01. I am not sure this will update the timings in the database when the user performs some action.
    Regards

  • CUA restore user data after system refresh

    We recently copied our PRD ECC6 system to DEV.  In the new DEV, a client (client 301) was created by way of a client copy to replicate the environment prior to the refresh.  This new client has only one user - the CUA user for the CUA RFC.
    Our CUA resides in an independent system.  The user and authorisation data for client 301 exists in the CUA.  How do I, or even can I push the user and authorisation data from CUA to client 301 on DEV?

    Report RSCCUSND in the CUA system will allow you to push out data to the child system.  You may need to manually re-create user groups in the child system for this to work.

  • System on USB SSD, user data on internal drive?

    I have an iMac with a 1TB internal spinning disk at home, and the same system at work except it has an internal SSD. The SSD system is unsurprisingly much more responsive and it's increasingly painful to use the machine with the spinning disk.  I looked into replacing the internal drive with an SSD but it is cost prohibitive, both to buy the drive and have it installed (I considered doing it myself but the how to video is beyond my skill level). So I started to see if there are other options. I have between 500 GB and 700 GB or user data, much of which is my iPhoto and iTunes libraries.
    One idea I had was to either (a) buy a small external solid-state drive and hook it up via USB or Thunderbolt, and install the system on that, but have my user folder (or possibly even just my iTunes and iPhoto libraries) on the internal drive.
    Another idea is to buy a giant USB key (128 GB?) and install the system on that, and just leave it mounted all the time.
    Other than the fact that I'd have my data spread across two disks, are there reasons why this is a bad idea?  And does anyone have any insight into whether or not it would improve performance noticeably?

    Stick to Thunderbolt. It is faster than USB 3.0 in actual use. Seagate sells a small Thunderbolt adaptor - Seagate STAE133 Ext.
    I can recommend the OCZ Vertex 3 series or the OWC Mercury 6G series. The former can be purchased from many different vendors like Newegg.com. For best performance you want to enable TRIM using Trim Enabler 3.2.2.

  • OIM 9.1 User data set

    Hi,
    In release note of 9.1 it is mentioned that :
    Display of all OIM User attributes on the Step 3: Modify Connector Configuration page
    On the Step 3: Modify Connector Configuration page, the OIM - User data set now shows all the OIM User attributes. In the earlier release, the display of fields was restricted to the ones that were most commonly used.
    and
    Attributes of the ID field are editable
    On the Step 3: Modify Connector Configuration page, you can modify some of the attributes of the ID field. The ID field stores the value that uniquely identifies a user in Oracle Identity Manager and in the target system.
    Can anyone please guide me how to get both things as I am getting only few fields of user profile in OIM-USer data set and also not able to modify ID field.
    I am using OIM 9.1 on Websphere application server 6.1
    Thanks

    Unfortunately i do not have experience using the SPML generic connector. Have you read through all the documentation pertaining to the GTC?
    -Kevin

Maybe you are looking for

  • Extended Notifications Knowledge Based Article

    All, I just wanted to let you know that Eddie Morris of SAP has published a KBA on Extended Notifications.  You will need to have a log on for service.sap.com, but by all means, check out https://service.sap.com/sap/support/notes/1646056 Cheers, Sue

  • My ipod touch is not working or responding when i plug it in

    my ipod touch is not working. It wont switch on or connect

  • Error while importing a Adaptive RFC Model

    Experts, I am trying to import an Adaptive RFC Model. Before importing I need to speciy the connection parameters in the import wizard. I am using the single server method to connect and have specified all the parameters correctly. I have not specifi

  • HDMI Audio Output doesn't work in Windows on Retina MBP

    When I'm using Windows 7 (with BootCamp) on my Retina MacBook Pro, I like to connect it to my TV using the HDMI out to watch movies. However, when in Windows, it doesn't seem to output the audio to the TV. Instead, it plays through the MacBook's inte

  • CHANGE NAME OF A FILE

    Hi to All I need do it the following: I process a file, this file is store in server aplication SAP, and going to be always. I open the file and process the information here stored. But, I need mark this file, so that the next process, doesn´t consid