GeekArticles
Concepts
Project ManagementArticle :: Integrating XP into Your Existing Software Workshop
Author: awprofessional.com |
Published: 29th Aug 2005 |
Visited: 443 times |
Add CommentFiled in: Project ManagementWhen you're ready to implement XP practices, where do you start? Who needs to be won over? What kind of hurdles can you expect? Stewart Baird answers these questions in this article that explains how to get XP rolling in your shop.
Read Article Sponsored Links
Related Articles
• Partitioning existing tables I am attempting to partition a Table T1 with existing data.
Table T1 is as follows:
COLUMN DATATYPE
-----------------
COLUMN1 NUMBER PK
COLUMN2 NUMBER
COLUMN3 NUMBER
I am using this approach:
1- ALTER TABLE T1 RENAME TO T1_TEMP
2- CREA ...