473,404 Members | 2,174 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,404 software developers and data experts.

Putting an Access Database online

Hi need your expert advice. I want to put my access database online
so different users in my company can use it. I can put in on a secure
directory on my website. Can you direct me the best way to do this?
Thanks,
Sheri

sh***@mbproducts.com

Sep 10 '07 #1
9 19076
On Sep 9, 9:16 pm, sh...@mbproducts.com wrote:
Hi need your expert advice. I want to put my access database online
so different users in my company can use it. I can put in on a secure
directory on my website. Can you direct me the best way to do this?
Thanks,
Sheri

sh...@mbproducts.com
Would it work just by uploading the file to that directory?

Sep 10 '07 #2
sh***@mbproducts.com wrote:
On Sep 9, 9:16 pm, sh...@mbproducts.com wrote:
Hi need your expert advice. I want to put my access database online
so different users in my company can use it. I can put in on a
secure directory on my website. Can you direct me the best way to
do this? Thanks,
Sheri

sh...@mbproducts.com

Would it work just by uploading the file to that directory?
No. Access cannot be run over the internet. For a reasonably small number of
users you could set up VPNs and let them use Terminal Server to run the app.
Otherwise you need to re-write a web-based front end to replace the Access forms
and reports.

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
Sep 10 '07 #3
On Sep 9, 9:32 pm, "Rick Brandt" <rickbran...@hotmail.comwrote:
sh...@mbproducts.com wrote:
On Sep 9, 9:16 pm, sh...@mbproducts.com wrote:
Hi need your expert advice. I want to put my access database online
so different users in my company can use it. I can put in on a
secure directory on my website. Can you direct me the best way to
do this? Thanks,
Sheri
sh...@mbproducts.com
Would it work just by uploading the file to that directory?

No. Access cannot be run over the internet. For a reasonably small number of
users you could set up VPNs and let them use Terminal Server to run the app.
Otherwise you need to re-write a web-based front end to replace the Access forms
and reports.

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
What would I use to write a web-based front end? Would upgrading my
database to sql server make it easier?

Sep 10 '07 #4
<sh***@mbproducts.comwrote in message
news:11**********************@o80g2000hse.googlegr oups.com...
>
What would I use to write a web-based front end? Would upgrading my
database to sql server make it easier?

You can pick any favorite web based development system you choose. asp.net
would likely be a good bet for you.

Remember, if you going web based, you really don't need ms-access anymore,a
nd in fact you NOT going to be using ms-access at all. So, wrong tool, wrong
newsgroup, and wrong approach.

You can't make the application web based, but you can STILL allow remote use
of the application OVER the internet. That is quite a different issue, but
one that would allow you to continue to use your current application. I
explain this process here:

http://www.members.shaw.ca/AlbertKallal//Wan/Wans.html

If you need a web based system, then there absolute NO relation to
ms-access, and none of the code, forms, reports etc. can be used. Plain and
simple, ms-access is not a web system and is of no use if you need a web
based application.

--
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada
pl*****************@msn.com
Sep 10 '07 #5
On Sep 10, 11:46 am, sh...@mbproducts.com wrote:
What would I use to write a web-based front end? Would upgrading my
database to sql server make it easier?
Your choice of web based front end is determined by:
a. your skill and knowledgebase in the language you choose
b. the availability of that framework on the server that you choose

There is no soft conversion from taking an Access Form or Report and
putting it in a magic box and out comes a server side web page.

See:
http://members.optushome.com.au/anandasim/asp.htm
SQL Server will do more multi-threading and service more per second
requests from more web visitors.

SQL Server offers you 24x7 database backup - Access files cannot offer
you that.

SQL Server is more powerful and more grunt but it is also more work to
master it.

Both SQL Server and Access do not offer you the equivalent of generic
HTML Forms on the Web.
However, SQL Server does offer you SQL Server Reporting Services which
similar in idea to a Report Writer.
Sep 10 '07 #6
You could try linking Access 2007 to SharePoint.

This works nicely and is very simple to do once SharePoint is
installed and setup for secure access (ssl)

If it's just reporting, then migrate your reports into sql server
reporting services.
This again depends on how complex your reports are, but it is a quick
and simple way of reporting over the internet.

Regards,
Tom Bizannes
Sydney, Australia

Sep 10 '07 #7
SmartbizAustralia wrote:
You could try linking Access 2007 to SharePoint.

This works nicely and is very simple to do once SharePoint is
installed and setup for secure access (ssl)

