1

I have created a development stream str_Devlopment_stream in the integration stream str_Integration_stream .

While creating a development stream we get an option to create integration and development view, which creates an integration view in the integration stream and development view in the development stream.

Now what had happened with me is, the integration view was not created created properly and development view created completely. Due to this I have removed the integration view mistakenly.

Now I have made my project changes completely in the development view and checked in all the files. Now I am unable to deliver my changes from development stream to integration stream as the integration view is missing.

I would like to know if there is any way I can create this integration view in the respective integration stream so that I can deliver my changes from development stream to integration stream and make a baseline.

m.s.
  • 16,063
  • 7
  • 53
  • 88
niks
  • 1,063
  • 2
  • 9
  • 18

1 Answers1

1

I would like to know if there is any way I can create this integration view in the respective integration stream

Sure, simply use cleartool mkview (here a dynamic view, easier and quicker for merges, instead of a snapshot view)

ct mkview -tag myview -stream MyStream@/vobs:MyPVob /var/tmp/your-username_dynview.vws

See "How to associate a clearcase view with stream or vob?"

Then make sure this new view is used for your cleartool deliver:

cleartool deliver -reset -to your-integration-view

As mentioned in the discussion, the full name of the stream is important, and depends on the syntax for that environment (Windows or Linux)

A simple cleartool lsvob|grep vob name can help to have the right name

Then create the view with (in this case) a unix syntax:

cleartool mkview -tag myintview -stream astream_Integration@/vob/a_pvob /var/tmp/user_astream_int_URL.vws

Finally, initiate the deliver from dev stream to int stream and int view:

cleartool deliver -stream dev_stream@/vob/a_pvob -to myintview -target astream_Integration@/vob/a_pvob
Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • ct mkview -tag myview -stream MyStream@/vobs:MyPVob /var/tmp/your-username_dynview.vws...................... Is this command for creating integration view – niks Oct 20 '15 at 09:52
  • @niks indeed: that is what I describe in http://stackoverflow.com/a/13363572/6309. What ClearCase version are you using? Are you using it on Linux or on Windows? – VonC Oct 20 '15 at 10:22
  • Vonc: I am using in Linux with cleartool. I am able to create the dynamic integration view, currently unable to deliver using the command cleartool deliver -reset -to your-integration-view – niks Oct 20 '15 at 10:28
  • cleartool deliver -stream My_Development_Stream -to My_Intgeration_View -target My_Intgeration_Stream – niks Oct 20 '15 at 10:35
  • @niks do you refer to a stream with its full qualified name? IntStream@/vobs/aPVob? (replacing IntStream and aPVob by an actual stream name and an actual pvob) – VonC Oct 20 '15 at 10:39
  • Let us [continue this discussion in chat](http://chat.stackoverflow.com/rooms/92840/discussion-between-niks-and-vonc). – niks Oct 20 '15 at 10:46