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

Accessing DBMS remotely: MySQL? FireBird?

Hi,

Some of our customers have remote offices. I was wondering if it'd be
safe to have a DBMS running at their central office, and have our
client application running on hosts in the branches connect to it
through a VPN via the Net?

What happens if the connection goes south while a branch office was
making changes? Does the DBMS just rollbacks changes automatically
after a time-out?

Should we set up some kind of replication instead?

Also, are there compeling reasons to go for Firebird instead of MySQL?
I don't know enough about the capabilities of each DBMS today to make
an educated choice.

Thank you for any tip
Fred.
Jul 20 '05 #1
10 1894
couple of notes....
Sounds like the app's not browser based.... ( that may take care of your
problem...)
how fast is the link between the offices? I'm sure it's over the internet
right? (no private network).
Don't forget... if data not sensitive, you may not need a vpn. (SLOOOWWW).
Replication models should be based on the "just on time-liness" need of the
data.
do they need it REALtime, NEARtime, or tomorrow? That's the question that
should give you your
replication answer (IMO)
"Fred the man" <fr**@acme.com> wrote in message
news:a1********************************@4ax.com...
Hi,

Some of our customers have remote offices. I was wondering if it'd be
safe to have a DBMS running at their central office, and have our
client application running on hosts in the branches connect to it
through a VPN via the Net?

What happens if the connection goes south while a branch office was
making changes? Does the DBMS just rollbacks changes automatically
after a time-out?

Should we set up some kind of replication instead?

Also, are there compeling reasons to go for Firebird instead of MySQL?
I don't know enough about the capabilities of each DBMS today to make
an educated choice.

Thank you for any tip
Fred.

Jul 20 '05 #2
couple of notes....
Sounds like the app's not browser based.... ( that may take care of your
problem...)
how fast is the link between the offices? I'm sure it's over the internet
right? (no private network).
Don't forget... if data not sensitive, you may not need a vpn. (SLOOOWWW).
Replication models should be based on the "just on time-liness" need of the
data.
do they need it REALtime, NEARtime, or tomorrow? That's the question that
should give you your
replication answer (IMO)
"Fred the man" <fr**@acme.com> wrote in message
news:a1********************************@4ax.com...
Hi,

Some of our customers have remote offices. I was wondering if it'd be
safe to have a DBMS running at their central office, and have our
client application running on hosts in the branches connect to it
through a VPN via the Net?

What happens if the connection goes south while a branch office was
making changes? Does the DBMS just rollbacks changes automatically
after a time-out?

Should we set up some kind of replication instead?

Also, are there compeling reasons to go for Firebird instead of MySQL?
I don't know enough about the capabilities of each DBMS today to make
an educated choice.

Thank you for any tip
Fred.

Jul 20 '05 #3
Also, if you use InnoDB tables, then you won't have a problem if the link
fails provided you use transactions for the SQL. So you turn off auto
commit and then perform the transaction. If there is a network failure,
then the commit never happens and you can simply re-issue the command when
the network link comes back up.
"bobb" <ra*****@hotmail.com> wrote in message
news:3T******************@nwrddc02.gnilink.net...
couple of notes....
Sounds like the app's not browser based.... ( that may take care of your
problem...)
how fast is the link between the offices? I'm sure it's over the internet
right? (no private network).
Don't forget... if data not sensitive, you may not need a vpn. (SLOOOWWW).
Replication models should be based on the "just on time-liness" need of the data.
do they need it REALtime, NEARtime, or tomorrow? That's the question that
should give you your
replication answer (IMO)
"Fred the man" <fr**@acme.com> wrote in message
news:a1********************************@4ax.com...
Hi,

Some of our customers have remote offices. I was wondering if it'd be
safe to have a DBMS running at their central office, and have our
client application running on hosts in the branches connect to it
through a VPN via the Net?

What happens if the connection goes south while a branch office was
making changes? Does the DBMS just rollbacks changes automatically
after a time-out?

Should we set up some kind of replication instead?

Also, are there compeling reasons to go for Firebird instead of MySQL?
I don't know enough about the capabilities of each DBMS today to make
an educated choice.

Thank you for any tip
Fred.