If it's just reporting, then migrate your reports into sql server
reporting services.
This again depends on how complex your reports are, but it is a quick
and simple way of reporting over the internet.

Regards,
Tom Bizannes
Sydney, Australia
This assumes that all users will use Internet Explorer as their web browser
though right?

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
Sep 10 '07 #8
On Sep 10, 5:57 pm, "Rick Brandt" <rickbran...@hotmail.comwrote:
This assumes that all users will use Internet Explorer as their web browser
though right?
Rick

I am looking at my server's offering as follows:

"SQL Server Reporting Services (SSRS) is a server-based solution that
enables the creation, management, and delivery of both traditional,
paper-oriented reports and interactive, Web-based reports.

SQL Server Reporting Services supports many common data sources, such
as OLE DB and Open Database Connectivity (ODBC), as well as multiple
output formats such as Web browsers and Microsoft Office applications.
SQL 2005 Reporting Services can connect to SQL 2005 or SQL 2000
databases."

Will the "Web-based reports" run/show or whatever on any main-stream
browser such as Firefox, Netscape or Opera, ... or only on Internet
Explorer?

Will the web application from which the SQL reports have to be a .Net
application? (The server is .Net enabled but my application is classic
ASP).

Any comments, gotchas, whatever?

Lyle

Sep 11 '07 #9
lyle wrote:
On Sep 10, 5:57 pm, "Rick Brandt" <rickbran...@hotmail.comwrote:
>This assumes that all users will use Internet Explorer as their web
browser though right?

Rick

I am looking at my server's offering as follows:

"SQL Server Reporting Services (SSRS) is a server-based solution that
enables the creation, management, and delivery of both traditional,
paper-oriented reports and interactive, Web-based reports.

SQL Server Reporting Services supports many common data sources, such
as OLE DB and Open Database Connectivity (ODBC), as well as multiple
output formats such as Web browsers and Microsoft Office applications.
SQL 2005 Reporting Services can connect to SQL 2005 or SQL 2000
databases."

Will the "Web-based reports" run/show or whatever on any main-stream
browser such as Firefox, Netscape or Opera, ... or only on Internet
Explorer?

Will the web application from which the SQL reports have to be a .Net
application? (The server is .Net enabled but my application is classic
ASP).

Any comments, gotchas, whatever?

Lyle
At our company we have only dabbled a bit with reporting services, but none
of the pages we have done so far work in anything besides IE. I don't know
if that is an absolute or just the way it has worked out for our particular
pages.

Up to now I have been assuming that RS was strictly an IE thing, but I would
be glad to be informed otherwise.

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
Sep 11 '07 #10

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

Similar topics

6
by: xmp333 | last post by:
Hi, I have read the MS documentation and researched this matter, but I could not find the answer to my question. If this is online or in a FAQ somewhere, I apologize in advance. How...
5
by: Scott Drane | last post by:
I'm somewhat of a newbie at this, and a bit overwhelmed at all the information (ODBC, ASP, VB, etc). I'm doing a little work on Access for a small company, and someone had the brainstorm that we...
9
by: Daven Thrice | last post by:
If I have a fairly big Access MDB, that is relational, and has, say, 100 objects (forms, reports, modules, etc.), what is the path to get this database "online". Is there a way to put the tables...
1
by: Mike Turco | last post by:
I see quite a few ISP's offering the serving of "ms-access" data. What is the situation with that? Are they offering a service where your tables must be converted to some flavor of SQL and then...
1
by: Miguel Dias Moura | last post by:
Hello, I have a completely dynamic web site all based in one 10 tables included in one Access Database. The web site is all done in ASP.Net / VB. I am looking for an easy way to create an...
9
by: Booster | last post by:
Hop someone can help me Working with access 2000 desktop application I am looking to make connection to a backend access database online on a windows hosting How to connect if possible Many...
3
by: simon.robin.jackson | last post by:
Ok, please bare with me, im not a web developer. I am an intermediate Access database user. We collect data for a company that has 20 monitoring stations. Once a month they collate all the data...
3
by: lokie538 | last post by:
Hi, I have a big Access database that I would like to move online. It has forms, reports, all that, but i want to be able to access it from a webfront, like via IE or firefox and also I would like...
5
by: student2 | last post by:
Hi, I'm trying to help another student in our class to host an Access Database on line for a school project. 1) I tried so with ODBC- DSN (setting this up) 2) Read tutorials and guides on IIS...
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: 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
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:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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...
0
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...
0
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...

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.