473,761 Members | 2,293 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Access or FoxPro?

I am a newcomer to databases and am not sure which DBMS to use. I have
a very simplified knowledge of databases overall. I would very much
appreciate a (simplifed) message explaining the advantages and
disadvantages of both programs.

Many Thanks

Simon
Nov 12 '05
13 13353
Well, as far as VFP goes its a dead issue anyway - but the "one big file"
approach in my opinion is ok for the data backend - I've never had a problem
there, but it seems very bad for the front end, where I have had a problem
with corruption. If the front end is going to be large and complicated I
would definitely stay away from Access and look at VB or .NET.

Mike Thomas
"Steve" <st***@nospam.c om> wrote in message
news:3f******** ********@news.w estnet.com...
On Sat, 22 Nov 2003 18:12:14 GMT, "Mike Thomas" <Mi******@Yahoo .com>
wrote:
There are a lot of
things I think are bad about Access: especially the "one big file" approachwhich I think fosters file corruption and makes it diffuclt to isolate andrepair and what I think is the sloppiness in the referring to objects.


There is absolutely nothing wrong with storing the data in one big
file. But if that gives one concern, they can always place one table
in a MDB, and then link all the MDBs to a central one. But that is,
IMHO, is clearly an improper approach.

Regarding storing the program objects (e.g. forms, reports, modules,
queries, ...) one should use a seperate MDB. This is a standard
practice in Access development.

SQL Server and other high-end server database engines store all the
data (and triggers, procedures, etc ...) in one big "file".

Steven Zuch

Nov 12 '05 #11
TC
If you've had a problem with corruption, wouldn't it be better to determine
the cause, rather than bagging the product? Lots of folks have big front-end
& do not get corruption.

TC
"Mike Thomas" <Mi******@Yahoo .com> wrote in message
news:4Q******** **************@ newssvr28.news. prodigy.com...
Well, as far as VFP goes its a dead issue anyway - but the "one big file"
approach in my opinion is ok for the data backend - I've never had a problem there, but it seems very bad for the front end, where I have had a problem
with corruption. If the front end is going to be large and complicated I
would definitely stay away from Access and look at VB or .NET.

Mike Thomas
"Steve" <st***@nospam.c om> wrote in message
news:3f******** ********@news.w estnet.com...
On Sat, 22 Nov 2003 18:12:14 GMT, "Mike Thomas" <Mi******@Yahoo .com>
wrote:
There are a lot of
things I think are bad about Access: especially the "one big file" approachwhich I think fosters file corruption and makes it diffuclt to isolate andrepair and what I think is the sloppiness in the referring to objects.


There is absolutely nothing wrong with storing the data in one big
file. But if that gives one concern, they can always place one table
in a MDB, and then link all the MDBs to a central one. But that is,
IMHO, is clearly an improper approach.

Regarding storing the program objects (e.g. forms, reports, modules,
queries, ...) one should use a seperate MDB. This is a standard
practice in Access development.

SQL Server and other high-end server database engines store all the
data (and triggers, procedures, etc ...) in one big "file".

Steven Zuch


Nov 12 '05 #12
On Mon, 24 Nov 2003 13:37:04 GMT, "Mike Thomas" <Mi******@Yahoo .com>
wrote:
Well, as far as VFP goes its a dead issue anyway - but the "one big file"
approach in my opinion is ok for the data backend - I've never had a problem
there, but it seems very bad for the front end, where I have had a problem
with corruption. If the front end is going to be large and complicated I
would definitely stay away from Access and look at VB or .NET.


I have never had such problems, and have not heard of such problems
except for the case that the front-end is being shared (e.g. stored on
a server and used by multiple users at the same time). Well, I guess
I have now heard of a problem :)

On the contrary, I have found the front-end, which stores the forms,
reports, queries, and VBA modules, very stable and reliable. Like
most developers, I convert the production front-ends to MDE files.

I have a relatively complex commercial portfolio system, being used by
many hedge funds and a hedge fund administrator. And there are
larger systems (e.g. costing over $100,000) developed with Access
being the front-end. Such systems are extensive and complex, and
clearly are at the same scale as other high-end accounting systems.

There are valid reasons to select VB6 or VB.Net over Access for
development, but corruption is not one of them.

Steven R. Zuch
Cogent Management Inc.
Nov 12 '05 #13
"TC" <a@b.c.d> wrote in news:1069724829 .614179@teuthos :
If you've had a problem with corruption, wouldn't it be better
to determine the cause, rather than bagging the product? Lots of
folks have big front-end & do not get corruption.

TC
"Mike Thomas" <Mi******@Yahoo .com> wrote in message
news:4Q******** **************@ newssvr28.news. prodigy.com...
Well, as far as VFP goes its a dead issue anyway - but the "one
big file" approach in my opinion is ok for the data backend -
I've never had a

