Main

May 08, 2012

2012-05-11-adefaria

Clearquest

  • Consulted with Venkat on new hook code for Clearquest
  • Described how to properly handle additions to VersionInfo
  • Worked with Kunjal on problem with Email Rules and corrupted queries
  • ...

Platform Tools

  • Modified mps-scm-ec-ab-trigger.pl to parse XML for name value pairs. No more translations! What you say in the XML is what is passed to EC!
  • Got call to EC runProcedure working
  • Investigated build issue caused by missing WinZip Self Extractor on 102
  • ...

DevEnv

  • Got newer Eclipse installed on Linux (/tools/bin/eclipse). Tested out installing plugins (EPIC, etc.). Worked well.
  • Consulted with Dennis Sass Re: Cygwin environment
  • ...

Emergency Firefighting Incidents/Urgent Unplanned Work

  • Bug in Email Rules package - debugging with Kunjal
  • ...

Other Tasks

April 11, 2012

Perl::Critic

OK, I'm a nerd and I'm pretty passionate about Perl. But in my defense this is my business and my chosen career - it is what I went to school for way back in the day. So I listen to podcasts about many topics including technology. One podcast I listen to regularly is FLOSS Weekly with Randal Schwartz. Randal wrote Learning Perl among other Perl books and he had on Jeffery Thalhammer who talked about his creation Perl::Critic. For those who may be interested the Perl::Critic episode is here.

The easiest way you can try out Perl::Critic by going to http://www.perlcritic.org/. You can even evaluate your own Perl scripts by using the Choose File and set your severity level. You can start with gentle but I usually do harsh as that's in the middle.

Perl::Critic is a static analyzer that finds inconsistencies and possible errors in your Perl code as well as tries to enforce best practices as written about in Perl Best Practices by Damian Conway. Perl::Critic is implemented as a CPAN module. There is also a command line (/usr/bin/perlcritic) that allows you to run perlcritic on your code from the command line. But the web page is better because it provides links to explanations of why Perl::Critic thinks what it complains about is a problem as well as tells you how to fix it.

Now, of course, critiquing your code is highly subjective and you may not agree with the rational for why Perl::Critic flags this as a problem. Perl::Critic is very tunable - you can set settings in ~/.perlcriticrc to say "We don't want you, Perl::Critic, to flag this as a problem".

If you use Eclipse as your IDE and have EPIC, the Eclipse Perl Integration plugin, and have Cygwin installed with perlcritic installed too, you can configure Eclipse to use Perl::Critic directly in the editor and flag errors as you code which you can then fix.

For example, you can see the little triangle with "!" in it relates to the line in the Problems tab at the bottom which says that I've defined $value but never used it.

February 13, 2012

Using PDSQL to update Clearquest databases

Using PDSQL to update Clearquest databases

Often when you add a new field to a Clearquest database you need to tackle the problem of how to update or set the value on all of your old records. Often specialized scripts are created to say set the new field to some known value in all of the older records by using the Clearquest API. This takes time to write such scripts and it takes time to run because all of the action hook code needs to be executed to validate the record, etc. Often this is needless rechecking of already correct values of all of the fields in the record. Updates of this kind can take literally hours to process large numbers of records and have all of that action hook code run for no particular reason.

There is a utility in C:\Program Files\IBM\RationalSDLC\ClearQuest named pdsql. It provides a command line interface to the database directly which you can use to perform updates of fields in a lightning fast manner. The updating of all defect records setting a new field to say "foo" would take literally hours using the Clearquest API but less than a second or two in pdsql.

Continue reading "Using PDSQL to update Clearquest databases" »

January 26, 2012

Outlook Top Posting

It never ceases to amaze me how poorly business communications are handled and how badly businesses' #1 tool of communication supports, or rather doesn't support, good communication. Case in point:

I believe you are talking about how I use interleaved posting. Wikipedia has a good article on this: Posting Style and I find the following blog posting about Top Posting, convincing:

A: Because we read from top to bottom, left to right.
Q: Why should I start my reply below the quoted text?
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: The lost context.
Q: What makes top-posted replies harder to read than bottom-posted?
A: Yes.
Q: Should I trim down the quoted part of an email to which I'm replying?

Read normally, top to bottom and left to right, this makes little sense. Reading this from the bottom up you get the meaning. How do you guys do it? How do you keep track and parse such long email chains I have no idea!

