Reason for this issue:
Snapshot
issue occurs when you kill the deployment in middle of deployment or rollback.
To resolve the Above Issue, try the following
steps. Following case explains for Staging(Preview) server.
1. Run the below query on mgmt schema.
select
epub_target.display_name as "Target",
epub_prj_tg_snsht.snapshot_id as "Snapshot id",
epub_project.display_name as "Project name" from
epub_target, epub_project, epub_prj_tg_snsht
where
epub_prj_tg_snsht.project_id in
(select project_id from epub_project where
workspace is not null and
checked_in = '1'
) and
epub_target.target_id = epub_prj_tg_snsht.target_id and
epub_prj_tg_snsht.project_id = epub_project.project_id
order by epub_project.checkin_date desc;
epub_prj_tg_snsht.snapshot_id as "Snapshot id",
epub_project.display_name as "Project name" from
epub_target, epub_project, epub_prj_tg_snsht
where
epub_prj_tg_snsht.project_id in
(select project_id from epub_project where
workspace is not null and
checked_in = '1'
) and
epub_target.target_id = epub_prj_tg_snsht.target_id and
epub_prj_tg_snsht.project_id = epub_project.project_id
order by epub_project.checkin_date desc;
2. Fetch the recent snapshot
for the corresponding Target(Staging or Production)
1 3. Initialise
the same in Deployment Server from dyn/admin of Publishing.
4. Resume the deployment


Please post feedback to improve this blog
ReplyDelete