The default bigfile datafile with the attribute of auto-extend has run out of disk space and I cannot extend the HDD space of that specific drive. Is there any way to add another bigfile to the same tablespace or another way around this issue?
Asked
Active
Viewed 1,299 times
0
-
3Bigfile tablespaces can only have one file. – Mat May 28 '16 at 06:51
-
If your tables contain LOB type columns, you can move those columns only to a different tablespace. – Alessandro Vecchio May 28 '16 at 20:57
-
That is why I was looking for an alternative. I do not have any LOB datatypes as of now. Is there any way to move the tablespace data file to another drive or something along those lines? – Smart_Oracle May 30 '16 at 06:40
-
You can move a tablespace to another drive with `ALTER DATABASE MOVE DATAFILE`, just check the documentation. Without knowing what kind of segments are inside the tablespace, I can give you only general advices to save space. You can empty the recycle bin, use compression, if it is the case, migrate indexes and adopt partitioned tables and split them across multiple tablespacce. That's all that comes to my mind right now. – Alessandro Vecchio May 30 '16 at 19:39
-
Thank you! I'll give it a try. – Smart_Oracle May 31 '16 at 06:05