Unfortunately Outlook does not make this easier. As the Wikipedia article states:

Quoting support in popular mail clients

This widespread policy in business communication [top posting only] made bottom and inline posting so unknown among most users that some of the most popular email programs no longer support the traditional posting style. For example Microsoft Outlook, AOL, and Yahoo! make it difficult or impossible to indicate which part of a message is the quoted original or do not let users insert comments between parts of the original.

Here's how it looks to me:

Which is quite readable. I had tried to help Outlook users by including CSS code in my responses to replicate the quote bars you see above, but somewhere around Outlook 2007 or so Outlook broke it and no longer honors <blockquote type=cite> citations and I gave up.

January 31, 2006

Final MobMM Issues

  • Resolved issue with MsgBox not being executed for the web
  • Still have problem with IE and certain drop down boxes
  • Worked with John Luu to get the web server running on nt-irva-0458. We need to have a database instance created and to move this schema and user databases to that server. Why is the web server in Ivrine when the group is in San Jose?
  • Continue reading "Final MobMM Issues" »

January 30, 2006

MobMM Completion

  • Reached code completion level for MobMM

Continue reading "MobMM Completion" »

January 27, 2006

MobMM email

  • Implemented Email notifications in MobMM

January 26, 2006

More MobMM Progress

  • Separated MobMM to its own Schema Repository
  • Renamed MobileCom -> MobMM
  • Removed Visibility from submission form
  • I've created all Modules and all Submodules but linked only some of them. A lot are owned by Vinod. Try entering a defect with a module of Display Manager and you should see Owner set to "node". Change that to OLG and it should switch to cswilson.
  • Created users as defined above. Gave admin privileges to my userid
  • Created Administrators, Managers and Users groups. My userid and admin are in all three groups. Jean, your user is in the Manager and Users group. Other users are just in the Users group.
  • Gave Dynamic List Admin privileges to Jean and Vinod. This means that you can add/change/delete entries in dynamic lists (Select Edit: Named Lists to manage dynamic lists such as Software_Version)
  • Populated Dynamic lists
  • Created Public Queries for Defects, Modules, Submodules and Module-Submodule Cross Reference.
  • Changes some drop downs to be bigger.

Continue reading "More MobMM Progress" »

January 25, 2006

MobileMultimedia Release

  • Completed a pass of MoblleMultimedia and handed off to Jean for a quick review and input to the next release in the design cycle

Continue reading "MobileMultimedia Release" »

January 24, 2006

PQA Email issue/Mobile Multimedia

  • Contacted Rational regarding PQA email problem
  • Changed Mobile Multimedia to set default owner, assigned date
  • Fixed MM to handle Module/Submodule relationships

Continue reading "PQA Email issue/Mobile Multimedia" »

January 20, 2006

CQ Web Email Problem

  • Worked on problem with CQ Web sending email

Continue reading "CQ Web Email Problem" »

January 17, 2006

Mobile Multimedia Clearquest Design

  • Created initial mock up of MM CQ

Continue reading "Mobile Multimedia Clearquest Design" »

January 16, 2006

PQA CDO.Message

  • Updated PQA to use CDO.Message to fix date/timestamp problem
  • Researched Clearquest: Help problem with Rational and came up with a fix. Turns out that the original solution I sent may have solved the problem as the problem exists on the Citrix server which is probably too tightly configured security-wise. Wish the user would have told me about that to start with...

January 13, 2006

Perl test

  • Ray wanted an easy/medium/hard Perl test

Continue reading "Perl test" »

January 12, 2006

Clearcase Merging/CQ Time Stamp problem/CQ Help problem

  • Consulted with Ann Wisotzky regarding Clearcase Merging
  • Investigated email time stamp problem with PQA
  • Worked with Rational regarding Clearquest: Help problem

January 11, 2006

Stglocs/replicating perftest

  • Investigated stglocs
  • Replicated /vobs/perftest and set up log_activity, stats and pulse for all of:
    • ccase-rmna-3
    • ccase-sj1-1
    • ccase-sj1-2
    • ccase-irva-2

Continue reading "Stglocs/replicating perftest" »

January 10, 2006

Getting log_activity/stats and pulse to work

  • Re-wrote most Clearcase modules to utilize Clearcase::cleartool and for Clearcase.pm to work out where cleartool resides
  • Changed Mail.pm to only attempt to use MIME:Entity and others if html is requested
  • Got pulse working for /vobs/preftest. If the vob is not present it simply logs that and exists

