Tagged Questions

StarTeam is a combined version control system and defect tracking solution made by Borland (previously owned by StarBase). Additional Links: Borland StarTeam Documentation

learn more… | top users | synonyms

8
votes
5answers
357 views

Advantages of NOT versioning .dproj

I read in a blog about Version Insight (http://www.delphifeeds.com/go/s/77066) that (among others) JCL doesn't have its .dproj files under version control and i was wondering what the advantages of ...
7
votes
1answer
853 views

Starteam to X migration? (where X is one of: svn/git/hg/bzr …)

Is there a tool that can migrate Starteam to svn or git or any other modern/decent source control system? I'm thinking of something along the lines of how git-svn works; allowing you to use git to ...
4
votes
2answers
171 views

VS 2008 - Star Team and multi project solution?

I have a project which is under source control via Star Team in VS 2008. I added another project to my solution for an installer, configured it, tested it, etc. Now, when I go to check in my ...
4
votes
1answer
265 views

C# StarTeam SDK

I'm playing around with the StarTeam SDK at work, and whilst I can connect to our server, when it is connected, no projects are showing. It gives an exception saying that ...
4
votes
2answers
142 views

Avoiding missing views in ASP.NET MVC

When testing an ASP.NET MVC 2 application I hit a problem when a view could not be located. Looking at the code I realised that the aspx file for the view had not been added to the source control ...
4
votes
2answers
781 views

In starteam, how can I find out when a file was deleted, and by whom?

We have a small team running StarTeam. A constant source of frustration and problems is the handling of deleted files in StarTeam. It is obvious that Starteam keeps track of deleted files internally, ...
4
votes
4answers
3k views

Strategy to migrate from StarTeam 5 to Subversion?

I need to migrate a large project from StarTeam 5 to Subversion, and I'd like to keep snapshots of (at least) 5-10 of the major releases. I've considered the following: Manual or scripted ...
4
votes
3answers
444 views

CruiseControl + Starteam: not picking up all files

Our CruiseControl system checks out from starteam. I've noticed that it is sometimes not checking out new versions of files, only added files. Does anyone know why this is?
3
votes
4answers
109 views

Migration from StarTeam to distributed source control

We're currently using StarTeam for our project, and the license is expiring soon. We're looking at moving to Team Foundation Server or something similar, but there's a push (mostly from myself and ...
3
votes
2answers
199 views

PowerBuilder and Visual Studio files in same StarTeam project?

We have a system that is largely written in PowerBuilder 11.5 and we are using a single StarTeam project to hold the source code. Now we are wanting to add some related websites developed in ASP.NET ...
3
votes
1answer
49 views

How to set the “Plan Work” (EstimatedHours) for a Task in StarTeam SDK?

I can't figure out how to set the EstimatedHours property from the StarTeam SDK. The property EstimatedHours is readonly, and I can't figure out any way to set the value from the SDK, though through ...
3
votes
1answer
114 views

How to inject “history” into a subversion repository?

We're migrating from StarTeam (aka "the horrible") to SubVersion (aka "the alleged great"). We've already migrated the files by doing a "dumb" commit to all files and started working on the SubVersion ...
3
votes
3answers
284 views

What should be the “trunk” development, or release

I have the unfortunate opportunity of source control via Borland's StarTeam. It unfortunately does very few things well, and one supreme weakness is its view management. I love SVN and come from an ...
3
votes
4answers
443 views

Parsing StarTeam command line client output

I'm trying to write a Perl script that will parse the output of the stcmd.exe (the StarTeam command line client) hist command. I'm getting the history for every file in a view and the output looks ...
3
votes
3answers
1k views

How to get the labeled code from StarTeam(stcmd.exe)?

I want to get the code under particular label from StarTeam strictly using command line. I have come to know that I can use "stcmd.exe" for the same. But I am unable to find the particular command to ...
3
votes
5answers
5k views

Create a “label” in subversion indicating what files should be in the next release

I've been using StarTeam for version control for some time, but am moving to Subversion. I've been reading the Subversion book and there seems to one major feature that StarTeam has that Subversion ...
3
votes
4answers
2k views

Starteam “Unknown” files

We have a StarTeam view that has two files that are in the "Unknown" state – does anyone understand why they are in this state and/or how we can get them out of the state? Is deleting them and ...
3
votes
3answers
471 views

Starteam 2005 COM API

Has anyone worked with the StarTeam COM API (Specifically, intergrating with C#). I need to write a helper function that returns a directory structure out of Starteam, but all I've been able to ...
2
votes
1answer
188 views

StarTeam and Visual Studio 2010 Integration

I was searching for a plug-in that will integrate with StarTeam and allow user to check-in and check-out files directly through Visual Studio 2010 environment. I did found a StarTeam Visual Studio ...
2
votes
1answer
56 views

Starteam Recursive Add

This should be an RTFM question, but I just can't find it! I just started using StarTeam at work and I'm trying to initialize a repository that I have been managing with Git. I've managed to add the ...
2
votes
1answer
67 views

StarTeam - ignoring local file changes

If we initially check-in a configuration-type file as an item into a StarTeam project, is it possible to then have the file checked-out by clients where, any local changes to the file are subsequently ...
2
votes
1answer
165 views

Finding past revisions of files in StarTeam w/ .NET SDK / C#

I'm trying to write a C# program to compare files from different revisions in a StarTeam repository (see if there have been any changes between the current version of a file and a given prior ...
2
votes
1answer
293 views

Subversion concepts for a StarTeam user

I would like to know how to do the following common StarTeam tasks in SVN 1. How to update a tag to include a newer revision of just 1 file? After creating a View Label in StarTeam (similiar to a ...
2
votes
2answers
723 views

StarTeam - checkout file of a specific revision using stcmd

Is it possible to checkout file of a specific revision using stcmd? I want to checkout all (or some) history of a specific file.
2
votes
3answers
298 views

Speed up login to StarTeam?

I'm working on a program that accesses StarTeam using the StarTeam SDK for .NET. And I've noticed that it takes about 10 seconds to login to the StarTeam server. I'm wondering if there's anything I ...
2
votes
0answers
310 views

“Working folder's changing” feature for StarTeam folder's object

I need to reproduce partly a behavior of StarTeam 2005 client's dialog box "Folder Properties" in my tool based on StarTeam 2005 SDK. Unfortunately, when I has tried to implement "working folder's ...
2
votes
1answer
296 views

Renaming file & check-in to Starteam within same commit?

I have to rename a file. When renaming the file I have to update another file that refers to it, otherwise I will break the build. The problem is when trying to do this change in Starteam. The file ...
2
votes
2answers
253 views

Checkin Notification with StarTeam

Does someone know how we can have Starteam send email notifications when a check in occurs? We are using Starteam 2006 R2.
2
votes
3answers
2k views

Eclipse StarTeam plugin?

Are there any decent plugin's for Eclipse that allow integration with StarTeam? I miss the 'tight' intergration I used to have with CVS/SVN.
2
votes
0answers
119 views

Is there a way to view history on an entire folder in Borland StarTeam?

I'm trying to obtain an aggregate checkin history for an entire folder but haven't figured out a way to do this using the StarTeam client. I'm using StarTeam 2005 R2. Is this supported in a later ...
2
votes
1answer
2k views

StarTeam view/branching approach

We're looking for some advice on our StarTeam configuration. We have a project that is used by two main customers. We share a common code base but we want to be able to do development for one ...
2
votes
6answers
1k views

Version control server performance when using CruiseControl (StarTeam or alternatives)

We are using CruiseControl with a StarTeam server and having problems with the StarTeam server crashing. We are wondering if we are hitting the server too hard. Across 3 CruiseControl machines and a ...
2
votes
3answers
315 views

Is there an easy way to do a complete migration from CVS to StarTeam?

I'm currently maintaining a CVS repository for source control. There is a push afoot to move to StarTeam. It has already been purchased and is a corporate standard for most projects. I was told by ...
2
votes
4answers
174 views

Automating DB Object Migrations from Source Control

I'm looking for some "Best Practices" for automating the deployment of Stored Procedures/Views/Functions/Table changes from source control. I'm using StarTeam & ANT so the labeling is taken care ...
2
votes
4answers
600 views

Override Working Folder with Starteam/CruiseControl

For some reason, I can't seem to get CruiseControl.net to checkout code to anywhere but the starteam working folder for a specificed view. I've tried both overrideViewWorkingDir and ...
2
votes
5answers
400 views

How can I merge my files when the folder structure has changed using Borland StarTeam?

I'm in the process of refactoring some code which includes moving folders around, and I would like to regularly merge to keep things current. What is the best way to merge after I've moved folders ...
1
vote
0answers
27 views

Automate build of Access 2007 database

As part of our build process we have to create an Access ACCDB (2007) database. The database constitutes the current front-end of our application and must be (for other reasons) build during the ...
1
vote
0answers
15 views

Display all checked out files in StarTeam 2005R2

Is there a way to display all checked out files across multiple projects in StarTeam 2005R2?
1
vote
0answers
36 views

How to execute 'stcmd' to check out files from StarTeam with the password containing '@'

I have two little questions about checking out files from StarTeam: According to the StarTeam website help doc, ...
1
vote
1answer
15 views

Managing Profiles StarTeam 2008

We are using star team to manage a repository with code bases both in UNIX and in windows. The way we used to manage such codebases with Star Team 2005 was by keeping a profile for windows and UNIX. ...
1
vote
1answer
56 views

Check out files from Starteam (5.1) but ignore the specified working folder

This question is specific to Starteam version 5.1. How do I export the most recent version of every file in a Starteam project so that the files end up in a directory structure that matches the ...
1
vote
3answers
143 views

Starteam to SVN migration, alternatives to Polarion?

Does anyone know of an alternative to Polarion to migrate Starteam (2006v2) to SVN? Our source alone is 10GB, not including all the revision history. Whenever I run Polarion svnimporter, i get a "Java ...
1
vote
1answer
56 views

Force StarTeam to checkout files with read and write permissions? [closed]

Under "Personal Options", I have the option "Mark unlocked working files read-only" unchecked. Yet, every-time I checkout a file (without locking it), the file is read-only in my working directory. I ...
1
vote
1answer
76 views

Enumerating StarTeam projects via stcmd.exe

Before I get into the nitty-gritty of what I am looking for, I'd like to take a moment and focus on the background so that the big picture will (hopefully) be clear for all of you. I'll start with my ...
1
vote
1answer
43 views

Extra folders created when pulling from source control

I'm trying to get Visual Studio 2010 and StarTeam to play nice but I'm having a little trouble. I create a web site (not a web application) on my pc and add it to source control. Then when my coworker ...
1
vote
0answers
196 views

Getting NoClassDefFoundError when trying to run Hudson Starteam task [closed]

Possible Duplicate: How to configure Jenkins StarTeam plugin? I'm using Hudson 2.0, Solaris 10 and the latest version of the Starteam plugin. I'm trying to run the StarTeam task to ...
1
vote
1answer
43 views

StarTeam: Error during file delta checkout

Every time I try to check out an "Out Of Date" file, I receive the following error: "Error during file delta checkout". If I delete the file in my working directory, the file now appears to be ...
1
vote
1answer
181 views

StarTeam — How do I move files programmatically?

Any StarTeam users out there? I'm using StarTeam 2009, which comes with some client tools, including a command line tool, stcmd.exe. I'm reorganizing a somewhat large Java project containing ...
1
vote
0answers
153 views

StarTeam Report: How to add the Change Request # of a file's last check-in?

I'm trying to create a report in StarTeam. I need it to list the file name, time of the last check-in and the Change Request linked to the file's last check-in. (We tie every check-in to a Change ...
1
vote
1answer
177 views

What search options are available with StarTeam?

Is it possible with the StarTeam Client to find files in the current server/project/view? What about text in files? File properties (locked by, checked in on date, ..., etc)? I'm just starting to use ...

1 2