473,387 Members | 1,624 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Conversion of 1.0 DB, to 97, to 2002, now to SQL

ng
Help, please. I don't even know where to begin. In Access 1.0 days, our
comany hired a man to create a sales database for our company.
Unfortunately, most of his code was and still is in macro format, I've
always hated macros, you can't see what they're doing lest you convert them
all to VB! It looks like there was no such thing as a global variable,
because he's doing things like storing global variables in temporary tables.
This type of "old style" programming as I'll call it is just SO difficult to
decipher. I don't know if I should quit my job, or just tell them it can't
be done (I know what that would result in.) Instead of making decisions up
front in a coding level, or in queries, he makes his decisions at the report
level. Nearly every field has an IIF statement to check for Foreign, or
Domestic, if there are more than X number of lines on the quote, we use this
report, if there are less lines than X, we use this other report. I've
never seen a more screwed up database in my life!

I'm not an access newbie, I can definitely program my way out of a paper
bag, but it seems like they've changed to plastic now. I feel like the
database needs to be completely re-engineered, however the sales department
is quite strict in that it must look, act, and perform exactly the way the
old application did. This seems silly in my mind, it'd be like asking Ford
specifically to create you a Model T because you had one, and liked the way
it drove.

There really is no specific "question" here, it's just more, "What do you do
when you have a REALLY old, monolith database, that was programmed with
pre-2K technology?"

If anyone can contribute any moral support, or any other advice if they've
had such an issue in the past, I'd appreciate any advice. <deep breath>

I'll be in macro land.

-Brian
Nov 13 '05 #1
4 1332
ng wrote:
I'm not an access newbie, I can definitely program my way out of a paper
bag, but it seems like they've changed to plastic now. I feel like the
database needs to be completely re-engineered, however the sales department
is quite strict in that it must look, act, and perform exactly the way the
old application did.
You're right; they're wrong.
I'd be inclined to re-write it my way, give them the totally
re-engineered application and .... who knows?
This seems silly in my mind, it'd be like asking Ford
specifically to create you a Model T because you had one, and liked the way
it drove.


General Motors already has this in hand with their push rod engines ...
also Harley.
--
--
Lyle
--
Nov 13 '05 #2
Program it using "new school" programming but make the user interface
look and act similar to the way the old one did. They don't need to
see what's going on "under the hood" 8-) 8-). So give them something
that looks similar to the Model T but bigger with a modern engine (no
pun intended). Afterwards, let them know that they'll not be safe
without airbags with that kind of power so add those too.