January 09, 2006

Mail.pm/pulse

  • Worked on Mail.pm
  • Incorporated Mail.pm into Logger
  • Created Element.pm
  • Added code to pulse to mkelem and rmelem

January 06, 2006

Mail.pm/ccase-rman-3 crisis

  • Further developed Mail.pm. Added code to send HTML mail. HTML mail not completely working yet
  • Worked on problems with ccase-rmna-3
  • Assisted Ray in some Perl coding issues

January 05, 2006

Mail.pm/CQ Web

  • Developed Mail.pm module
  • Working with Rational about CQ Web hang problem

January 04, 2006

More module coding

  • Standardized some modules a little bit
  • Added much more functionality to Clearcase modules and tied that into stats and log_activity
  • Changed the startup of many scripts to be more standard
  • Implemented much more functionality in stats

Continue reading "More module coding" »

January 03, 2006

More Clearcase modules

  • Started creating a Clearcase.pm module to hold site specific Clearcase information
  • Created OSDep.pm
  • Worked with the Help Desk to attempt to fix problem with Windows Update

January 02, 2006

cvsims/Vobs

  • Documented set up of CVS SCP connector
  • Added more functionality to Clearcase::Vob
  • Coded up a preliminary stats script

Continue reading "cvsims/Vobs" »

December 30, 2005

pulse

  • Added some functionality to Clearcase::Vob and Clearcase::View
  • Coded a pulse script which performs a pulse checking by checking out and in a file 10 times. If the pulse takes more than 60 seconds then an error is reported

Continue reading "pulse" »

December 29, 2005

Clearcase Modules/log_activity

  • Worked on creating several Clearcase modules: Clearcase::Vobs, Clearcase:Vob and Clearcase::View
  • Updated log_activity to use new Clearcase modules

Continue reading "Clearcase Modules/log_activity" »

December 28, 2005

log_activity/create_dev_snapview.pl

  • Worked on log_activity Perl script
  • Investigated issue with R/O components for create_dev_snapview.pl

Continue reading "log_activity/create_dev_snapview.pl" »

December 27, 2005

log_checkins

  • Started investigating a log_checkins procedure
  • Worked on Andrew's create_dev_snapview.pl

December 23, 2005

Clearquest Demo/CVSIMS

  • Gave demonstration of Clearquest to Jene Fan and her group. Went pretty well
  • Investigating issue where cvsims seems to be called when one cvs adds a directory

December 22, 2005

Clearquest Demo/p4test/cvsims

  • Set up a test bugs database for a demo
  • Set up p4test as a temp server for PQA on production data
  • Further coding of cvsims and integration into CVS

Continue reading "Clearquest Demo/p4test/cvsims" »

December 21, 2005

Bugs/Integrating cvsims/PQA problems

  • Created test bugs database for Clearquest evaluation
  • Worked on integrating cvsims into CVS
  • PQA web problems are surfacing. Need to set up newer web server

December 20, 2005

cvsims/SCM global area/ccase-rmna-4 issues

  • Changed cvsims to use new global area
  • Created document for CVS/IMS Connector
  • Created new global area
  • Working on another users problems with accessing ccase-rmna-4

Continue reading "cvsims/SCM global area/ccase-rmna-4 issues" »

December 19, 2005

BinRebase/ccase-rmna-4 problems

  • BinRebase may need to use findmerge instead of rebase
  • Worked with Shivdutt re: satellite San Jose/Richmond user

Continue reading "BinRebase/ccase-rmna-4 problems" »

December 15, 2005

CQ Web/Rebase/GNATS Access

  • Set up GNATS access for a user
  • Helped Vinh with issues regarding old CQ Web and a bug that it has
  • Assisted a few users with resolving Evil Twin problems
  • More fully documented how to resolve Evil Twin problems by merging the parent directory
  • Investigated implementing the other half of BinMerge where we use rebase instead of find merge

Continue reading "CQ Web/Rebase/GNATS Access" »

December 14, 2005

get_views_for_stream/create_dev_snapview.pl

  • Found and fixed bug in get_views_for_stream
  • Fixed bug in create_dev_snapview.pl::ParseBaselines

Continue reading "get_views_for_stream/create_dev_snapview.pl" »

December 13, 2005

cvsims

  • Updated triggers on ccase-rmna-3 as some new vobs seem to lack them
  • Updated cvsims to parse input and handle both -pre and -post operations
  • Had problems with CVS admin files

