473,782 Members | 2,513 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Access db on Microsoft Small Business Server. How to approach it

93 New Member
Hi

I have an access database to develop however the files are hosted on a Microsoft Small Business Server.

What should I be aware of when developing Access dabase on MS Small Business Server?

There are 5 user, usually 2 of them will use the db at the same time and its Access 2000.

Many thanks in advance for your expertise.
Emil
May 9 '08 #1
8 1801
missinglinq
3,532 Recognized Expert Specialist
I don't work in a server environment, but for multiple-users, you'll need to split your database into front end/back end, which can be done by the going to Tools - Database Utilities - Database Splitter.

This will place the tables with data in the back end and basically everythig else, forms, queries, reports, etc. will be placed into the front end. One copy of the back end goes on your server and a copy of the front end needs to go on each users PC.

One of the advantages of this setup is that you can actually have different front ends for various users.

As I said, I seldom work with split databases, but there are others here that can help you with details as they arise.

Linq ;0)>
May 9 '08 #2
emsik1001
93 New Member
So I understand that creating a back end database is the best way (what are the negatives about using one file? I'm just curious)

I have used the database splitter (which is quiet easy to understand as it only creates a new database and links tables to the new database)

What are the available options for the front-end interface? I heard something about .mde files, asp, asp.net and I presume that's not everything.

What are the pros and cons for each one?
May 9 '08 #3
missinglinq
3,532 Recognized Expert Specialist
Sharing front ends is a primary cause of database corruption! You can simply use your mdb front end with a copy on each users PC, as I said, or you can convert it to an mde file, if you like. The advantage of using an mde file is that it "locks" the design of your databse, i.e. the forms, queries, reports, etc. so that they cannot be changed by your end users. Sometimes this is desirable/neccessary, and sometimes it's not. Some developers want to allow the end users to create their own queries, for instance, or their own reports, if the users are skilled in these things. Others want total control over these things. Some developers worry about end users diddling behind the scenes, possibly harming the function by making design changes.

But the bottom line is that Access is usally used for the front end as well as the back end. Asp/Asp.net and so forth would only be used for the front end if you were planning on making the database interactive over the internet, and that's another whole story.

One final warning! If you elect to convert your mdb to an mde file, make a back of your mdb file and store it in a safe place! You cannot make any modifications to an mde file, and sooner or later, you'll need to!

Linq ;0)>
May 9 '08 #4
emsik1001
93 New Member
So in my case the simplies way would be to use mdb or mde.

What kind of problems can I expect from using this method?
If several users needs to add new records at the same time does it have same negative effects? what about modyfing records?
May 10 '08 #5
PianoMan64
374 Recognized Expert Contributor
So in my case the simplies way would be to use mdb or mde.

What kind of problems can I expect from using this method?
If several users needs to add new records at the same time does it have same negative effects? what about modyfing records?
Now since I've worked with Microsoft SBS 2000 before, and a little with SBS 2003 Premier, You also have the option if the backend of MS Access can't handle the number of records you have the option of Upsizing the tables and queries to MS SQL, so that you have security options and a great deal more flexability in how to manage the records and who has access to what tables in the database.

There are many articals on this subject as well as I have personal experience with upsizing, and well a developing in MS SQL and Oracle.

Let me know if I can be of service to you,

Joe P.
May 11 '08 #6
youmike
69 New Member
I run an application for a client which has a number of back ends for various reasons. There are about 50 varieties of front end, each password protected and each aimed at different users, but using combinations of tables from the back ends. Each user has local copies of required front ends, but all are linked to the common back ends. I maintain by depositing altered front ends into the various users' folders on their machines and I do this from wherever I happen to be in the world.

The downside is traffic over the network when querying data, because Access works by bringing all the data that might be needed back to the local machine for manipulation. If we moved to SQL server, we'd reduce traffic, because this would allow all the manipulation to be done on the server and only the answer returned over the network. This would be at quite a lot of extra cost in terms of SQL server and redeveloping all the front ends. The processing times are tolerable, so we don't change.

The upside is that when a new front end is needed, development time is very quick. I'd defend our position against purists whosay that this is not what Access is designed to do. It's worked for us for many years and it's cost effective.

One final thought. If you do develop on this scale, I suggest you avoid macros like the plague. I use VBA and SQL exclusively and tend to embed SQL into VBA code using the CreateQueryDef object, rather than invoke queries created in the grid. The grid is very useful for setting up SQL which can then be copied into VBA modules.
May 11 '08 #7
emsik1001
93 New Member
Two questions?

1) What does upsizing mean and what does it do? (I didn't come accross this term before and couldn't find the answer it the dictionary ;p)

2) "CreateQuer yDef object, rather than invoke queries created in the grid" I do use VBA and SQL, however I didn't come accross this before, would you be able to give me some tips regarding this?

