Home > Archive > Cobol > June 2004 > Re: OO in Batch (Was: Program ID)
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Re: OO in Batch (Was: Program ID)
|
|
| Joe Zitzelberger 2004-06-28, 3:55 pm |
| In article <217e491a.0406251250.67ada577@posting.google.com>,
riplin@Azonic.co.nz (Richard) wrote:
> There are other ways of doing this too. For example database 'views'
> or not using '*' in the selects but specifying every field that is
> needed. Of course if the change is something that the program needs
> to deal with then it will be recompiled because it has changed.
I'm a product of my mainframe environment. When I think of changing a
table, or converting a table to a view it fills me with horror. Not
only do I need to need to recompile everything (because separate binds
are dangerous, so sayth the DBAs), but it also involved getting buy-in
from 1 to a dozen DBAs.
My PC history makes me rebel against the tight control of tables by
another department. Their goals never seem to be the same as the
application developers.
| |
| Robert Wagner 2004-06-29, 3:55 am |
| Joe Zitzelberger <joe_zitzelberger@nospam.com> wrote:
>In article <217e491a.0406251250.67ada577@posting.google.com>,
> riplin@Azonic.co.nz (Richard) wrote:
>
>
>
>I'm a product of my mainframe environment. When I think of changing a
>table, or converting a table to a view it fills me with horror. Not
>only do I need to need to recompile everything (because separate binds
>are dangerous, so sayth the DBAs), but it also involved getting buy-in
>from 1 to a dozen DBAs.
Dynamic binding is the norm in Unix, Windows and IBM, according to IBM
literature. Sounds like your DBAs are applying lessons learned 20+ years ago.
>My PC history makes me rebel against the tight control of tables by
>another department. Their goals never seem to be the same as the
>application developers.
You're right. They seem to take delight in obstructing progress.
In my world, programmers develop Views and Triggers in their own schema in a
sandbox. When it's time to promote the package through change management (CM) ,
they create a script to build the objects in higher levels (in production
schemas) and insert those files into CM along with source programs. DBAs may or
may not review them, but they can't sit on them indefinately.
The key to success is to treat database changes the same as source code changes.
Don't let DBAs make them something 'special' that avoids deadlines and
management oversight. They should have Good Reason to block a change. 'I didn't
get around to it' doesn't make the grade.
|
|
|
|
|