Hi, I can sympathise with your DBAs to some degree. I don't think the problem is with Hibernate per-se (I am no hibernate expert btw), but rather with the way...
1241
Dave Sanders
davesanders
Sep 4, 2006 3:59 am
... Somewhat. With Gentle, and the MyGeneration templates (or the Gentle.CodeGeneration assembly that I've added to it recently) you can generate all of the...
1242
Hugo Garcia
elhugonyc
Sep 5, 2006 3:55 am
... I agree, the coupling is very tight... to the point that it is the application that drives the creation of tables. Coming from the camp of Domain Driven...
1243
Andrew Gregovich
andrew_grego...
Sep 5, 2006 9:28 am
Most pragmatists (I'd consider myself one) would hold the view that you need to balance between maintainability and performance. When you look at your average...
1244
Curt Sampson
cjstokyo
Sep 6, 2006 3:30 am
... Well, that's a new twist! It's usually the developers that want to make changes who get shot down by the DBAs, who want to go through a multi-year process...
1245
Scott W. Ambler
scottwambler
Sep 6, 2006 11:57 am
... From: "Curt Sampson" <yahoo@...> To: <agileDatabases@yahoogroups.com> Sent: Tuesday, September 05, 2006 10:47 AM Subject: Re: [agileDatabases] Re:...
1246
Willem Bogaerts
toetah2000
Sep 10, 2006 6:20 pm
... I think you have just discovered why it is a bad idea to use generated program code. The whole idea of a data layer in an object-oriented program is to...
1247
Dave Sanders
davesanders
Sep 11, 2006 4:04 am
"I think you have just discovered why it is a bad idea to use generated program code. The whole idea of a data layer in an object-oriented program is to...
1248
gauravrags
Sep 11, 2006 5:38 pm
Hi, I remember there used to be a Agile Methodology Forum in London and these guys used to meet in a Pub near Liverpool Street Station. - Is this forum, still...
1249
PaulOldfield1@...
pauloldfield1
Sep 11, 2006 9:19 pm
In a message dated 11/09/2006 18:41:22 GMT Standard Time, kgraghava@... writes: I remember there used to be a Agile Methodology Forum in London and ...
1250
Norman Nunley, Jr
psyicide
Sep 12, 2006 4:38 am
You probably mean the Extreme Tuesdays Club that meets every tuesday at The Old Bank of England Their information is at: ...
1251
Scott W. Ambler
scottwambler
Sep 12, 2006 5:43 pm
Pramod Sadalage and myself will be running a database refactoring tutorial at OOPSLA this year. The tutorial will walk you through the fundamentals of...
1252
Gerardo Bascianelli
albertshell
Sep 13, 2006 3:51 am
hi all, I am gerri from italy, and I am becoming, hopefully, an agile developer. portland it is a lot far away, but I would want to meet all agile dba in a ...
1253
Bill Lewis
blewis02
Sep 13, 2006 3:58 am
Are there tools available for determining, in an automated and accurate fashion, any and all code that would be impacted by a potential database refactoring?...
1254
Willem Bogaerts
toetah2000
Sep 13, 2006 7:21 am
I don't think so. Other than normal search routines for identifiers. The problem is that SQL is often generated as strings. I know that you should never use...
1255
Scott W. Ambler
scottwambler
Sep 13, 2006 10:19 am
... There are some impact analysis tools out there, but they're usually single platform (e.g. just for Java, or just for COBOL). If you have programs written...
1256
Scott W. Ambler
scottwambler
Sep 13, 2006 10:27 am
On Wed, September 13, 2006 3:01 am, Willem Bogaerts said: <snip> ... Agreed. When a lot of your code is written like this, the tools aren't going to be able...
1257
Dave Sanders
davesanders
Sep 14, 2006 3:41 am
... Its interesting to me on an agile list that no one has stated the obvious: Have unit tests. Make the change in a branch of the code. Run your tests. See...
1258
Bill Lewis
blewis02
Sep 15, 2006 4:31 am
... your ... what ... or ... like ... through ... Using unit testing as an impact assessment strategy may work fine for a single-application database, but...
1259
Nathan Voxland
nvoxland
Sep 15, 2006 4:31 am
An additional option that may be worth exploring (would make a good OSS project) would be a tracing driver similar to P6Spy that could be configured to watch...
1260
Russ Milliken
milliken99
Sep 15, 2006 4:31 am
Having unit tests are a good piece of the approach, but cannot be the entire approach. There is no concept of scope for a DB table, so there's no guarantee...
1261
Gabriel Tanase
gtyg_reporting
Sep 15, 2006 4:31 am
... single ... Some high-end tools are multi-language: http://www.metallect.com/solutions.php http://www.castsoftware.com/Product/AIP.htm (although CAST don't ...
1262
Gabriel Tanase
gtyg_reporting
Sep 15, 2006 11:41 am
Two possible reasons: a) The DB design that people find worthwhile writing and reading books about is overhelmingly concerned with (enterprise) business ...
1263
Dave Sanders
davesanders
Sep 15, 2006 11:50 am
... Did the original poster mention the DBMS involved? MS SQL Server has this already built in, with the SQL Profiler. But you still need to know what to...
1264
Scott W. Ambler
scottwambler
Sep 15, 2006 12:42 pm
... From: "Gabriel Tanase" <gabriel.tanase@...> To: <agileDatabases@yahoogroups.com> Sent: Friday, September 15, 2006 3:49 AM Subject:...
1265
Scott W. Ambler
scottwambler
Sep 15, 2006 12:48 pm
... From: "Russ Milliken" <milliken99@...> To: <agileDatabases@yahoogroups.com> Sent: Thursday, September 14, 2006 8:38 AM Subject: Re: [agileDatabases]...
... Run ALL the unit tests for ALL the apps. Every day. Don't write an app without unit tests. -- C. Keith Ray...
1268
Dave Sanders
davesanders
Sep 18, 2006 6:17 pm
"you'll find it difficult at best to force everyone to use it" YEAAAGH! I hate that argument! At any point that personnel management outweighs sound...
1269
narayanang
Sep 22, 2006 5:27 am
... As a database guy, I love the idea of hiding all the tables from applications and putting a stored procedure interface in front of them. However, there are...