Jul 20 '05 #4
Also, if you use InnoDB tables, then you won't have a problem if the link
fails provided you use transactions for the SQL. So you turn off auto
commit and then perform the transaction. If there is a network failure,
then the commit never happens and you can simply re-issue the command when
the network link comes back up.
"bobb" <ra*****@hotmail.com> wrote in message
news:3T******************@nwrddc02.gnilink.net...
couple of notes....
Sounds like the app's not browser based.... ( that may take care of your
problem...)
how fast is the link between the offices? I'm sure it's over the internet
right? (no private network).
Don't forget... if data not sensitive, you may not need a vpn. (SLOOOWWW).
Replication models should be based on the "just on time-liness" need of the data.
do they need it REALtime, NEARtime, or tomorrow? That's the question that
should give you your
replication answer (IMO)
"Fred the man" <fr**@acme.com> wrote in message
news:a1********************************@4ax.com...
Hi,

Some of our customers have remote offices. I was wondering if it'd be
safe to have a DBMS running at their central office, and have our
client application running on hosts in the branches connect to it
through a VPN via the Net?

What happens if the connection goes south while a branch office was
making changes? Does the DBMS just rollbacks changes automatically
after a time-out?

Should we set up some kind of replication instead?

Also, are there compeling reasons to go for Firebird instead of MySQL?
I don't know enough about the capabilities of each DBMS today to make
an educated choice.

Thank you for any tip
Fred.


Jul 20 '05 #5
On Sun, 02 May 2004 14:48:31 GMT, "bobb" <ra*****@hotmail.com> wrote:
Sounds like the app's not browser based.... ( that may take care of your
problem...)
Indeed. It's written in VB. Until now, customers only used our apps in
a LAN, but some of them now have branches, hence the problem of
accessing data through ADSL with a VPN between the two locations.
how fast is the link between the offices? I'm sure it's over the internet
right? (no private network).
512Kbps at the branch, 1024Kbps at the main office. FWIW, Terminal
Services works very well, which is what I recommended they set up
until we sort things about with a DBMS.
do they need it REALtime, NEARtime, or tomorrow? That's the question that
should give you your >replication answer (IMO)


They make changes to records all day long, so real/near time is a
requirement.

Thank you
Fred.
Jul 20 '05 #6
On Sun, 02 May 2004 14:48:31 GMT, "bobb" <ra*****@hotmail.com> wrote:
Sounds like the app's not browser based.... ( that may take care of your
problem...)
Indeed. It's written in VB. Until now, customers only used our apps in
a LAN, but some of them now have branches, hence the problem of
accessing data through ADSL with a VPN between the two locations.
how fast is the link between the offices? I'm sure it's over the internet
right? (no private network).
512Kbps at the branch, 1024Kbps at the main office. FWIW, Terminal
Services works very well, which is what I recommended they set up
until we sort things about with a DBMS.
do they need it REALtime, NEARtime, or tomorrow? That's the question that
should give you your >replication answer (IMO)


They make changes to records all day long, so real/near time is a
requirement.

Thank you
Fred.
Jul 20 '05 #7
On Mon, 03 May 2004 08:30:39 GMT, "OneSolution"
<on*********@sbcglobal.net> wrote:
Also, if you use InnoDB tables, then you won't have a problem if the link
fails provided you use transactions for the SQL. So you turn off auto
commit and then perform the transaction. If there is a network failure,
then the commit never happens and you can simply re-issue the command when
the network link comes back up.


Cool :-) The documentation didn't make that clear, since they
mentionned isueing the "rollback" command, so I was wondering if it
could be done automagically when a connection is severed halfway
through a transaction.

Thank you
Fred.
Jul 20 '05 #8
On Mon, 03 May 2004 08:30:39 GMT, "OneSolution"
<on*********@sbcglobal.net> wrote:
Also, if you use InnoDB tables, then you won't have a problem if the link
fails provided you use transactions for the SQL. So you turn off auto
commit and then perform the transaction. If there is a network failure,
then the commit never happens and you can simply re-issue the command when
the network link comes back up.


Cool :-) The documentation didn't make that clear, since they
mentionned isueing the "rollback" command, so I was wondering if it
could be done automagically when a connection is severed halfway
through a transaction.

Thank you
Fred.
Jul 20 '05 #9