problem
there, but it seems very bad for the front end, where I have
had a problem with corruption. If the front end is going to be
large and complicated I would definitely stay away from Access
and look at VB or .NET.

Mike Thomas
"Steve" <st***@nospam.c om> wrote in message
news:3f******** ********@news.w estnet.com...
> On Sat, 22 Nov 2003 18:12:14 GMT, "Mike Thomas"
> <Mi******@Yahoo .com> wrote:
>
> >There are a lot of
> >things I think are bad about Access: especially the "one big
> >file"

approach
> >which I think fosters file corruption and makes it diffuclt
> >to isolate

and
> >repair and what I think is the sloppiness in the referring
> >to objects.
> >
>
> There is absolutely nothing wrong with storing the data in
> one big file. But if that gives one concern, they can always
> place one table in a MDB, and then link all the MDBs to a
> central one. But that is, IMHO, is clearly an improper
> approach.
>
> Regarding storing the program objects (e.g. forms, reports,
> modules, queries, ...) one should use a seperate MDB. This
> is a standard practice in Access development.
>
> SQL Server and other high-end server database engines store
> all the data (and triggers, procedures, etc ...) in one big
> "file".
>
> Steven Zuch




Dolly Parton, for example ;) Personally, I don't have a problem
with OBF method, except that it's not self-maintaining. It grows
and grows until you Compact and Repair it. Seems a little sloppy to
me.
Nov 12 '05 #14

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

Similar topics

2
3352
by: djc | last post by:
I need to use data from multiple tables that are located in 2 different databases. Most of the tables are in SQL Server 2000 but 1 one the tables I need to include in my query resides in an Access2002 mdb file. I need to do this via ASP/ADO on IIS5. How do I combine (join in a query) tables from different databases? they are each opened from a different connection object? I have only had to access tables from one source before and I...
2
2759
by: Colin Colin | last post by:
We migrated our intranet site from IIS4 NT4 (\\GHCNT8) to a Windows 2003 server with IIS6 (\\NT58) using the IIS Migration Tools. I have a few ASP pages that access Foxpro data on a different server. I downloaded the Visual Foxpro ODBC Driver from MSDN. I exported (from the registry) the ODBC entries from the old server and imported them onto the newserver. I setup the Internet user guest account with rights where the Foxpro data is...
1
2338
by: jdola | last post by:
I have a customer that is using Access to create reports from FoxPro tables. We started noticing problems with the indexes on the FoxPro tables. It is to the point where we have to delete and rebuild the indexes on a nightly basis. We cannot determine if Access is the culprit and I have not been able to look at the Access reports and determine how he is linking to the tables. I realize this is not much to go on, but does anyone see any...
8
2720
by: Alfred | last post by:
Hi What is the difference between Access and Foxpro and who will use Foxpro. Thanks Alfred
2
6601
by: Salad | last post by:
OS = WinXP & Win98. Access = A97 & AXP Q1) Where can I find the VFP ODBC driver at Microsoft. I have been working developing an app in Access that will link to some DOS FoxPro tables. I have been doing my development work in A97 but the folks have AXP at their site. As near as I can tell, the FoxPro driver has been discarded from A97 and replaced with ODBC in A2K onward
1
3117
by: David Sorber via AccessMonster.com | last post by:
Hello, I've got two questions. Im writing an Access 2000 database to collect data from multiple Visual Foxpro Databases, total some figures, save the data into a table for archiving purposes, and be able print out a report. Im connecting to the Foxpro Databases using ODBC through VB version 6 and my Visual Foxpro Driver is dated at 12/7/1999 version 6.01. 1.When connecting to a particular Foxpro database my access program completely...
37
5242
by: jasmith | last post by:
How will Access fair in a year? Two years? .... The new version of Access seems to service non programmers as a wizard interface to quickly create databases via a fancy wizard. Furthermore, why would you even continue to use Access as a backend when you have a much superior option in SQL express? What about as a future front-end development tool? Let's get serious. Microsoft continues to publish numerous articles and videos on how you...
7
5498
by: z71mdridin | last post by:
I have an asp.net website that uses Form authentication to authenticate users. I need to provide users with a report based on FoxPro data that resides on a remote server. When I attempt to connect to the Foxpro directory by using the ODBC DSN that we currently use in ColdFusion, I get the following message: ERROR File 'table.dbf' does not exist. I know this is probably a permissions issue because asp.net is being
3
5174
by: HistoricVFP | last post by:
Hello, I’ve been given the task of importing .dbf files from a very old version of Visual FoxPro (version 2.1) into Access (2003). When I import the data straight to Access it errors with: External table is not in the expected format. (Error 3274) I’ve tried the following but it did not work: “To import data from a FoxPro database, use the Microsoft Visual FoxPro ODBC driver. To do so, follow these steps: 1. Click Start, and then...
0
9377
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9989
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9925
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8814
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7358
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5266
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3913
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3509
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2788
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.