1

I am trying to create/update view using ClearCase, but while downloading it gets struck and exits without creating the full view.
Is there any workaround to either skip the files and download manually?

Please suggest.

Error

Error Stack

Machavity
  • 30,841
  • 27
  • 92
  • 100
dodger
  • 245
  • 1
  • 3
  • 17

1 Answers1

0

In order to troubleshoot that kind of error message, it can be helpful to reproduce the snapshot view update in command line to see if any other error message pops up (cleartool update).

cd C:\CCSS1\UT_ISR
cleartool update -print -log C:\temp\log.txt .

If it is not a path length issue, check if the view storage path is accessible (the one starting with \\... redacted in the pictures)

Check the characteristics of that view

cd C:\CCSS1\UT_ISR
cleartool lsview -l -full -pro -cview

Check the logs:

cleartool getlog -last 20 view

Check if the issue persists after reboot (in case a process might currently keep an handle on a resource which would then be blocked and updated)

The OP dodger mentions in the comments:

I was able to overcome the problem by downloading files that were only pertinent and rest I skipped.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • I was able to overcome the problem by downloading files that were only pertinent and rest I skipped.Thanks a lot, though... – dodger Jun 23 '16 at 21:58
  • @dodger OK, I have included your workaround in the answer for more visibility. – VonC Jun 23 '16 at 22:01