How do I reduce the size of a DBF file?
Table of Contents
Options include the following.
- Online shrink of objects towards the end of the datafile may allow you to reduce the datafile size.
- Move the SYSAUX objects with extents towards the end of the datafile to a temporary tablespace, reduce the datafile size and move them back.
What is USERS01 DBF?
USERS01.DBF. Stores database objects created by database users.
Can I delete temp01 DBF?

If Oracle did not open it & use it, then you will be able to delete it. If Oracle has opened the file, then the OS won’t allow you to delete it. However, old datafile TEMP01.
Can we delete .dbf file in Oracle?
You can manually delete it using Windows, or you can simply use: CREATE SMALLFILE TABLESPACE dev_01 DATAFILE ‘C:\Oradata\db1\devdata\dev_01. dbf’ SIZE 500M REUSE; This will reuse the existing file if it exists.

How do I reduce the size of my Oracle database?
2 Answers. Try ALTER TABLE table_name SHRINK SPACE CASCADE; and rebuild your indexes.
What are Oracle DBF files?
Each tablespace in an Oracle database consists of one or more files called datafiles, which are physical structures that conform to the operating system in which Oracle is running. A database’s data is collectively stored in the datafiles that constitute each tablespace of the database.
What is an Oracle DBF file?
Datafiles are physical files of the operating system that store the data of all logical structures in the database. They must be explicitly created for each tablespace. Oracle assigns each datafile two associated file numbers, an absolute file number and a relative file number, that are used to uniquely identify it.
How do I drop a Tempfile?
Dropping Datafiles. You use the DROP DATAFILE and DROP TEMPFILE clauses of the ALTER TABLESPACE command to drop a single datafile or tempfile. The datafile must be empty. (A datafile is considered to be empty when no extents remain allocated from it.)
Is it safe to delete DBF file?
Don’t delete the dbf files from the filesystem directly, you’ll get your database into a mess.
How do I shrink a DBF file in Oracle?
The basic syntax for this command is: Alter database name datafile ‘file_name’ resize size; Where name is the name of the database, file_name is the name of the file and size is the new size to make this file. We can see this size change in the dba_data_files table as well as from the server.