Nov 21, 2009
Pages: 1, 2

Accessing Ms Access Database From A Centralized Location?

free web hosting
Open Discussion & Free Web Hosting > Computers & Tech > Databases

Accessing Ms Access Database From A Centralized Location?

himanshurulez
Hi

I am a manager at a trading/wholesaling company (and have no programming background). I customized the Northwind sample access database to make invoices and keep accounts for my company. We now opening another office at a distant location. So, the order entry will be done at two points(we plan to use the same Access database).

I am not able to figure out how to access the same MS Access database from two different location(as LAN can't be used). Moreover, we can't afford to pay huge sums to the software developers.

Can intranet or uploading the database to a web server be a solution to this?? How?? If not, plz suggest something else?

PS: I just need a central location where the database can be stored, and all employees can run and modify the database via internet (or some other source)

Comment/Reply (w/o sign-up)

faulty.lee
What's the UI/Form you're using to do the entry of your data? Another or the built in form in access. My guess is the latter. In that case, there's not much option left. You need to built a VPN network so that the remote client at your new office will appear as if it's running in LAN. I would recommend Hamachi, since it has the a free version for small scale deployment. Once your VPN is up, you simply shared the access file across the network. This might not sounds like a very scalable idea, but since you can't afford software developers, that should be the only way out. Btw, this option also limit you to a few connection per session. Don't expect to connect/run more than 5 client from the remote location, unless you have very reliable and fast internet connection.

If you already have another app to access your "access database", then simply modifying the connection parameter of that app will allow you to connect remotely. You'll need to setup some form of domain name for your main office's internet connection. Try No-Ip or DynDNS.

Webserver won't help, unless you're running a app and you can modify it to connect to database server instead of ms access.

Actually depending on where you're from. Software developer ain't that expensive here in malaysia.

 

 

 


Comment/Reply (w/o sign-up)

himanshurulez
QUOTE(faulty.lee @ Jun 28 2008, 03:52 PM) *
What's the UI/Form you're using to do the entry of your data? Another or the built in form in access. My guess is the latter. In that case, there's not much option left. You need to built a VPN network so that the remote client at your new office will appear as if it's running in LAN. I would recommend Hamachi, since it has the a free version for small scale deployment. Once your VPN is up, you simply shared the access file across the network. This might not sounds like a very scalable idea, but since you can't afford software developers, that should be the only way out. Btw, this option also limit you to a few connection per session. Don't expect to connect/run more than 5 client from the remote location, unless you have very reliable and fast internet connection.

If you already have another app to access your "access database", then simply modifying the connection parameter of that app will allow you to connect remotely. You'll need to setup some form of domain name for your main office's internet connection. Try No-Ip or DynDNS.

Webserver won't help, unless you're running a app and you can modify it to connect to database server instead of ms access.

Actually depending on where you're from. Software developer ain't that expensive here in malaysia.


Hi
Thanks for the reply...I tried ur solution...But I now facing another problem..actually i have used database splitter in MS Access to split the database...now access does some internal coding to link the forms in the spitted database to the tables database...now how do i link the splitted database in the remote location to the tables database in the main server..??

Comment/Reply (w/o sign-up)

faulty.lee
QUOTE(himanshurulez @ Jun 30 2008, 02:20 AM) *
Hi
Thanks for the reply...I tried ur solution...But I now facing another problem..actually i have used database splitter in MS Access to split the database...now access does some internal coding to link the forms in the spitted database to the tables database...now how do i link the splitted database in the remote location to the tables database in the main server..??

It's the same. As long as both the files are in the same folder, it would works. So when you share the folder, with both in it, it should works. I've not tested with a split database before, but I did run with a single database file shared using file sharing, and it works for quite a while now. If you face problem with the link, try map the folder as a drive, say W, so that plugging in thumbdrive won't effect it later on. Then open up the access file with the form, rebuilt the link (tables) from the mapped drive. Do the same mapping for all machine. I believe that should solve your problem, if the earlier solution doesn't work.

Btw, if it works in your lan enviroment before, running under vpn won't be much diff.

Comment/Reply (w/o sign-up)

Darasen
Some how I missed this post when I really should have replied to it. First off I so not know exactly how the DB is being used or how it is currently set up. Nor Do I know how many users are on the DB a each location. Thus I will have make some generalizations.

If your main office has a LAN and you are using an Access application over that LAN that is all well and good. Now your company has decided to open a new office though it seems that the technical considerations have not all been taken into account. That is less good. Commonly in these instances a company will use a high-speed internet provider and VPN to connect the two offices forming a pseudo LAN.

I do not suggest trying to run an MS Access application with a standard client/server configuration using the JET engine over a VPN connection. While this may seem like an easy solution in my professional opinion it is a poor idea. For one the speed of the connection is going to be a major bottle neck. If, for example, you have a super fast internet connection at 10 mbps that is still going to be only a tenth of the transfer rate of a modern LAN. Thus take any transfer time from the current setup in your office, times that by ten and that is the response time the new office can expect. (Note: 10 mbps is being extremely generous and based on your description probably closer to 3 mbps or slower.) Another bad thing about using a VPN with the JET engine is that it simply is not designed to run that way. One of the weaknesses of the JET engine over a VPN idea is that in the event of a disconnect between the two offices during a data transfer the data will become corrupt. Hopefully that idea is out of play now.

Now let us come up with some solutions. One of the first things that needs to take place is dumping the JET database engine. You do not need to do any as fancy as upgrading to MS SQL Server or Oracle or even MySQL. Your Office CD also has on it the rather useful MSDE (Microsoft Database Engine), or use MS SQL server Express; Both are free. The advantages, for your use, are going to be nearly the same as using the full scale SQL server with out the costs and with out the limitations inherent in the JET engine for VPN use. The way the more robust engine works will ease the strain of using a slower connection and eliminate the concerns for file corruption. You can still use the exact same Access front end as well. a small bit of easy coding and your application is set to go.

Another possible solution depends greatly on how exactly your database and your business is set up. If location A deals with customers X,Y, and Z while Location A deals with A,B, and C and up to the minute data synchronization is not factor you have another option. You can run a separate database back end at both locations then merge the data when needed, possibly nightly or weekly. This is called replication and would require a bit more programming work.

I have heard of people using Terminal Services to run Access over but I have no experience in so doing. Also, of course, you can convert the entire project to a web based application.

Lastly if the information in the DB is important and your company takes itself seriously then hire a professional to set it up. I would be willing to bet that the chairs in the conference room cost more each than an hour of an Access developers time.

I hope this information is useful to someone.

Comment/Reply (w/o sign-up)

iGuest-Srikumar Maitra
Connect an MS ACCESS db using VB6 over a VPN connection
Accessing Ms Access Database From A Centralized Location?

For the first time in my life, I am asking a question to a forum. With extreme hope that you will solve my problem, I am describing you the matter.

I have written an application in visual basic 6 that runs in 8 machines under a Local Area Network and accesses a MS ACCESS db. The program is running fine. But, now my client has decided to set up a new branch at a distant location which should be connected to the existing branch. How can I modify/extend my application to handle that situation. I would like to suggest my client to use a VPN connection to connect two branches.

Please help me.

-question by Srikumar Maitra

Comment/Reply (w/o sign-up)

(G)rakesh
Centralized MS Access
Accessing Ms Access Database From A Centralized Location?

Hi ,I want to know about access of centralized MS Access database using java applications. How can I do it?

- Rakesh



Comment/Reply (w/o sign-up)

rnd-am
QUOTE ((G)rakesh @ Jan 29 2009, 06:57 AM) *
Centralized MS Access
Accessing Ms Access Database From A Centralized Location?
Hi ,I want to know about access of centralized MS Access database using java applications. How can I do it? - Rakesh


Hi,

You have to create DSN (DAta Source name) using ODBC manager of Windows Control Panel, and then from Java connect to it using Java's JDBC and passing your newly created DSN as connection string parameter to connect() function

Comment/Reply (w/o sign-up)

(G)Rita Fonseca
CONNECT TO MS-ACCESS DATABASE IN SERVER FROM ANOTHER COMPUTER
Accessing Ms Access Database From A Centralized Location?

I need to connect a MS-acces in a server in my lan but it cannot find it ,  I don't know what to do

$pathDB = str_replace("/", "\\", "10.0.0.1\\Bd\\CENTRAL.Mdb");

 if(!file_exists($pathDB))
 {
  
  echo "! Base de datos no encontrada ".$pathDB;
  exit;
  }
  
  $DNS  =  "DRIVER={Microsoft Access Driver (*.Mdb)}; DBQ=".$pathDB;
  
  $conexion = odbc_connect($DNS, "aaa", "bbb");
  
  $sql="select Desc_Producto from alm_producto where 1";
  $resultado=odbc_exec($conexion,$sql);
  if($resultado)
  {
   while($fila=odbc_fetch_array($resultado))
   {
   echo $fila['Desc_Producto']."<br />";
   
   }
  odbc_close_all();
 } 

-question by Rita Fonseca


Comment/Reply (w/o sign-up)

(G)
I have shared a MS Acess Date Base on LAN and one of LAN client can not access this Data Base (after installing windows again and configuring on domain), reply me in this regards.
Accessing Ms Access Database From A Centralized Location?

I have shared a MS Acess Date Base on LAN and one of LAN client can not access this Data Base (after installing windows again and configuring on domain) but after maping the location of ms access db client can open that db and can't open directly from shared forlder in which I kept ms access db, reply me in this regards.

I think there is a flaw in domain configuring. Is anybody guide me that how I can resolve this matter??? I shall be thankful...


Comment/Reply (w/o sign-up)


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Pages: 1, 2
Similar Topics

Keywords : accessing, ms, access, database, centralized, location,

  1. Free Or Opensource Database/schema Browser?
    Alternatives to TOAD or PL/SQL Developer (6)
  2. How To Understand A Database Schema
    A very nice and simple tutorial (9)
    Yesterday while i'm seaching for a data model and database schema at the Library of Free Data
    Models for a new project of a friend of mine i found there this nice and simple tutorial on How to
    Understand a Database Schema . As its name says, this tutorial will help you to better understand a
    Database Schema and covers the following basics topics that every Database Schema must define:
    QUOTE Primary and Foreign Keys. One-to-Many and Many-to-Many Relationships. Inheritance.
    "Rabbit's Ears", (Recursive relationships). The Scope of this tutorial is ....
  3. Best Database
    (16)
    What is the best free database if some one trying built a social networking website? And how to
    operate it with dreamweaver 8?....
  4. Some Useful Database Links.
    (7)
    I thought I would take a moment to point the users here to some of the database resources available
    for reference and learning. First I will start with actually designing the database. This site by
    R937 covers the basics of database design. The author is professional database guru and a frequent
    helper at the at DB forums listed below. The Library of Free Data Models is an excellent
    resource for finding data models for projects you may have or as examples of well put together data
    models. With around 500 data models the chances are you find something at least cl....
  5. Database Access On Remote Server W/jsp
    (2)
    Hello: I am new to JAVA and server-side applications and have a dumb question. I have set up
    Tomcat on my machine and created a JSP program to query an Access database using a DSN-Less
    connection. If I publish the page to a webserver and include the .MDB file will it work? I'm
    not sure exactly what needs to be packaged with my Java application to make it work. Since I
    don't have a remote server that supports .jsp I cannot really test it. I'm assuming that
    JDBC driver would be bundled with my site but not sure. Thanks!....
  6. Space Needed For Database
    (10)
    Iam assuming the information in the databases i will create will be stored in the 500 MB space i
    get, but since 500MB isn't enough iam wondering if you guys can tell me how much bytes the
    following take: Varchar(x),Tinyint,Text,date,smallint,mediumint,bigint,float.... And the rest
    present when you add/edit a row in a table. Also what are the ranges of tinyint,smallint,mediumint
    and big int....
  7. Mysql Database Entry By Excel Sheets
    (2)
    Hello .. I would like to ask if i can use use Microsoft excel files in order to make entries to
    mysql database. Thanks....
  8. Mysql Database Management
    (1)
    Hi i am new, I have a problem in understanding the query decomposition in D-DB. Can anyone help me
    to understand the first question of the exercise 25.21 of Elmasri-Navath 4th edition? Consider the
    following relations: BOOKS (Book#, Primary_author, Topic, Total_stock, $price) BOOKSTORE (Store#,
    City, State, Zip, Inventory_value) STOCK (Store#, Book#, Qty) Consider a distributed database for a
    bookstore chain called National Books with 3 sites called EAST, MIDDLE, and WEST. Consider that
    BOOKS are fragmented by $price amounts into: B1:BOOK1:up to $20. B2:BOOK2:from ....
  9. Integrate Access Database Onto Intranet Site
    Looking to integrate access database into my intranet site (5)
    Hey guys, im new here and am looking for answers /tongue.gif" style="vertical-align:middle"
    emoid=":P" border="0" alt="tongue.gif" /> Firstly, i have designed a database using M$ access, it
    consists of multiple forms which i plan to host on an intranet website, i need to be able to add
    records directly from the form on the intranet website aswell as being able to edit/review current
    entries on forms in the database. My question is, how would i go about integrating these forms onto
    the intranet website? i plan on keeping the database and the intranet site on the same d....
  10. Database
    prblem with it (1)
    i have free script but it is working fine on a lot of sites i tried to use it to my web site ....i
    edit its config.php right and but my database name and my user name and password every thing right
    and when i try to install it it gives me this error can`t connect to database please choose file
    from this mobile.sql can any body help plz coz i tried huderd of times and no thing happend....
  11. Connecting To A Remote Database
    (9)
    I wondered if anyone here can help. I have a database on a remote server (A). I want to access it
    through a php script on a different server C. I have allowed access on (A) in Cpanel - mysql dbases
    - Remote Access by putting the IP address of server C The host of server (A) has also whitelisted
    the IP of server C. Though I am having trouble connecting from server C which is with a different
    webhost. any ideas how to get round this? I have though of SSH forwarding, but I think this can
    only be used to connect a client - e.g. my pc to the remote server A. I do not ha....
  12. Need Help In Database Auto_increment
    (9)
    i am creating a game and i set when someone registers than he gets id...in "extra" i have set it to
    be "auto_increment" but whenever new player signs up he gets number bigger than 210...(my first id
    was 211,next was 212,third was 213,fourth got 214) how to set it to go from 1 to infinite? thnx....
  13. Access 97 To Access 2003
    (15)
    I need to convert a database that is in Access 97 to Access 2003 but every time i do it using the
    Convert tools of Access 2003 i got some errors and can't change or add any of the objects
    -tables, querys, etc- of the converted database. All the errors i got are related to the user
    priviligies and permissions of the database, is there exists a way or procedure that allows me to
    reset this permissions??? Best regards,....
  14. Access
    Is this easy to make a login/password? (17)
    I was looking to make a site where people need to create an account, and log in to view the main
    pages. Is it easy, or do-able, to use msoft access to make a database where people are able to sign
    up with a username and password via my website?....
  15. My Sql Database Help?
    (3)
    Ok, i am new at web design, i dont know too much about it... I was working on a website for about
    a month this is what i got, My Web , like i said, i dont know much.. i used FrontPage and did all
    of that, my current host is AFMU which uses MySQL, but the way it is set up I dont know how to
    acquire the URL of the database or any information i dont know what it means at all.. i just want to
    do a simple login feature, i mean this is my first website and i am learning so I think it would be
    a great feature to add in and learn. i can create data bases from there but do n....
  16. Permission Problem With Mysql Database Creation
    Please Help! (8)
    I seem to have a problem with accessing my database with proper permissions. I have set the my
    database correctly giving my db username all priviliges yet i seem to be unable to even log on with
    this username with a denied access error. Any ideas on resolving this?....
  17. Is It A Good Practice To Store Image Or Other Binary Files Directly In A Mysql Database
    (6)
    Hello to all of you beautifull people out there, I am new to MySQL, i just wanted to know if its a
    good practice to directly store images and other binary files in a MySQL database. Any one with
    help? Thanks....
  18. MS Access Validation Rule
    Desperate help needed (4)
    I have to create a whole project using Microfost Access. I have a field which will eventaually
    contain details of a a list of people's DOBs. I have added an input mask, so that it it displays
    the place holder __/__/____ However, how can I validate this field. For example, not it is possible
    to type 30/10/1991 . How can this be changed so that it validates it correctly?....
  19. Access -> Mysql
    Converter (8)
    I have a problem. Is any program wchich converts database Access to Mysql ??....
  20. Read/Write Issues After Copying An Access .mdb File
    (4)
    Alright, I'm currently creating an interface program for a MS Access database. I've only
    used Access once in the past but used other DB's a handful of times so I didn't have any
    trouble getting the general program created. My issue arose when I tried to make it so that the
    users needing to use the program can just copy the .exe and the .mdb files and use it. The program
    doesn't require users to share the database but to store their OWN programs information in their
    OWN database, so basically each needs to have their own database with the exact same d....
  21. MS Access DB To Webpage Connection ?
    (6)
    ok .. i have this little problem i am going through ... Leme explain this project of mine first . I
    have a MS Access DB of student fields like ID no, Name, Marks .. etc .. This one Access DB would be
    updated by just adding more rows and would be done on the server. It looks sumthing like this:
    Now .. I have a HTML page that shows this : I would enter the ID number of a student (no
    authentication .. anyone can access anybodys marks), and when i hit submit .. I would be taken to a
    page that gets the values from the ID specified and shows it in the next page. The pa....
  22. MySQL Output Database Question
    (19)
    I am new to MySql and have just created a database after using a script. My problem is not the
    script, but what it says about putting it into the output file. I cant figure out the right terms
    to put it in, I keep getting errors. I try using; SELECT*FROM 'database name' WHERE
    'location' but it isnt working. I'm lost with this stuff, I really am. Can someone
    please help me out?....
  23. MS-database To MySQL
    I'd like to batch them (6)
    Hi, maybe one of you already came across this, so I ask. I'll continue searching on. I've
    got two vocable trainers, one is Windows-native, the other one is on the web. While I can't
    control the output of the Windows-thing (so I can't export them to a *csv or something), I can
    write an import script. But since I'm not that great with Regular Expressions and don't know
    anything about *.mdb (that is MS SQL, isn't it?) files, I would need some finished thing to make
    out the field information and put it in arrays or something more readable. It wou....
  24. The Best Database
    What do you think is the best database? (48)
    Ive been planning to create a online application which requires tons of stuff from database. Ive
    been using interbase, at first it was good but after a month i find it not user friendly at all...
    Its to hard to code in php.. Can any of you guys give me a good database which is easy to use?....
  25. Mirror My MySQL Database To Another Mysql Server
    (7)
    Hi..I want to ask if its possible to automatically mirror my mysql databases into another mysql
    server?or create a small php script to do this? The reason is because, we all know that database is
    very improtant if we have dynamic website. I have my forum hosted and i want to automatically
    mirror this or backup into another mysql server(free). Like in freesql.org. So that im not afraid
    that i forgot to backup my database..also i have one central backup database. Thanks for the
    help..Im looking forward for this posibility.....
  26. Need Advice On Creating Online Music Database
    ps - dont know anything about databases! (6)
    I need to create a database of around 1000 music albums that I can put on my site, with the ability
    to search the database according to several different criteria. Being a complete and total NOOB to
    the world of databases, can anyone point me in the direction of some software that will let me
    create a good-looking and functional database, but that isn't too complicated for me to use?!
    Sounds like a tall order I know, be grateful if anyone can help though. Thanks!
    Notice from microscopic^earthling: Topic edited to reflect content....
  27. MySQL Database Problems
    (8)
    My friends have a little forum running here . The problem is that quite often we get the following
    message when we try to open the page: QUOTE Warning: mysql_connect(): Can't connect to
    local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) in
    /home/vhosts/rohit.bizhat.com/forums/db/mysql4.php on line 48 Warning: mysql_error(): supplied
    argument is not a valid MySQL-Link resource in /home/vhosts/rohit.bizhat.com/forums/db/mysql4.php on
    line 330 Warning: mysql_errno(): supplied argument is not a valid MySQL-Link resource in
    /home/vhosts/roh....
  28. How Can I Import Csv Files To My MySQL Database?
    I was able to export but where's import? (3)
    I am having hard times finding that import csv in the mysql phpmyadmin. I once worked on some csv
    files and someone imported it on the mysql server. I was not able to ask him. Does someone know how
    can I import csv files in mysql server?....
  29. Embedded Database
    Embedded Data base at client side, (7)
    Hi, Now its the era of Embedded databases, no more db servers, no more host,Because with embedded
    db you can get all those options, what you are used to get with DB Servers. Some of Embedded DB Are
    1) Cloudscape From IBM (NOW Derby from ASF) 2) HSQLDB (OpenSource) and many more Feel the power of
    EDB Cheers Arunkumar.H.G....
  30. phpBB Database Transfer
    Anyone here knows how to? (10)
    Hello, i'm a newbie in using phpBB and I still lack knowledge in mySQL database. How do I
    transfer the datas(users,configs, all of them) contained in my current forum to another one in
    phpBB? I hope someone can help, a short but detailed tutorial would be good. Example is, if I want
    to move to a new host and I want to transfer all the accounts on my old forum to the new one. Thanks
    in advance, hope anyone here knows how to.....

    1. Looking for accessing, ms, access, database, centralized, location,

See Also,

*SIMILAR VIDEOS*
Searching Video's for accessing, ms, access, database, centralized, location,
advertisement



Accessing Ms Access Database From A Centralized Location?

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com