top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to checkout clearcase element already reserved checkouted by othere User that No longer exist?

+5 votes
449 views

I have some element in Clear case which has been reserved checked out by different view Now that view has been deleted Now I need to checkout these element but I am getting Error: "Element already has been checked out by different view " I am not able to un checkout these element Could you please some help?

posted Jan 16, 2014 by Avinash Shukla

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

You need to remove view referenced from each Vobs.

Steps is as follows:

  1. cleartool lsview -long Now you get the uuid.
  2. Then search that uuid to Vob using following command:
    cleartool describe -l vob:
  3. ct rmview -uuid -avobs

Now verify that all referenced has been removed from these Vobs.

Now you can remove that view as well using following command:

cleartool rmview -force -uuid (uuid_of_the_view)

answer Jan 16, 2014 by Amit Kumar Pandey
...