"Fred the man" <fr**@acme.com> wrote in message
news:eo********************************@4ax.com...
On Sun, 02 May 2004 14:48:31 GMT, "bobb" <ra*****@hotmail.com> wrote:
Sounds like the app's not browser based.... ( that may take care of your
problem...)
Indeed. It's written in VB. Until now, customers only used our apps in
a LAN, but some of them now have branches, hence the problem of
accessing data through ADSL with a VPN between the two locations.
how fast is the link between the offices? I'm sure it's over the internet
right? (no private network).


512Kbps at the branch, 1024Kbps at the main office. FWIW, Terminal
Services works very well, which is what I recommended they set up
until we sort things about with a DBMS.


Yea, I'd think that'd be the way to go. I'm not a big fan of terminal
services (as much as
I was anyway). Without it though, you'd either have to do local app and
then connect (odbc, ado, whatever)
remotely OR worser, remote app + remote database. At least with terminal
services
you take the time-out out of the picture. imo.
good luck.
bobb
do they need it REALtime, NEARtime, or tomorrow? That's the question thatshould give you your >replication answer (IMO)


They make changes to records all day long, so real/near time is a
requirement.

Thank you
Fred.

Jul 20 '05 #10

"Fred the man" <fr**@acme.com> wrote in message
news:eo********************************@4ax.com...
On Sun, 02 May 2004 14:48:31 GMT, "bobb" <ra*****@hotmail.com> wrote:
Sounds like the app's not browser based.... ( that may take care of your
problem...)
Indeed. It's written in VB. Until now, customers only used our apps in
a LAN, but some of them now have branches, hence the problem of
accessing data through ADSL with a VPN between the two locations.
how fast is the link between the offices? I'm sure it's over the internet
right? (no private network).


512Kbps at the branch, 1024Kbps at the main office. FWIW, Terminal
Services works very well, which is what I recommended they set up
until we sort things about with a DBMS.


Yea, I'd think that'd be the way to go. I'm not a big fan of terminal
services (as much as
I was anyway). Without it though, you'd either have to do local app and
then connect (odbc, ado, whatever)
remotely OR worser, remote app + remote database. At least with terminal
services
you take the time-out out of the picture. imo.
good luck.
bobb
do they need it REALtime, NEARtime, or tomorrow? That's the question thatshould give you your >replication answer (IMO)


They make changes to records all day long, so real/near time is a
requirement.

Thank you
Fred.

Jul 20 '05 #11

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

Similar topics

8
by: Lothar Scholz | last post by:
Because PHP5 does not include the mysql extension any more is there a chance that we will see more Providers offering webspace with Firebird or Postgres Databases ? What is your opinion ? I must...
175
by: Sai Hertz And Control Systems | last post by:
Dear all, Their was a huge rore about MySQL recently for something in java functions now theirs one more http://www.mysql.com/doc/en/News-5.0.x.html Does this concern anyone. What I...
39
by: Mairhtin O'Feannag | last post by:
Hello, I have a client (customer) who asked the question : "Why would I buy and use UDB, when MySql is free?" I had to say I was stunned. I have no experience with MySql, so I was left sort...
20
by: Dave | last post by:
Hi I have been asked to implement an error logging/management database for the network technicians in our company. The idea is that staff using workstations can enter a database and log any...
10
by: Mike | last post by:
I recently had a Microsoft Access 97 database corrupt on me. The setup is a split database (front end/back end) setup with about 10-15 users. This is the first corruption in something like a...
3
by: prodirect | last post by:
Hi all, I hope someone can help me. I've recently created a database and wanted to put it up on an ftp sight so that multiple people could access the same tables at the same time from different...
20
by: Vincent V | last post by:
Hey guys im about to start a large project and am wondering what DB server to use I have the Choise of MySql(innodb) or if i pay a bit extra i can get MS SQL 2000 The concerns i have -What type...
1
by: varun chadha | last post by:
i am a newbie to python and is working on an application which needs to connect to the database. can anyone guide me through the DBMS that i can use and the module to connect to it. currently i...
8
AmberJain
by: AmberJain | last post by:
Hello, My new semester has started and I have a subject named DBMS (Database Management System). This is the first time I'm studying databases and so I'm not feeling very enthusiastic about...
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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...
0
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,...

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.