How do I delete check-outs from a particular view in clearcase?











up vote
1
down vote

favorite
1












I have Rational ClearCase v7.1.2.13



I need to delete certain checkouts from a view as these check-outs are reserved and the user has gone for a vacation.



Please help me.










share|improve this question
























  • www-01.ibm.com/support/docview.wss?uid=swg21129391
    – mstbaum
    Mar 20 '15 at 14:35















up vote
1
down vote

favorite
1












I have Rational ClearCase v7.1.2.13



I need to delete certain checkouts from a view as these check-outs are reserved and the user has gone for a vacation.



Please help me.










share|improve this question
























  • www-01.ibm.com/support/docview.wss?uid=swg21129391
    – mstbaum
    Mar 20 '15 at 14:35













up vote
1
down vote

favorite
1









up vote
1
down vote

favorite
1






1





I have Rational ClearCase v7.1.2.13



I need to delete certain checkouts from a view as these check-outs are reserved and the user has gone for a vacation.



Please help me.










share|improve this question















I have Rational ClearCase v7.1.2.13



I need to delete certain checkouts from a view as these check-outs are reserved and the user has gone for a vacation.



Please help me.







clearcase






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 22 at 14:01









Sneftel

23.5k64077




23.5k64077










asked Mar 20 '15 at 14:31









user3437212

1201112




1201112












  • www-01.ibm.com/support/docview.wss?uid=swg21129391
    – mstbaum
    Mar 20 '15 at 14:35


















  • www-01.ibm.com/support/docview.wss?uid=swg21129391
    – mstbaum
    Mar 20 '15 at 14:35
















www-01.ibm.com/support/docview.wss?uid=swg21129391
– mstbaum
Mar 20 '15 at 14:35




www-01.ibm.com/support/docview.wss?uid=swg21129391
– mstbaum
Mar 20 '15 at 14:35












1 Answer
1






active

oldest

votes

















up vote
0
down vote



accepted










The easiest to do is to "unregister" the user's checkouts:



cleartool descr -l vob:myVob
# get the uuid of the user's view from the description of the vob

cleartool mount myVob
cd m:mynewViewmyVob
cleartool rmview -force -uuid old_view_uuid


That will not modify anything in the user's views: the files are still being modified, but they won't be considered as checked out.

Instead, they will be "hijacked" (identified in snapshot view) or "eclipsed" (dynamic view).



The other option (put a reserved checkout as unreserved) is rarely possible, as it require access to the view as well as elevated privileges.






share|improve this answer























  • Is it possible to re-register the view? Or is there any other we to do this other than unregistering the view?
    – user3437212
    Mar 20 '15 at 15:24












  • @user3437212 the view isn't unregistered: only the checkout files are: the user will have to checkout them again (again, the file themselves are not modified in any way, they just are no longer considered as checked out)
    – VonC
    Mar 20 '15 at 15:25










  • but the command 'rmview' looks like unregistering the view :)
    – user3437212
    Mar 20 '15 at 15:36










  • @user3437212 not in this case: it does not unregister the view: it only removes any reference of the view (the checkout files) from the vob where you are executing the command. The view is still there and still works.
    – VonC
    Mar 20 '15 at 15:37












  • Big THANKS! its working
    – user3437212
    Mar 20 '15 at 15:39











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f29168978%2fhow-do-i-delete-check-outs-from-a-particular-view-in-clearcase%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
0
down vote



accepted










The easiest to do is to "unregister" the user's checkouts:



cleartool descr -l vob:myVob
# get the uuid of the user's view from the description of the vob

cleartool mount myVob
cd m:mynewViewmyVob
cleartool rmview -force -uuid old_view_uuid


That will not modify anything in the user's views: the files are still being modified, but they won't be considered as checked out.

Instead, they will be "hijacked" (identified in snapshot view) or "eclipsed" (dynamic view).



The other option (put a reserved checkout as unreserved) is rarely possible, as it require access to the view as well as elevated privileges.






share|improve this answer























  • Is it possible to re-register the view? Or is there any other we to do this other than unregistering the view?
    – user3437212
    Mar 20 '15 at 15:24












  • @user3437212 the view isn't unregistered: only the checkout files are: the user will have to checkout them again (again, the file themselves are not modified in any way, they just are no longer considered as checked out)
    – VonC
    Mar 20 '15 at 15:25










  • but the command 'rmview' looks like unregistering the view :)
    – user3437212
    Mar 20 '15 at 15:36










  • @user3437212 not in this case: it does not unregister the view: it only removes any reference of the view (the checkout files) from the vob where you are executing the command. The view is still there and still works.
    – VonC
    Mar 20 '15 at 15:37












  • Big THANKS! its working
    – user3437212
    Mar 20 '15 at 15:39















up vote
0
down vote



accepted










The easiest to do is to "unregister" the user's checkouts:



cleartool descr -l vob:myVob
# get the uuid of the user's view from the description of the vob

cleartool mount myVob
cd m:mynewViewmyVob
cleartool rmview -force -uuid old_view_uuid


That will not modify anything in the user's views: the files are still being modified, but they won't be considered as checked out.

Instead, they will be "hijacked" (identified in snapshot view) or "eclipsed" (dynamic view).



The other option (put a reserved checkout as unreserved) is rarely possible, as it require access to the view as well as elevated privileges.