I once converted a PowerBase application to Access and discovered that
the best way to make everyone happy was to color the main form's
background the same color as before and to duplicate all the
functionality from the old one before suggesting new possibilities made
possible by programming in Access. That was five years ago and the
only color change I was able to suggest successfully was to lighten the
background color :-(. But once they saw the Access version doing
everything the PowerBase app did and then started realizing the amount
of customization made possible by Access they gave me enough work to
make a boatload of money on it. They nearly went wild when they
realized they could come up with their own ideas and then see them
magically appear as part of the database. You can also write queries
to convert the data into normalized tables. They won't even know the
table structure has been fixed.

I know it's painful cleaning up someone else's database mess. Make it
flexible enough so that the programmer who comes in after you looks
like a genius, or at least as good as you are for awhile. Leave a mess
and the next programmer looks like an idiot. That's the penalty we
have to bear when doing things the right way. The best example I can
think of is Rational Fortran. Rational Fortran resulted from a
programmer's boss' requirement that the final code be in "old school"
FORTRAN. The programmer wanted to use modern constructs like
While...Wend so he came up with a translater that converted his
While...Wend and other control loops into "old school" FORTRAN. It was
a win-win situation. You need to find a similar path of wisdom if the
messy database allows. Clean up the mess, be patient and good things
will come of it.

One other note. Because it was custom programming, I trained the users
to watch for any abnormalities like a hawk. They use common sense when
looking at reports so when the rare case happens that my logic is wrong
they almost always catch it.

James A. Fortune

Nov 13 '05 #3
ng
Thank you for your support gentlemen. I feel much better after reading both
of your posts. I'll put my nose to the grind stone and eat this elephant
the one bite at a time that it needs to be. I like the "They don't need to
look under the hood" part, but I'm afraid there is ONE person, who may just
fancy themselves to be a mechanic. They tried very hard to be a mechanic in
Access Land, but going around creating tables like they're going out of
style in the back end, I'm just not going to allow this. I think the person
should extraxt their data from my application and run it through word, or
WHATEVER it is that they're trying to accomplish. Nobody but the programmer
should be under the hood, right? In this old access world, they thought
they were pretty good mechanics! So instead of prompting the user for a
criteria, we get 20 queries with the differing criteria.

Okay. To the grindstone. Thanks guys.

-B

<ji********@compumarc.com> wrote in message
news:11**********************@l41g2000cwc.googlegr oups.com...
Program it using "new school" programming but make the user interface
look and act similar to the way the old one did. They don't need to
see what's going on "under the hood" 8-) 8-). So give them something
that looks similar to the Model T but bigger with a modern engine (no
pun intended). Afterwards, let them know that they'll not be safe
without airbags with that kind of power so add those too.

I once converted a PowerBase application to Access and discovered that
the best way to make everyone happy was to color the main form's
background the same color as before and to duplicate all the
functionality from the old one before suggesting new possibilities made
possible by programming in Access. That was five years ago and the
only color change I was able to suggest successfully was to lighten the
background color :-(. But once they saw the Access version doing
everything the PowerBase app did and then started realizing the amount
of customization made possible by Access they gave me enough work to
make a boatload of money on it. They nearly went wild when they
realized they could come up with their own ideas and then see them
magically appear as part of the database. You can also write queries
to convert the data into normalized tables. They won't even know the
table structure has been fixed.

I know it's painful cleaning up someone else's database mess. Make it
flexible enough so that the programmer who comes in after you looks
like a genius, or at least as good as you are for awhile. Leave a mess
and the next programmer looks like an idiot. That's the penalty we
have to bear when doing things the right way. The best example I can
think of is Rational Fortran. Rational Fortran resulted from a
programmer's boss' requirement that the final code be in "old school"
FORTRAN. The programmer wanted to use modern constructs like
While...Wend so he came up with a translater that converted his
While...Wend and other control loops into "old school" FORTRAN. It was
a win-win situation. You need to find a similar path of wisdom if the
messy database allows. Clean up the mess, be patient and good things
will come of it.

One other note. Because it was custom programming, I trained the users
to watch for any abnormalities like a hawk. They use common sense when
looking at reports so when the rare case happens that my logic is wrong
they almost always catch it.

James A. Fortune

Nov 13 '05 #4
When you release to the users, give them an MDE... that will prevent the
"wannabee developer" from messing with your forms, reports, and modules, and
from creating new ones in your database.

Use Access security... get the Security FAQ from microsoft.com, read, and
carefully follow it. In your application, do not directly access the tables
but only use RWOP queries (that's discussed in the Security FAQ) to keep
them out of any Tables and Queries in the FrontEnd, and out of the Tables in
the back end.

The "wannabee" could break security if he was willing to spend US$140 or so,
and if he knew where to look for the software to spend it on, but I'd bet it
isn't that important to him.

And, every place I have ever worked, and at all my clients, having an
employee even try to break security on an application or secured DB would be
a career-ending decision. That is, respecting the security of applications,
etc., was a "condition of continued employment".

Larry Linson
Microsoft Access MVP

Nov 13 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: jason | last post by:
Could someone highlight any known problems in converting an access 2000 to access 2002 database....should I expect a painful transition or can I expect a quick turnaround time to get my existing...
4
by: David | last post by:
Hi, I want to work with Access 2002. I will need to be able to distribute my application to users that may still have access 2000 on their computers. I know access 2002 has a function that...
8
by: Ishbel Kargar | last post by:
Since upgrading from old laptop (Windows 98) to new laptop (Windows XP), my mail-merge letters are doing strange things with date formats. For instance, my reminder letter for lapsed subs carries...
2
by: Maurice | last post by:
Folks I bow to your superb knowledge of Access. I need you help! Please, please! I am running Access 2002 and have an application that is basically a name and address file with a few bells and...
2
by: Maurice | last post by:
Folks once again I look forward to your invaluable assistance. When converting an Access 2002 mdb back to Access 1997 using the Access 2002 inbuilt tools I receive the following error message...
5
by: John Furphy | last post by:
Please excuse my ignorance in this area, being an amateur Access user. I have an Access 2000 application which runs fine, however when I convert it to Access 2002 and run it, it comes up with...
2
by: George Durzi | last post by:
Hey folks, I just installed VS .NET 2003 on top of Windows 2003 Server. I was opening a Web Project from source control, and got a warning that the project would have to be "converted", and that I...
5
by: Tom | last post by:
We currently have a rather large application that is in VB.NET 2002. We have just purchased licenses to the 2003/1.1 Framework version of Visual Studio. What kind of conversion, if any, will we...
1
by: bala | last post by:
Hi Access Gurus The MS Access DB (MS Access 2002 Database) which is currently serving as the backend Database to MS Access (MS Access 2002/XP) frontend needs to be converted to Oracle 8i Backend...
3
by: sam12 | last post by:
Hi I am having a problem to convert the date format This is my date feild in an existing database 6/26/02 11 05/02/2002 6/05/02 3: 6/12/02 11 05/02/2002 ...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.