change-management

What's the right way to manage a release with SVN?

时光总嘲笑我的痴心妄想 提交于 2019-12-21 06:38:26
问题 My last employer had developed an elaborate system which sat on top of SVN to deal with ongoing development: ( change management ) look at bugs/issues and associate them with commits when making the commit by tagging the bug id number and ( release management ) tag items in SVN as part of a specific release based on the bug/issue tracking system. This second part had a workflow associated with it to get sign-off from users/management. Then, when it came time to do the release (usually every

How to implement “get latests changed items” with ADO.NET Data Services?

为君一笑 提交于 2019-12-08 11:59:05
问题 Lets say I have a lists of entities (for example, a list of TODO items) that more than one user can change, delete from and add to at the same time. So to maintane a synchronized listed between all the clients, I want each client (AJAX based) to ask for changes every xx seconds. Since the list can get veeery long, I do not want to do a full request each time, but only ask for the changed items (items can be updated, deleted or new). Is it possible with ADO.NET Data Services? If so, how do I

What is the best way to handle change management? [closed]

我的梦境 提交于 2019-12-07 05:04:42
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 8 years ago . My organization's main project went live on Monday. That was my third day here. Now that I've been here almost a week, I'm tasked with creating a change management plan for the maintenance of the application and preparation for phase 2, which will commence "someday." We're a Microsoft shop but open-minded. I'm

What is the best way to handle change management? [closed]

北城以北 提交于 2019-12-05 10:33:12
My organization's main project went live on Monday. That was my third day here. Now that I've been here almost a week, I'm tasked with creating a change management plan for the maintenance of the application and preparation for phase 2, which will commence "someday." We're a Microsoft shop but open-minded. I'm looking for some suggestions on CM techniques and especially tools that will help with this. I'm familiar with ITIL and I've been considering how its concept of CM could apply to this project, but admittedly this one is a lot smaller than I'm used to (< 100 users versus thousands). I'm

Are there any pitfalls / things you need to know when changing from MyISAM to InnoDB

China☆狼群 提交于 2019-12-03 05:19:20
问题 One of my projects use the MyISAM engine in MySQL, but I'm considering changing it to InnoDB as I need transaction support here and there. What should I look at or consider before doing this? Can I just change the engine, or should the data be prepared for it? 回答1: Yes absolutely, there are many things, you should test your application extremely thoroughly: Transactions can deadlock and need to be repeated. This is the case (in some circumstances) even with an autocommitted transaction which

Tracking changes in a SQL server 2005 database

夙愿已清 提交于 2019-11-30 04:12:07
I have been tasked with developing a solution that tracks changes to a database. For updates I need to capture: date of update old value new value field affected person doing change record id table record is in For deletes: date of delete person doing delete The title/description/id of record deleted. The tables I am tracking changes on all have a title or description field. I'd like to capture this before the record is deleted. table record was in For inserts: date of insert person doing change record id table record is in I've thought of a few ways to do this: I am using stored procedures

Tracking changes in a SQL server 2005 database

不羁的心 提交于 2019-11-29 01:01:30
问题 I have been tasked with developing a solution that tracks changes to a database. For updates I need to capture: date of update old value new value field affected person doing change record id table record is in For deletes: date of delete person doing delete The title/description/id of record deleted. The tables I am tracking changes on all have a title or description field. I'd like to capture this before the record is deleted. table record was in For inserts: date of insert person doing

Mercurial cherry picking changes for commit

梦想与她 提交于 2019-11-27 06:43:29
Say, I made many changes to my code and only need to commit a few of those changes. Is there a way to do it in mercurial? I know that darcs has a feature like this one. I know hg transplant can do this between branches, but I need something like this for committing code in the present branch and not when adding change sets from some other branch. Kurt Schelfthout MQ as Chad mentioned are one way. There's also more lightweight solutions: Record extension which works roughly the same way as darcs record. It's distributed with mercurial. Shelve extension which allows you to "shelve" certain

Mercurial cherry picking changes for commit

会有一股神秘感。 提交于 2019-11-26 12:08:21
问题 Say, I made many changes to my code and only need to commit a few of those changes. Is there a way to do it in mercurial? I know that darcs has a feature like this one. I know hg transplant can do this between branches, but I need something like this for committing code in the present branch and not when adding change sets from some other branch. 回答1: MQ as Chad mentioned are one way. There's also more lightweight solutions: Record extension which works roughly the same way as darcs record.

Add a new table column to specific ordinal position in Microsoft SQL Server

南楼画角 提交于 2019-11-26 08:26:55
问题 Is it possible to add a column to a table at a specific ordinal position in Microsoft SQL Server? For instance, our tables always have CreatedOn, CreatedBy, LastModifiedOn, LastModifiedBy columns at the \"end\" of each table definition? I\'d like the new column to show up in SSMS above these columns. If I am scripting all my database changes, is there a way to preserve this order at the end of the table? FYI, I\'m not trying to institute a flame war on if this should even be done. If you want