share|improve this answer























  • Is it possible to re-register the view? Or is there any other we to do this other than unregistering the view?
    – user3437212
    Mar 20 '15 at 15:24












  • @user3437212 the view isn't unregistered: only the checkout files are: the user will have to checkout them again (again, the file themselves are not modified in any way, they just are no longer considered as checked out)
    – VonC
    Mar 20 '15 at 15:25










  • but the command 'rmview' looks like unregistering the view :)
    – user3437212
    Mar 20 '15 at 15:36










  • @user3437212 not in this case: it does not unregister the view: it only removes any reference of the view (the checkout files) from the vob where you are executing the command. The view is still there and still works.
    – VonC
    Mar 20 '15 at 15:37












  • Big THANKS! its working
    – user3437212
    Mar 20 '15 at 15:39













up vote
0
down vote



accepted







up vote
0
down vote



accepted






The easiest to do is to "unregister" the user's checkouts:



cleartool descr -l vob:myVob
# get the uuid of the user's view from the description of the vob

cleartool mount myVob
cd m:mynewViewmyVob
cleartool rmview -force -uuid old_view_uuid


That will not modify anything in the user's views: the files are still being modified, but they won't be considered as checked out.

Instead, they will be "hijacked" (identified in snapshot view) or "eclipsed" (dynamic view).



The other option (put a reserved checkout as unreserved) is rarely possible, as it require access to the view as well as elevated privileges.






share|improve this answer














The easiest to do is to "unregister" the user's checkouts:



cleartool descr -l vob:myVob
# get the uuid of the user's view from the description of the vob

cleartool mount myVob
cd m:mynewViewmyVob
cleartool rmview -force -uuid old_view_uuid


That will not modify anything in the user's views: the files are still being modified, but they won't be considered as checked out.

Instead, they will be "hijacked" (identified in snapshot view) or "eclipsed" (dynamic view).



The other option (put a reserved checkout as unreserved) is rarely possible, as it require access to the view as well as elevated privileges.







share|improve this answer














share|improve this answer



share|improve this answer








edited May 23 '17 at 12:12









Community

11




11










answered Mar 20 '15 at 14:35









VonC

825k28425933127




825k28425933127












  • Is it possible to re-register the view? Or is there any other we to do this other than unregistering the view?
    – user3437212
    Mar 20 '15 at 15:24












  • @user3437212 the view isn't unregistered: only the checkout files are: the user will have to checkout them again (again, the file themselves are not modified in any way, they just are no longer considered as checked out)
    – VonC
    Mar 20 '15 at 15:25










  • but the command 'rmview' looks like unregistering the view :)
    – user3437212
    Mar 20 '15 at 15:36










  • @user3437212 not in this case: it does not unregister the view: it only removes any reference of the view (the checkout files) from the vob where you are executing the command. The view is still there and still works.
    – VonC
    Mar 20 '15 at 15:37












  • Big THANKS! its working
    – user3437212
    Mar 20 '15 at 15:39


















  • Is it possible to re-register the view? Or is there any other we to do this other than unregistering the view?
    – user3437212
    Mar 20 '15 at 15:24












  • @user3437212 the view isn't unregistered: only the checkout files are: the user will have to checkout them again (again, the file themselves are not modified in any way, they just are no longer considered as checked out)
    – VonC
    Mar 20 '15 at 15:25










  • but the command 'rmview' looks like unregistering the view :)
    – user3437212
    Mar 20 '15 at 15:36










  • @user3437212 not in this case: it does not unregister the view: it only removes any reference of the view (the checkout files) from the vob where you are executing the command. The view is still there and still works.
    – VonC
    Mar 20 '15 at 15:37












  • Big THANKS! its working
    – user3437212
    Mar 20 '15 at 15:39
















Is it possible to re-register the view? Or is there any other we to do this other than unregistering the view?
– user3437212
Mar 20 '15 at 15:24






Is it possible to re-register the view? Or is there any other we to do this other than unregistering the view?
– user3437212
Mar 20 '15 at 15:24














@user3437212 the view isn't unregistered: only the checkout files are: the user will have to checkout them again (again, the file themselves are not modified in any way, they just are no longer considered as checked out)
– VonC
Mar 20 '15 at 15:25




@user3437212 the view isn't unregistered: only the checkout files are: the user will have to checkout them again (again, the file themselves are not modified in any way, they just are no longer considered as checked out)
– VonC
Mar 20 '15 at 15:25












but the command 'rmview' looks like unregistering the view :)
– user3437212
Mar 20 '15 at 15:36




but the command 'rmview' looks like unregistering the view :)
– user3437212
Mar 20 '15 at 15:36












@user3437212 not in this case: it does not unregister the view: it only removes any reference of the view (the checkout files) from the vob where you are executing the command. The view is still there and still works.
– VonC
Mar 20 '15 at 15:37






@user3437212 not in this case: it does not unregister the view: it only removes any reference of the view (the checkout files) from the vob where you are executing the command. The view is still there and still works.
– VonC
Mar 20 '15 at 15:37














Big THANKS! its working
– user3437212
Mar 20 '15 at 15:39




Big THANKS! its working
– user3437212
Mar 20 '15 at 15:39


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f29168978%2fhow-do-i-delete-check-outs-from-a-particular-view-in-clearcase%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

What visual should I use to simply compare current year value vs last year in Power BI desktop

Alexandru Averescu

Trompette piccolo