When IBM i RGZPFM Doesn’t Want To Rebuild Access Paths
July 30, 2014 Hey, Joe
I’m trying to run this Reorganize Physical File (RGZPFM) command to reorganize one of my files while it’s active: RGZPFM FILE(lib_name/file_name) MBR(member_name) RBDACCPTH(*OPTIMIZE) ALWCANCEL(*YES) LOCK(*SHRUPD) But I keep getting this CPF3135 error: CPF3135 - Access path for member &2 already in use. This is not what I anticipated. Am I doing something wrong? –Alan My guess is that your RGZPFM command will complete correctly if you run the command using these parameters: RGZPFM FILE(lib_name/file_name) MBR(member_name) RBDACCPTH(*NO) ALWCANCEL(*YES) LOCK(*SHRUPD) The difference between this command and your command is that the Rebuild Access Paths |