Continue reading "cvsims" »

December 12, 2005

mktriggers/CVS

  • Worked with Shivdutt on clearfsimport
  • Updated mktriggers to use fully qualified paths to Perl
  • Added stuff to CVS area - have not committed yet - wanna establish a commitinfo script to get an idea of what input is available to commit

December 09, 2005

Stripmime/IMS.pm

  • Changed stripmime to perform logging if -v is present. Also debugged stripmime to the point where it seems to be properly being passed off the queue-pr
  • Implemented IMS.pm - a more Perl-like interface to IMS. Also started implementing cvs_ims to be a connector between CVS <-> IMS

December 08, 2005

Bin Merge updates/GNATS: Another word for "bug"! :-(

  • Worked with David Dinh on getting Clearquest Windows Client on Citrix
  • Updated BinMerge to always draw the merge arrow to the branch we are merging to
  • Fixed BinMerge's PerlTk portion to top the window iniitially
  • Worked with Ravi on Stripmime and GNATS

Continue reading "Bin Merge updates/GNATS: Another word for "bug"! :-(" »

December 07, 2005

BinMerge Module & Perl Issues

  • Changed bin_merge to be a module so that it easier to call from UCMCustom
  • Integrated new BinMerge.pm module into the UCMCustom
  • Added fix to use "\" in get_vob_str
  • Changed UCMCustom to use strict and warnings(we should always use these)
  • Changed UCMCustom to use use instead of require
  • Hunted down bug where UCMCustom undef's $/ (Bad UCMCustom!! Bad!)

Continue reading "BinMerge Module & Perl Issues" »

December 06, 2005

Stripmime/Cleardiffmrg/CharacterSetValidation

  • Fixed stripmime
  • Worked with Shivdutt regarding the cleardiffmrg problem. Turns out to be a leading "/". Shivdutt fixed UCMCustom.pl
  • Turned off character set validation on p4test for PQA. Have not implemented this on production yet

Continue reading "Stripmime/Cleardiffmrg/CharacterSetValidation" »

December 05, 2005

Cleardiffmrg/bin_merge problems

  • Told Andrew about new -reuse_stream option to create_dev_snapview.pl. I have him testing this
  • Worked with Shivdutt and IBM/Rational on problem with cleardiffmrg. I think I've worked this out to the leading "/" that UCMCustom users.
  • Finished stripmime - Ray testing it - created stripmimed that logs to /tmp.
  • Worked at getting bin_merge integrated into UCMCustom.pl
  • Implemented quick script (topper) to try to catch the hanging problem with ccase-rmna-3

Continue reading "Cleardiffmrg/bin_merge problems" »

December 01, 2005

Code Page/create_dev_snapview.pl

  • Researched further code page issues
  • Added Everest (Isreal0 team members to PQA
  • Added -reuse_stream parm to create_dev_snapview.pl
  • Handed a preliminary copy of bin_merge to Jennifer
  • Submitted defect to IBM/Rational regarding CharacterSetValidation and Code Pages

Continue reading "Code Page/create_dev_snapview.pl" »

November 30, 2005

Stgloc/Code Page

  • Tried to figure out why -stgloc is not working in Richmond nor why I can't seem to create a view in a share that is in an area where .stgloc exists
  • Worked with Vin Ton and Rob Swindell regarding a problem with CQ Web and Code Pages
  • Worked on other code page issues
  • Added CharacterSetValidation package to PQA

Continue reading "Stgloc/Code Page" »

November 29, 2005

create_dev_snapview

  • Updated create_dev_snapview to support -tag, -dir and -load_rules.

November 28, 2005

bin_merge/create_snapshot_view/PQA

  • Investigating issues with bin_merge
  • Discussed with Andrew about extending script to create snapshot views
  • Worked with two people who have had issues with accessing new PQA Clearquest database

Continue reading "bin_merge/create_snapshot_view/PQA" »

November 23, 2005

Forking in PerlTk

  • Continued to help several users with connecting to the new Controller Clearquest Database for Vinh's users
  • Added Version Tree button to the bin_merge prompt dialog box.
  • Resolved problem with forking from PerlTk

Continue reading "Forking in PerlTk" »

November 21, 2005

Remaining PQA Issues/GNATS stripmime

  • Worked with Vinh's group and adjusting to life with the new Controller CQ Database. Wrote instructions for how to unsubscribe to some Broadcom email distribution lists
  • Documented how to install the new Clearquest Client Software
  • Coded stripmime filter for GNATS.

Continue reading "Remaining PQA Issues/GNATS stripmime" »

November 17, 2005

create_dev_snapview.pl

  • Looked into create_dev_snapview.pl.
  • Tested speeds of FTP vs. SMB

Continue reading "create_dev_snapview.pl" »

November 16, 2005

PerlTk

  • Continued work on clearprompt replacement in PerlTk.

November 15, 2005

PerlTK/Bug in pqamerge

  • Experimented with PerlTK in an effort to come up with a better Clearprompt for bin_merge
  • Vinh found a bug in pqamerge where Prod: Open_Close_Status was not getting transferred to Cont: Active_Deferred_Status

November 04, 2005

bin_merge

  • Almost code complete on bin_merge. Need to integrate this into UCMCustom
  • Emailed IBM support regarding Clearquest Web URLs

November 03, 2005

bin_merge/JRE

  • Resolved a ticket regarding Clearquest Web (IIS) and not displaying properly. Documented under Clearquest: Getting the right JRE for Clearquest Web
  • Started coding bin_merge

October 25, 2005

Daylight Savings Time & Clearcase

  • Looked into potential problems with DST and Clearcase
  • Investigated problem with Deliver between Projects
  • Investigated performance problems on Windows Build machines in San Diego

Continue reading "Daylight Savings Time & Clearcase" »

October 08, 2005

SJ VOB Move

The VOB move for San Jose went fairly well. Without the normal user load on the servers the dumping and loading process was much quicker. I've attached Jennifer's spread sheet and updated it to reflect which vobs we've moved and how long it took as well as what sort of reduction we got in the DB sizes. All moved vobs are tagged on ccase-sj1-7 and Clearcase is still off on ccase-sj1-1 - for now. We will turn that on before Jennifer and Chin start with their testing. Yet left to do is the Multisite chreplica and re instituting of the cronjobs, etc. - nothing that would imped users Monday morning as well as clean up of backup areas assuming we reach a go on the go/no go tomorrow afternoon.

I've also attached a tar image of the log files that we managed to capture for the dump and load process.

October 07, 2005

ctmerge

  • Started incorporating ctmerge and other old Clearcase/Clearquest oriented scripts in to adm vob
  • Investigated some Multisite issues WRT this SJ VOB move
  • Working with Shivdutt on copying VOB storage over to /projects/cc-test

October 04, 2005

rgy_swtichover/Triggers

  • Responded to IBM Rational Support regarding rgy_switchover
  • Added prohibit_operation to trigger list
  • Instituted the evil twin trigger
  • Obtained Chris' CQ merge scripts and started looking in to that
  • Went back to analyzing the PQA CQ data for invalid characters

Continue reading "rgy_swtichover/Triggers" »

October 03, 2005

SJ Vob move/Triggers

  • Discussed how to best handle the upcomming SJ vob move
  • Added handling for UCMOBJECT triggers and the few additional triggers on the docs vob

Continue reading "SJ Vob move/Triggers" »

September 30, 2005

More study of Rebase project to parent & Deliver between projects

  • Studied Rebase project to parent in depth
  • Studied Deliver between projects in depth
  • Discussed SJ vob move with Jennifer and Chini
  • Met with Phil regarding merge problem - turns out to be no problem

Continue reading "More study of Rebase project to parent & Deliver between projects" »

September 29, 2005

UCM: Rebase project to parent & Deliver between projects

  • Created UCM environment where I can rebase and deliver
  • Reproduced binary merge problem in both rebase and deliver mode
  • Studied UCMCustom for Rebase project to parent & Deliver between projects functions. The former uses cleartool rebase while the later does not use deliver in the classic UCM sense

September 28, 2005

Clearcase Deliver problem

  • Helped Darren Edamura with a Clearcase problem
  • Started looking into Binary Merge problem
  • Added FixChar subroutine to CheckCodePage

Continue reading "Clearcase Deliver problem" »

September 27, 2005

Code Page/rgy_switchover

  • Worked more on detecting and report invalid ASCII characters in PQA databases
  • Working with IBM Rational Support regarding rgy_switchover

Continue reading "Code Page/rgy_switchover" »

September 26, 2005

Clearquest Franchise/PQA Invalid ASCII characters

  • Discussed SJ/Irvine migration
  • Drew up Clearquest Franchise plan
  • Modifed CheckCodePage.pl to show the invalid characters in a word context
  • Investigating Clearquest Data Code Pages

Continue reading "Clearquest Franchise/PQA Invalid ASCII characters" »

September 25, 2005

Triggers

  • Worked on mktriggers script to mktriggers for all regions, all vobs

Continue reading "Triggers" »

September 21, 2005

SJ/Irvine Triggers/Sync lock problem/rgy_backup

  • Tried to help Arun in Bangalore to be able to create views
  • Investigated trigger set up for SJ/Irvine
  • Investigated relocate sync_locked problem

Continue reading "SJ/Irvine Triggers/Sync lock problem/rgy_backup" »

September 16, 2005

Evil Twin/Performance

  • Implemented Evil Twin trigger. Have not yet tested nor installed trigger yet
  • Meeting with Naga Re:
    • Binary Merge problem
    • RM_EMPTY_BRANCH/EVIL_TWIN triggers
    • Lock project problem
  • Reviewing both Philip and Chin's performance testing
  • Struggling with Cisco VPN client at home!

Continue reading "Evil Twin/Performance" »

September 15, 2005

Binary Merge/CVS/Clearquest Web

  • Inveistigated binary merge problem
  • Worked with Mukund regarding CVS access
  • Helped Shivdutt with a Clearquest Web problem. User reports that Clearquest Web not working in IE! Suspect the problem is due to configuration issues, specifically JRE. Did some research and sent URLs to user

Continue reading "Binary Merge/CVS/Clearquest Web" »

September 14, 2005

CQ/Triggers/Binary merge/CVS

  • Met with Chris Rumf regarding Clearquest and int impending upgrade/merge of DBs. Chris told us of his trials and tribulations with a 3 month project to merge CQ databases and move them to San Diego.
  • Fixed mktriggers to properly specify the path for the trigger script in both Windows and Unix implementations.
  • Worked with Shivdutt to try to reproduce the problems with merging binary files.
  • I was assigned a ticket to give a user CVS repository access. I still do not have proper login access to Irvine nor do I have permissions to perform this task

Continue reading "CQ/Triggers/Binary merge/CVS" »

September 13, 2005

Remedy/Irvine Access/P4 ticket

  • Finally got Remedy access. Turns out I had it all along just my username was ADEFARIA instead of adefaria!
  • Looked into P4 ticket. I am unable to perform the action because I don't have a login to Irvine. P4 stuff gets performed in Irvine and I don't have an account there. Actually I have an account but didn't know the password. Actually I figured out the password - it was my initial password when I came to Broadcom and was never set. The Help desk had me set my password in the beginning but that was in the San Jose domain. I've now set it for Irvine too. There are two problems with my Linux login:
    1. In Irvine I have no home directory! As a result I cannot create ~/public_html and write web pages as well as I cannot set up my startup scripts, etc. I put in a ticket for this. Hopefully they will set up Irvine like San Jose in that my home directory will be share amoungst all three areas.
    2. My default shell is (yuck) csh! I asked for that to be changed to bash.
    3. Worked with Shivdutt on disk space problem on ccase-rmna-3
    4. Added RM_EMPTY_BRANCH trigger to vobs on ccase-rmna-3
    5. Investigating other triggers to include them in mktriggers.pl

Continue reading "Remedy/Irvine Access/P4 ticket" »

September 12, 2005

Backup Registry Server/Triggers

  • Investigated how to setup, configure and failover Clearcase backup registry
  • Working with Shivdutt to set up new Clearquest server software
  • Ported mktriggers.pl and RemoveEmptyBranch.pl. Added RM_EMPTY_BRANCH to vobs on ccase-rmna-1

Continue reading "Backup Registry Server/Triggers" »

September 09, 2005

Clearcase Support/New Clearquest setup

  • Investigating check_full_baseline routine and why it is necessary
  • Got access to Clearcase storage areas
  • Attempting to set up environment to reproduce check_full_baseline problem
  • Attended Clearcase World Wide Support meeting
  • Attended Plan for ClearQuest meeting

September 07, 2005

CC/CQ and other setup issues

  • Installed Clearcase and Clearquest on my system. CC Doctor complains that CQ is old
  • Worked with Shivdutt creating new component and the proper parent/child relationships
  • Mainly setting up my environment today