<<Back to Oracle ASM Main Page
SQL> ALTER DISKGROUP DG_NORMAL ADD FILEGROUP FG_PDB1;
ALTER DISKGROUP DG_NORMAL ADD FILEGROUP FG_PDB1
*
ERROR at line 1:
ORA-15381: missing or invalid file group client specifier
SQL> Disconnected from Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production
$ oerr ora 15381
15381, 00000, "missing or invalid file group client specifier"
// *Cause: The command did not specify a valid file group client string.
// *Action: Specify a valid file group client string with alphanumeric
// characters.
//
Reason: Creating a FileGroup without specifying the database clause
Solution: Modify the command to include database clause
SQL> ALTER DISKGROUP DG_NORMAL ADD FILEGROUP FG_PDB1 DATABASE PDB1;
Related Posts
Comments
Post a Comment