Now the database I create is rather small and I presume they will not add more then 1-2k records in the main table within a year. Once I finish it; it will be left to them to maintain it and develop and I presume they have some basic knowledge about adding a new form etc, so access front-end seems to be ideal for them.

Thanks for all the info, it is very usefull for me.
May 12 '08 #8
PianoMan64
374 Recognized Expert Contributor
Two questions?

1) What does upsizing mean and what does it do? (I didn't come accross this term before and couldn't find the answer it the dictionary ;p)

2) "CreateQuer yDef object, rather than invoke queries created in the grid" I do use VBA and SQL, however I didn't come accross this before, would you be able to give me some tips regarding this?

Now the database I create is rather small and I presume they will not add more then 1-2k records in the main table within a year. Once I finish it; it will be left to them to maintain it and develop and I presume they have some basic knowledge about adding a new form etc, so access front-end seems to be ideal for them.

Thanks for all the info, it is very usefull for me.
Well, I'll answer my part of the question, "Upsizing" is a wizard that is available in MS Access 2000 and newer. It allows you to transfer all your tables in MS Access database to MS SQL Database. This way you can use the power of MS SQL without having to know a great deal about how to create tables and maintane tables in MS Access. The other option you have since you have SBS and if you're running MS SQL is that you can create a MS Access Project file instead of a MDB file. This way all the backend data is kept on MS SQL and all the forms and Code, is kept in the Project file.

Hope that helps,

Joe P.
May 13 '08 #9

Sign in to post your reply or Sign up for a free account.

Similar topics

11
3765
by: Wolfgang Kaml | last post by:
Hello All, I have been working on this for almost a week now and I haven't anything up my sleeves anymore that I could test in addition or change.... Since I am not sure, if this is a Windows 2003 Server or ADO or ODBC issue, I am posting this on all of the three newsgroups. That's the setup: Windows 2003 Server with IIS and ASP.NET actiavted Access 2002 mdb file (and yes, proper rights are set on TMP paths and path,
63
5934
by: Jerome | last post by:
Hi, I'm a bit confused ... when would I rather write an database application using MS Access and Visual Basic and when (and why) would I rather write it using Visual Studio .Net? Is it as easy in Visual Studio to create reports and labels as it's in Access?` The advantage of VS.net is that not every user needs Access, right? And that would eliminate the Access version problem as well I guess.
20
3347
by: Olav.NET | last post by:
I am a .NET/C++ developer who is supposed to do some work with Access. I do not know much about it except for the DB part. Questions: *1* I am looking for INTENSIVE books to get quickly up to speed. I like books with practical exercises, and also with test questions (like cert books) *2*
17
2496
by: DaveG | last post by:
Hi all I am planning on writing a stock and accounts program for the family business, I understand this is likely to take close to 2 years to accomplish. The stock is likely to run into over a thousand items and the accounting side will be used for hopefully many years so the entries are likely to be vast. The delema is what is best to use ase the DB engine, Access I have as part of Office 2002 or should I really be looking at SQL...
7
2916
by: Allison | last post by:
Hi -- we are a small manufacturing looking for a multi-user database to take customer orders (nothing too complicated, with 3 users total). We think we should be using Access, but are wondering what alternatives there are. It has been recommended to us to use ASP.net and SQL instead, with the reasoning that: 1) Access is likely to go obsolete at some point 2) It will be more stable Does anybody have any thoughts on this?
24
1734
by: Lauren Wilson | last post by:
OK, I'm confused. SOME folks here seem to be saying it IS possible to link to or otherwise access and manipulate MDB files stored on a web server (from the client) and others seem to be saying it's NOT possible. Assuming the latter is correct, shouldn't it be possible to do it with a hidden Data Access Page running on the client machine? I assume it's possible to run a DAP without revealing it to the client user -- correct?
5
2917
by: B1ackwater | last post by:
We've fooled around with Access a bit, but only using the single-user store-bought version. It seems to be a good database - versatile and infinitely programmable - and can apparently be used as a front end to SQL server if we ever needed to go that route. But - is there a client/server version of Access ? Looking on the CDW site there is a bewildering variety of packages and licences and such, but we can't figure out just which do...
17
4417
by: Mell via AccessMonster.com | last post by:
Is there a way to find out where an application was created from? i.e. - work or home i.e. - if application sits on a (work) server/network, the IT people know the application is sitting there, but is there a way they can find out if that application was put there from a CD or email or created at work? Hint: It's not on a client/server database, just native jet database mdb created on Access 2003 (default 2000)...
14
3888
by: ApexData | last post by:
I am considering building some distributable commercial applications. For about a year now, I have been using Access2000. This was my first venture into object oriented database development. Having a background in Pascal and some C++, I would have preferred those languages, but VBA made do. The SQL was fine. I believe that Security issues on the backend, and data integrity/ corruption complaints over the network may be a stumbling...
0
9479
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,...
1
10080
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
9942
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8967
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
7492
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
5378
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...
0
5509
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3639
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2874
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.