StarEast is a leading quality conference. I keynoted a few weeks ago at StarWest regarding agile software development and created a very good buzz. If you're...
646
rohanpradhans
Dec 27, 2004 11:02 pm
Hi Pramod, My primary concern is to test stored procedures (or other database code) in the database and the database structure. Also I am required to test the...
647
Tony Nassar
aanassar
Dec 30, 2004 4:36 am
Look into http://utplsql.sourceforge.net/; I've found it indispensable....
648
meishagator
Dec 31, 2004 4:40 am
Mark your calendar now! ************************************************************** BETTER SOFTWARE CONFERENCE & EXPO September 19-22, 2005 San Francisco,...
649
pzoio
Dec 31, 2004 4:40 am
Here's a small article I have just written on getting going with DbUnit http://www.realsolve.co.uk/site/tech/dbunit-quickstart.php Any thoughts or feedback...
650
Ismet E. Kahraman
ismetekahraman@...
Dec 31, 2004 9:42 am
I have read the article, it is a very good introductory material. But, it would be better to provide an example having an object model and mapping it to a...
651
pzoio
Jan 7, 2005 4:15 am
If I get the chance I'd like to do this soon Cheers, Phil ... Service....
652
Jason Riley
jason_l_riley
Jan 7, 2005 7:11 am
I tried searching the archive but couldn't find a previous post ... sorry if I missed one. Any thoughts on what the complete set of standard data types should...
653
TewariAsh
Jan 11, 2005 11:43 am
Are there any persistence frameworks based on Scott Ambler's paper that don't use reflection ?...
654
Scott W. Ambler
scottwambler
Jan 12, 2005 9:07 am
Have you followed some of the URLs at www.ambysoft.com/persistenceLayer.html? Also, what's wrong with reflection? - Scott ... ...
655
Scott W. Ambler
scottwambler
Jan 12, 2005 9:14 am
Have you looked at the work the OMG has done with CWM? I have to think that they have this covered in great and gory detail. - Scott...
656
TewariAsh
Jan 13, 2005 4:05 am
I need to build/buy something in c++ .. I have found a list of products that don't use reflection at http://c2.com/cgi-bin/wiki?ObjectRelationalToolComparison...
657
Scott W. Ambler
scottwambler
Jan 20, 2005 7:41 pm
CALL FOR PAPERS FOR SD BEST PRACTICES 2005 IS NOW OPEN! Submissions will be accepted through March 13, 2005 Please use the following personalized link to...
658
Scott W. Ambler
scottwambler
Jan 25, 2005 5:43 pm
Call for Participation - Agile 2005 July 24-29, 2005. Marriott Hotel, Denver, Colorado, USA. http://www.agile2005.org March 1: Submissions due for Tutorials...
659
William Wake
wwake2
Jan 26, 2005 11:22 am
Call for Participation - Agile 2005 July 24-29, 2005. Marriott Hotel, Denver, Colorado, USA. http://www.agile2005.org March 1: Submissions due for Tutorials...
660
amy_vrahas_hall
Jan 28, 2005 4:02 am
Are there any Visio templates or open source data modeling tools to support the logical data modeling notation that's presented on agiledata.org?...
661
Scott W. Ambler
scottwambler
Jan 28, 2005 12:05 pm
Not that I know of. To create the diagrams at www.agiledata.org I used the block diagram stencil and the connectors stencil and did everything by hand. This...
662
amy_vrahas_hall
Jan 31, 2005 4:52 am
What is the best way to represent the following situation in a logical data model: Let's say a company has multiple division and each of those divisions offers...
663
Tom Hall
quick_to_forget
Jan 31, 2005 4:52 am
You can create a "Database Model Diagram" in Visio and then use the menu item Database, Options, Document you can specify: the symbol set (IDEF1X or...
664
m17shah
Jan 31, 2005 4:54 am
Hi Scott, We have developed a product call DBAConnect. It allows Oracle DBAs and Developers to manage/develop Oracle database through a web browser. I would ...
665
Kent J. McDonald
KentMcDonald
Jan 31, 2005 6:06 pm
One thing to keep in mind is that the Database Diagram functionality is only in Visio Professional and above versions. If you have the latest edition of Visio...
666
Logan, Patrick D
patrickdlogan
Feb 1, 2005 10:16 am
... I find representing many-many relationships as star schemas simple. Star schemas implement a 2nd normal form. You can normalize the "dimensions" (in this...
667
richard.hansen@...
richard_hans...
Feb 1, 2005 1:47 pm
The link http://ralphkimball.org does not work....
668
Bayley, Alistair
abayley2
Feb 1, 2005 2:27 pm
Google is your friend... Although I'm not sure specifically which articles Patrick was referring to:: http://www.rkimball.com/html/designtips.html ... ...
669
mauri_davide
Feb 2, 2005 8:37 am
Hello to Everyone, I'm Davide Mauri, let me introduce myself. After reading Agile Database Techiniques, Refactoring, GOF & PEAA, Database Design for Mere...
670
amy_vrahas_hall
Feb 2, 2005 8:38 am
Thanks for the suggestions. -Amy ... simple. Star ... the "dimensions" ... start and ... count ... facts. To ... include the ... if ... the ... This ... ...
671
Scott W. Ambler
scottwambler
Feb 2, 2005 9:35 pm
... They also need to invoke functionality too. ... Yes, you want to reduce coupling. You probably also want to maximize cohesion. ... I like the friction...
672
Yuvaraj A R
yuvaraj_a_r
Feb 3, 2005 6:37 am
The "contact surface" metaphor is interesting. So, what would be the equivalent of a "lubricant" to reduce "friction"? Just kidding :)!! On the other hand the...
673
hi hai
biggbytez
Feb 3, 2005 9:19 am
Hi David, The concept of the Friction is really good :-). Cheers, Sudheer. mauri_davide <mauri_davide@...> wrote: Hello to Everyone, I'm Davide Mauri, let...
674
Ismet E. Kahraman
ismetekahraman@...
Feb 3, 2005 3:01 pm
EmployeeData eData = DAO.getEmployee("ismet"); Employee ismet = new Employee(eData); PayRoll payroll = ismet.pay(); payroll.print( new Printer() ); PayRollData...