contents of the tablespace

Hello

Please I need your help becomes a list of all the objects (tables, functions, procedures, another one...) that leave them on a specific tablespace,.
I need to remove storage spaces, but before doing so I need to enumerate the hat of those objects exist on a specific tablespace, n move them before giving up the tablespace
Thank you very much
Select segment_type, segment_name
from dba_segments
where tablespace_name='MYTBS';

Procedures, functions, and all the other PL/SQL code is located in the SYSTEM tablespace.

Max
[My Italian blog Oracle | http://oracleitalia.wordpress.com/2010/01/10/crittografia-in-plsql-utilizzando-dbms_crypto/]

Published by: Massimo Ruocchio, January 12, 2010 12:14
Additional storage of pl/sql code

Tags: Database

Similar Questions

  • Cannot delete the tablespace empty without including content

    SQL > select the separate owner, nom_segment, segment_type dba_extents where nom_tablespace = 'PLAYLOG. "

    no selected line

    However-

    SQL > drop tablespace playlog.

    Drop tablespace playlog

    *

    ERROR on line 1:

    ORA-01549: tablespace not empty, use CONTENT including option

    SQL > purge the tablespace playlog.

    Purged tablespace.

    SQL > drop tablespace playlog.

    Drop tablespace playlog

    *

    ERROR on line 1:

    ORA-01549: tablespace not empty, use CONTENT including option

    Also compare bytes in dba_segments with dba_extents.  I know you served the recyclebin, but still...

    Another more speculative idea: I wonder if delayed segment creation has something to do with it.

    See map of measurement for the Oracle, the way to old for some ideas on how to look.

  • Determine the space allocated to the tablespace on disk and the database free summer

    Hello

    Using oracle 11.2.0.3 and want to determine that some new storage space will be large enough to hold the data that we intend to move in them these is large enough.

    When watching in Oracle enterprise manager see tablespaces but all look to have a default value 1024 MB and when run query below don't even see the tablespaces.

    Another team created these and advised 4 GB but want to verify this.

    How can we be sure that 4 GB was allotted to each of the tablespaces concerned before moving data.

    Select df.tablespace_name "Tablespace"

    totalusedspace 'Used MB',

    (df.totalspace - tu.totalusedspace) "MB free.

    DF. TotalSpace 'Total MB. "

    round (100 * ((df.totalspace-tu.totalusedspace) / df.totalspace))

    "PCT free."

    Of

    (select nom_tablespace,

    Round (Sum (bytes) / 1048576) TotalSpace

    from dba_data_files

    Group by tablespace_name) df,.

    (select round (sum (bytes) /(1024*1024)) totalusedspace, nom_tablespace)

    from dba_segments

    where nom_tablespace like '% % refund '.

    you group by tablespace_name)

    where df.tablespace_name = tu.tablespace_name

    order by 1

    Thank you

    Hello

    Use this query and display the results:

    CLEAR COLUMNS
    SET LINES 200
    COLUMN "Tablespace"  FORMAT A34 TRUNC
    COLUMN "AllocSize (M)"    FORMAT 999,990
    COLUMN "AllocFree (M)"    FORMAT 999,990
    COLUMN "AllocUsed (%)"    FORMAT A16
    COLUMN "MaxSize (M)"  FORMAT 999,990
    COLUMN "MaxFree (M)"  FORMAT 999,990
    COLUMN "MaxUsed (%)"  FORMAT A16
    
    SELECT /*+choose*/    CASE f.status
                  WHEN 'ONLINE'
                      THEN '+'
                  WHEN 'OFFLINE'
                      THEN '-'
                  ELSE '='
                END
            || '|'
            || SUBSTR (f.CONTENTS, 1, 1)
            || '|'
            || f.tablespace_name "Tablespace",
            f.nallocsize "AllocSize (M)", f.free "AllocFree (M)",
                '['
            || RPAD (NVL (RPAD ('#', ROUND (f.nusedpct / 10), '#'), '_'), 10,
                      '_')
            || ']'
            || LPAD (TO_CHAR (f.nusedpct), 3, ' ')
            || '%' "AllocUsed (%)",
            f.nmaxsize "MaxSize (M)",
            (f.free + f.nmaxsize - f.nallocsize) "MaxFree (M)",
                '['
            || RPAD (NVL (RPAD ('#', ROUND (f.nmaxusedpct / 10), '#'), '_'),
                      10,
                      '_'
                    )
            || ']'
            || LPAD (TO_CHAR (f.nmaxusedpct), 3, ' ')
            || '%' "MaxUsed (%)"
        FROM (SELECT e.status, e.tablespace_name, e.CONTENTS, e.nallocsize,
                    e.free, e.nmaxsize,
                    (CASE nallocsize
                        WHEN 0
                            THEN 0
                        ELSE ROUND ((100 - (e.free / e.nallocsize * 100)))
                      END
                    ) nusedpct,
                    (CASE nmaxsize
                        WHEN 0
                            THEN 0
                        ELSE ROUND (  100
                                    -  (e.free + e.nmaxsize - e.nallocsize)
                                      / e.nmaxsize
                                      * 100
                                    )
                      END
                    ) nmaxusedpct
                FROM (SELECT d.status, d.tablespace_name, d.CONTENTS,
                            ROUND (a.BYTES / (1024 * 1024)) nallocsize,
                            ROUND (NVL (s.BYTES, 0) / (1024 * 1024)) free,
                            (CASE
                                WHEN NVL (a.maxbytes, 0) < a.BYTES
                                    THEN ROUND (a.BYTES / (1024 * 1024))
                                ELSE ROUND (NVL (a.maxbytes, 0) / (1024 * 1024))
                              END
                            ) nmaxsize
                        FROM (SELECT status, tablespace_name, CONTENTS
                                FROM dba_tablespaces
                              WHERE CONTENTS != 'TEMPORARY') d,
                            (SELECT  tablespace_name, SUM (NVL (BYTES, 0))
                                                                            BYTES,
                                      SUM
                                          (CASE
                                              WHEN NVL (maxbytes, 0) <
                                                                    NVL (BYTES, 0)
                                                THEN NVL (BYTES, 0)
                                              ELSE NVL (maxbytes, 0)
                                          END
                                          ) maxbytes
                                  FROM dba_data_files
                              GROUP BY tablespace_name) a,
                            (SELECT  tablespace_name, SUM (BYTES) BYTES
                                  FROM (SELECT  tablespace_name,
                                                SUM (BYTES) BYTES
                                            FROM dba_free_space
                                        GROUP BY tablespace_name
                                        )
                              GROUP BY tablespace_name) s
                      WHERE d.tablespace_name = a.tablespace_name
                        AND d.tablespace_name = s.tablespace_name(+)
                      UNION ALL
                      SELECT d.status, d.tablespace_name, d.CONTENTS,
                            ROUND (a.BYTES / (1024 * 1024)) nallocsize,
                            ROUND (NVL (s.BYTES, 0) / (1024 * 1024)) free,
                            (CASE
                                WHEN NVL (a.maxbytes, 0) < a.BYTES
                                    THEN ROUND (a.BYTES / (1024 * 1024))
                                ELSE ROUND (NVL (a.maxbytes, 0) / (1024 * 1024))
                              END
                            ) nmaxsize
                        FROM (SELECT status, tablespace_name, CONTENTS
                                FROM dba_tablespaces
                              WHERE CONTENTS = 'TEMPORARY') d,
                            (SELECT  tablespace_name, NVL (SUM (BYTES),
                                                            0) BYTES,
                                      NVL (SUM (maxbytes), 0) maxbytes
                                  FROM dba_temp_files
                              GROUP BY tablespace_name) a,
                            (SELECT  h.tablespace_name,
                                      SUM (  (h.bytes_free + h.bytes_used)
                                            - NVL (p.bytes_used, 0)
                                          ) BYTES
                                  FROM v$temp_space_header h,
                                      v$temp_extent_pool p,
                                      dba_temp_files f
                                WHERE p.file_id(+) = h.file_id
                                  AND p.tablespace_name(+) = h.tablespace_name
                                  AND f.file_id = h.file_id
                                  AND f.tablespace_name = h.tablespace_name
                              GROUP BY h.tablespace_name) s
                      WHERE  d.tablespace_name = a.tablespace_name
                        AND d.tablespace_name = s.tablespace_name(+)) e) f
    where f.tablespace_name like '%RTRN%'
    ;
    
    PROMPT (+) = ONLINE      (P) = PERMANENT
    PROMPT (=) = READ ONLY    (U) = UNDO
    PROMPT (-) = OFFLINE      (T) = TEMPORARY
    PROMPT
    

    Edit:

    Example of output:

    Tablespace AllocSize (M) AllocFree (M) AllocUsed (%) MaxSize (M) MaxFree (M) MaxUsed (%)

    ---------------------------------- ------------- ------------- ---------------- ----------- ----------- ----------------

    +| P | XDB 1 374 0 [#] 100% 8 192 6 818 [# _] 17%

    If the column "MaxFree (M)" you show no space required, then your data files are not configured well. Your DBA must configure the parameters 'CanGrow' and 'maxsize' adequate level data file in each tablespace.

    Kind regards

    Juan M

  • ORA-00959: NSN_2 tablespace does not exist... But the tablespace is defined in the user temp script

    WHEN I SPEAR IMPDP I GET AN ERROR ABOUT "THE TABLESPACE DOES NOT EXIST.

    THIS space of STORAGE IS in FACT is MORE PRESENT on THE SYSTEM, BUT IT IS DEFINED IN the User1 SCRIPT

    IS there ANYWAY THAT I CAN ASK HIM don't GET THIS TEMP TABLESPACE

    or

    is there anyway I can remove the definition of the user (User1) NSN_2

    OR

    should I just re-create the NSN_2 tablescape

    HELP NEEDED PLS...

    DROP USER CASCADE USER1;

    CREATE THE USER1 USER

    IDENTIFIED BY < password >

    NSN_1 DEFAULT TABLESPACE

    TEMPORARY TEMP TABLESPACE

    -2 Tablespace quotas for User1

    ALTER USER USER1 QUOTA UNLIMITED ON NSN_1;

    ALTER USER USER1 QUOTA UNLIMITED ON NSN_2;                -point in contention

    Directory of Impdp User1/password = dump_dir dumpfile = logfile = LOG.log remap_schema user2.dmp = USER2:USER1 remap_tablespace = NSN_4:NSN_1

    Table main "USER1". "' SYS_IMPORT_FULL_01 ' properly load/unloaded

    Departure "USER1". "' SYS_IMPORT_FULL_01 ': User1 / * directory = dump_dir = setup_02102012.dmp = logfile dumpfile tries .log remap_schema = remap_tablespace of installation: USER1 = NSN_4:NSN_1

    Processing object type SCHEMA_EXPORT/USER

    ORA-31684: USER object Type: 'USER1' already exists

    Processing object type SCHEMA_EXPORT/SYSTEM_GRANT

    Processing object type SCHEMA_EXPORT/ROLE_GRANT

    Processing object type SCHEMA_EXPORT/DEFAULT_ROLE

    Processing object type SCHEMA_EXPORT/TABLESPACE_QUOTA

    ORA-39083: Type as tablespace_quota cannot be created with the object error:

    ORA-00959: tablespace "NSN_2" does not exist

    Because sql is:

    REPORT THE NUMBER OF TEMP_COUNT;   SQLSTR VARCHAR2 (200); BÉGIN SQLSTR: = ' ALTER USER 'USER1' QUOTA UNLIMITED ON 'NSN_2 ';  RUN IMMEDIATELY SQLSTR; EXCEPTION, THEN THAN OTHERS SO IF SQLCODE =-30041 THEN SQLSTR: = ' SELECT COUNT (*) OF USER_TABLESPACES WHERE NOM_TABLESPACE = "NSN_2" AND CONTENT = "TEMPORARY"';      RUN IMMEDIATELY SQLSTR IN TEMP_CO

    Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA

    Object type SCHEMA_EXPORT/SEQUENCE/SEQUENCE of treatment

    Object type SCHEMA_EXPORT/TABLE/TABLE processing

    ORA-39083: TABLE object type: "USER1". "" AVAIL_BY_OPTION_REF "impossible to create with the error:

    ORA-00959: tablespace "NSN_2" does not exist

    Impdp transform = segment_attributes

    Smit

  • determine the free space of the tablespace

    Hi all

    How to determine free space of the tablespace?

    Can use this:

    select tablespace_name,
    case when sum(bytes) >= 1073741824 then round(sum(bytes)/1073741824,2)||'gb'
         when sum(bytes) >=1048576     then round(sum(bytes)/1048576,2)||'mb'
         when sum(bytes) >=1024        then round(sum(bytes)/1024,2)||'kb'
         else sum(bytes)||'bytes'
    end free_space
    from
    (select tablespace_name, bytes from dba_free_space
     union all
     select TABLESPACE_NAME, 0 from dba_tablespaces where CONTENTS != 'TEMPORARY' -- this will add full tablespaces
     union all
    select tablespace_name, maxbytes-bytes
     from dba_data_files where AUTOEXTENSIBLE='YES' and maxbytes>bytes)
    group by tablespace_name order by sum(bytes);
    
  • Cannot delete the tablespace

    Oracle 10.24
    64 bit SPARC Solaris 10.5

    I am trying to drop a tablespace to resize my original tablespace, I created, but get the following error:
    SQL > drop tablespace backup_ts including content and files of data cascade constraints;
    Drop tablespace backup_ts including the content cascade constraints and data files
    *
    ERROR on line 1:
    ORA-00604: an error has occurred at the SQL level 1 recursive
    ORA-02429: cannot delete the index used for the application of the unique/primary key
    I also delete all tables in the tablespace (backup_ts) and always error.

    Yes... These are clues... (which must be deleted or rebuilt to a different tablespace)

  • Unlimited on USERS quota of USERS of the tablespace default ALTER USER &lt; schema &gt;

    Hi all

    I got a schema called dmuser1 which I had assigned to tablespace "odmperm."
    now, I was running short on space in the drive on which oracle is installed and
    There was a 'odmperm' tablespace data file,
    so I thought to drop the tablespace "odmperm" and the corresponding data file,
    so I modified the schema dmuser1 to point to the USERS tablespace in the race code below

    ALTER USER dmuser1 quota default tablespace USERS unlimited USERS.

    so I ran
    Select * from dba_users;

    Here user dmuser1 had changed users tablespace, so I used the command to remove the file from the data below

    DROP TABLESPACE INCLUDING CONTENTS ODMPERM;

    now, when I log in the dmuser1 schema, none of my paintings are present and I don't have the backup too, so please help me solve this.


    Please, I beg you.

    Thanks in advance.

    You are out of luck - the paintings disappeared and without backup or export, you will get their return. If you still have the data file on the file system, contact the Oracle Support and ask DUL - that is if you have a support contract. No other chance, I'm afraid. Your command alter user only had an effect for future tables :-(

  • the tablespace temp in oracle10g data file

    I use oracle10g R2. I voluntarily deleted the data file from the temporary tablespace at the OS level. Then I restart the database. When I restart the database, he started and DB is opened successfully. I went and the server. The temporary file is re-created. Is this something new in oracle10g? I don't think, I see this in oracle9i. I you'd be grateful if someone could clarify this...

    govindts wrote:
    Thank you all... This is my last question. Once I have the answer, then I will mark this as answer

    Is this new avaible only feature for the database that runs RMAN? My database is automatically re-create the temporary files when I restart the database. But my DB recorded with RMAN catalog. It works for any database that is not registered with the RMAN catalog?

    Govind,

    Databases are not registered with RMAN. Its a tool that there always in binary database stack, its up to you to use it or not. Database part of the RMAN catalog or not, also makes no difference in the creation of temporary storage space. This feature is there in 10g databases out of the box. Here is my db, no newspaper archive, no rman catalog configured.

    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    
    Connected to an idle instance.
    
    SQL> startup
    ORACLE instance started.
    
    Total System Global Area  167772160 bytes
    Fixed Size                  1247900 bytes
    Variable Size              75498852 bytes
    Database Buffers           88080384 bytes
    Redo Buffers                2945024 bytes
    Database mounted.
    Database opened.
    SQL> archive log list
    Database log mode              No Archive Mode
    Automatic archival             Disabled
    Archive destination            USE_DB_RECOVERY_FILE_DEST
    Oldest online log sequence     41
    Current log sequence           43
    SQL> archive log list
    Database log mode              No Archive Mode
    Automatic archival             Disabled
    Archive destination            USE_DB_RECOVERY_FILE_DEST
    Oldest online log sequence     41
    Current log sequence           43
    SQL> select * from dba_temp_files;
    
    FILE_NAME
    --------------------------------------------------------------------------------
       FILE_ID TABLESPACE_NAME                     BYTES     BLOCKS STATUS
    ---------- ------------------------------ ---------- ---------- ---------
    RELATIVE_FNO AUT   MAXBYTES  MAXBLOCKS INCREMENT_BY USER_BYTES USER_BLOCKS
    ------------ --- ---------- ---------- ------------ ---------- -----------
    E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\TEMP01.DBF
             1 TEMP                             20971520       2560 AVAILABLE
               1 YES 3.4360E+10    4194302           80   19922944        2432
    
    SQL> shut immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    
    E:\Documents and Settings\aristadba>cd E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\
    
    E:\oracle\product\10.2.0\oradata\orcl>rename TEMP01.DBF TEMP01.DBF.old
    
    E:\oracle\product\10.2.0\oradata\orcl>sqlplus / as sysdba
    
    SQL*Plus: Release 10.2.0.1.0 - Production on Sun Jun 7 10:26:15 2009
    
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    
    Connected to an idle instance.
    
    SQL> startup
    ORACLE instance started.
    
    Total System Global Area  167772160 bytes
    Fixed Size                  1247900 bytes
    Variable Size              75498852 bytes
    Database Buffers           88080384 bytes
    Redo Buffers                2945024 bytes
    Database mounted.
    Database opened.
    SQL>
    

    And here is the excerpt of the alert log, you can see the message of the temp being created.

    Sun Jun 07 10:26:54 2009
    ALTER DATABASE OPEN
    Sun Jun 07 10:26:54 2009
    Thread 1 opened at log sequence 43
      Current log# 3 seq# 43 mem# 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO03.LOG
    Successful open of redo thread 1
    Sun Jun 07 10:26:54 2009
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Sun Jun 07 10:26:54 2009
    SMON: enabling cache recovery
    Sun Jun 07 10:26:55 2009
    Successfully onlined Undo Tablespace 1.
    Sun Jun 07 10:26:55 2009
    SMON: enabling tx recovery
    Sun Jun 07 10:26:55 2009
    Re-creating tempfile E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\TEMP01.DBF
    Database Characterset is WE8MSWIN1252
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    QMNC started with pid=15, OS id=3828
    Sun Jun 07 10:26:59 2009
    Completed: ALTER DATABASE OPEN
    Sun Jun 07 10:27:00 2009
    db_recovery_file_dest_size of 2048 MB is 0.33% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    

    Update:

    Just to prove that the file has been created, I write the contents of the oradata folder

    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    
    E:\oracle\product\10.2.0\oradata\orcl>ls
    'ls' is not recognized as an internal or external command,
    operable program or batch file.
    
    E:\oracle\product\10.2.0\oradata\orcl>dir
     Volume in drive E has no label.
     Volume Serial Number is 5449-27B9
    
     Directory of E:\oracle\product\10.2.0\oradata\orcl
    
    06/07/2009  10:26 AM              .
    06/07/2009  10:26 AM              ..
    06/07/2009  10:29 AM         7,061,504 CONTROL01.CTL
    06/07/2009  10:29 AM         7,061,504 CONTROL02.CTL
    06/07/2009  10:29 AM         7,061,504 CONTROL03.CTL
    06/07/2009  10:24 AM       104,865,792 EXAMPLE01.DBF
    06/07/2009  10:24 AM        52,429,312 REDO01.LOG
    06/07/2009  10:24 AM        52,429,312 REDO02.LOG
    06/07/2009  10:24 AM        52,429,312 REDO03.LOG
    06/07/2009  10:24 AM       272,637,952 SYSAUX01.DBF
    06/07/2009  10:24 AM       513,810,432 SYSTEM01.DBF
    06/07/2009  10:26 AM        20,979,712 TEMP01.DBF
    06/06/2009  12:59 AM        20,979,712 TEMP01.DBF.old
    06/07/2009  10:24 AM        31,465,472 UNDOTBS01.DBF
    06/07/2009  10:24 AM         5,251,072 USERS01.DBF
                  13 File(s)  1,148,462,592 bytes
                   2 Dir(s)  63,850,295,296 bytes free
    

    HTH
    Aman...

    Published by: Aman... on June 7, 2009 10:29
    added the last section of code.

  • El Capitan Mail - content of the message can be seen in the Viewer window

    I use the classic layout in Mail for Mac OS. The list of messages appears in the mailbox on top with an adjustable bar in the Middle, between the content of the message selected in the list.

    Today I moved to the bottom of the window of the splitter bar so I can work with (move, delete, mark as read) a long list of messages in a mailbox. When I did with this project, I was unable to bring the bar of diving to the bottom of the Middle window. This means that I can't see the content of a message that is selected.

    The separator bar is moving normally through when you take a small dot in the middle. With the bar at the bottom of the window, the point is gray. I can't enter to move.

    I opened a second window of the observer. I returned the same way - the entire list and no content.

    I resized the window and tried all the options to display more or less in the header items, etc. No change.

    I closed all windows and quit Mail and revived. No improvement.

    I restarted my Mac. Still no improvement.

    Any suggestions? Outside the call to Apple?

    It works very well here. You have to keep pushing the bar upward until the window is reduced to normal. Make sure that the cursor is on the gray point and going on to a horizontal bar with an arrow pointing up.

  • Content of the USB accidentally in the trash can

    Some how I accidentally placed the entire contents of a USB drive into the trash.

    Whenever I insert the disc, its contents appear in the trash.

    I don't want to delete the contents of the usb drive.

    How can I delete the contents of the trash and keep it on the USB key?

    Kind regards...

    Open the Recycle Bin and drag the files from the disk to another location on it.

    (144143)

  • Lose or damage received the content of the e-mail, can see the fault once then apparent on refresh. worm 38.4 on 64-bit Windows8.1 / thank you

    Thunderbird worm 38.4/8.1 windows 64 bit
    Emails in the Inbox display content on the first reception. During subsequent attempts to display the message content can be completely empty or the contents of another adjacent email in the list. This seems to have started at the time that Norton detected and quarantined a couple of emails with identified the virus attached.
    After you run the full system antivirus scan I backed the content of the 789abc987.default of profile to backup taken yesterday. Now new emails coming to see the same problem, so that up to this older email display correctly.

    Unfortunately it doesn't seem wise to disable antivirus because in business, even if you wait for an attachment and you know the source, the technical capabilities of the source is not always known.

    I suggest to disable antivirus. Indeed, it would be a bad choice.
    The point is not to analyze the attachments so that they are still part of the e-mail message.

    Some form of holding directory which allow scanning prior to arrival in the mail app would be nice

    I don't know what you want to achieve by doing this. Yet once, any malware eventually joined an e-mail won't hurt as long as you do not deliberately open or run the attachment.

    Save an attachment to disk and then let it scan by anti-virus would be a good strategy.

  • My "sent" folder that I sent in, but the content of the e-mail is empty

    As above: my "sent" folder that I sent in, but the content of the e-mail is empty. It happened recently (3-4 days).

    Right click on the folder "sent" - Compact.

  • Try to spend XP to W10. Tried to copy the content of the profile (IE not the profile itself) immediately after installation but no joy.

    Try to get an old laptop XP to a new computer laptop of W10 thunderbird.
    Located existing profile and backed up on external hard drive.
    Thunderbird installed on W10 and before breakfast copied the contents of the old profile folder to the profile under AppData/Roaming/Thunderbird/Profiles/profile.default folder
    Launch thunderbird and it does not recognize the profile, it is as if she is trying to set it up from scratch.
    Then tried to create new profile and copying the contents of the old profile of XP, but it did not work.
    Then looked at the Add-ons, but the lightning it is not present, so could not remove it.
    Any other suggestions?

    C:\Documents and Settings\Fraser\Local Settings\Application Data\Thunderbird\Profiles\elvh5ttl.dfault

    This is not the path of the correct profile for XP.
    Check this article and make sure that really copy you the profile folder.
    http://KB.mozillazine.org/Profile_folder_-_Thunderbird#Windows_2000_and_XP

    I do not understand why you created a second profile. With two profiles, you must always be careful to start Thunderbird with the right profile.

  • The amount of space used by the content of the trash?

    There is probably a really simple answer to this, but I can't understand it. Is there a way to tell how much space the contents of the trash again?

    Thank you very much.

    I don't see a way to do it from the finder (without manually add it all!), but I use a great little app called Disk Doctor, which makes me (and a load of other things).

  • Cannot show the contents of the message when searching for local folders

    Using Thunderbird version 38.2.0

    I have recently moved most of my emails from our server to a 'Local Folders' directory to free up space on the server. Using the Thunderbird global search feature (top right), I can see the emails (subject lines, of / to / etc) stored in folders the in research, but when you click on one of these messages, I'm greeted by a blank screen - no content of message is displayed.

    I can verify that the messages stored in local folders actually contained dragging manually for them. It appears research global function does not work - at least, he is not allowing the content of the message to display.

    Ideas?

    Rebuild the database world.
    See https://support.mozilla.org/en-US/kb/rebuilding-global-database

Maybe you are looking for