Discussions
Categories
- 17.9K All Categories
- 3.4K Industry Applications
- 3.3K Intelligent Advisor
- 63 Insurance
- 536.4K On-Premises Infrastructure
- 138.3K Analytics Software
- 38.6K Application Development Software
- 5.8K Cloud Platform
- 109.5K Database Software
- 17.5K Enterprise Manager
- 8.8K Hardware
- 71.1K Infrastructure Software
- 105.3K Integration
- 41.6K Security Software
Move af PDB datafile not using move since its not a EE database

Fritfaldet
Member Posts: 1 Blue Ribbon
in Multitenant
How do I move or rename a datafile from on disk to another when the PDB is not an Entreprise Edition and the move command is not available?
With af regular database without CDB/PDB I simply put the database in mount condition and then rename the file, and open the database after that like this example:
SHUTDOWN IMMEDIATE
STARTUP MOUNT
alter tablespace BIGTBS1 rename datafile '/oradata/ccbx12c/purchasepdb/sales01.dbf' to '/oradata/ccbx12c/purchasepdb/purchase01.dbf';
alter database open.
But I cant put the PDB in mount condition?
How do I do this?