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

Split DB over the internet with SQL backend?

I just read at
http://groups.google.com/group/micro...7d5504ee848c21
that if you have a spilt db using SQL server rather than jet, the
front-end's can connect to the backend SQL server over the internet.

Has anyone had experience with this?

We are thinking of migrating an commercially sold Access97 runtime app to
Access 2007 and if this is true it may well pay to redo the backend in SQL
Server so users can use over the net if needed. What other upsides/downsides
are there to this?

Do 'little' end-users have to be rocket scientists to install and maintain
SQL server? $? Currently they only have to place one MDB backend file on a
shared fileserver. Some of them only have 5 PC's networked in their
business. Others have 500.

TIA
Apr 21 '06 #1
19 4306
Baz

"Mark 123" <no**@none.com> wrote in message
news:TV********************@news.xtra.co.nz...
I just read at
http://groups.google.com/group/micro...7d5504ee848c21 that if you have a spilt db using SQL server rather than jet, the
front-end's can connect to the backend SQL server over the internet.

Has anyone had experience with this?

We are thinking of migrating an commercially sold Access97 runtime app to
Access 2007 and if this is true it may well pay to redo the backend in SQL
Server so users can use over the net if needed. What other upsides/downsides are there to this?

Do 'little' end-users have to be rocket scientists to install and maintain
SQL server? $? Currently they only have to place one MDB backend file on a
shared fileserver. Some of them only have 5 PC's networked in their
business. Others have 500.

TIA


Yes, that is quite possible. However, it will not be super-fast. How
practical it is depends on what the system is actually doing and what kind
of bandwidth is available. Also, anytime you use the internet, you are at
the mercy of a lot of widely-distributed technology and a lot of 3rd-party
companies, so you need to accept that the link may sometimes be down for
reasons completely out of your control.

For security resons, this should really only be done using a VPN.

Migrating an mdb to SQL Server is not a trivial exercise, a complete reveiw
of your design is necessary to get the best out of the very different
architecture, particularly if you are contemplating the use of a slow
connection i.e. the internet.

It is perfectly possible to deliver SQL Server to end users in such a way
that they can set it up and use it without any DBA know-how.
Apr 22 '06 #2
How fast is super fast?

I use an SQL db that lives on a Server in California (I am 4200 km
away), with front ends as HTA and Access ADPs on laptops and as ASP on
my web server. These are used in Canada, and from time to time in
England, France, Germany, The Czech Republic and Bulgaria.
I can recall only once that the connections have failed, and that for a
period of about 5 minutes. It's not noticeably slower than a mdb on my
own workstation.
One can get an idea of speed (and the power of ADO) by opening
http://www.ffdba.com/columns.aspchoosing some columns to show and
clicking submit, or not choosing any columns and clicking submit.

This is a very simple support db for my and relatives business account
keeping. You will find nothing complex here, and perhaps you will
realize that the whole thing has grown without much direction.

Regardless, for me in Ontario, listing the basic Table Schema for 27
tables takes less than one tenth of one second (that is the server work
takes less than one tenth of one second; the time for the html to be
sent to and displayed by my workstation is additional, but it seems to
be almost nothing). As more columns are added, more time is required,
but even with all columns selected the time is less than one-half a
second.

I have no difficulty matching or beating these results with a desktop
application using the same db.

Apr 22 '06 #3
The link should be
http://www.ffdba.com/columns.asp

Apr 22 '06 #4
"Mark 123" <no**@none.com> wrote in message
news:TV********************@news.xtra.co.nz...
I just read at
http://groups.google.com/group/micro...7d5504ee848c21
that if you have a spilt db using SQL server rather than jet, the
front-end's can connect to the backend SQL server over the internet.

Has anyone had experience with this?

We are thinking of migrating an commercially sold Access97 runtime app to
Access 2007 and if this is true it may well pay to redo the backend in SQL
Server so users can use over the net if needed. What other
upsides/downsides
are there to this?

Do 'little' end-users have to be rocket scientists to install and maintain
SQL server? $? Currently they only have to place one MDB backend file on a
shared fileserver. Some of them only have 5 PC's networked in their
business. Others have 500.

TIA

I have done this without any problems with speed or reliability. I went to
a web host (http://www.fasthosts.co.uk) to provide space on a SQL Server
database which gave me some control over the setup (eg able to add logins)
but not total control of the machine.
It was set up with port 1433 open and no vpn, so provided you knew an ip
address and username/password you could sit down anywhere in the world and
access the data. This configuration is not the most secure (the data was
not overly precious) and although I can't prove the data was not looked at
by unauthorised people, I doubt it very much and I am sure it was not
tampered with in any way.

If the sole purpose of the exercise is to enable the database over the web,
then moving to SQL Server may not be the best option. There are other ways
such as Terminal Services or PC Anywhere where users could remote control
another machine to access the database. This has the advantage that you do
not need to modify your coding in any way at all, and any questions of
setup/security are now someone else's problem.

If, however, you think you may need to build up some experience with SQL
Server in any case, then you might want to install it on your local network
and get the db up and running and tuned for SQL Server (you could
potentially do a lot of re-coding for this). Once the app is up and
working, you could build a setup module which creates a new copy of the
database and any other initialisation.

I would guess that customers with 500 pcs might already have their own SQL
database together with a salaried db administrator who would be quite happy
to look after the database. For smaller customers, you could do the setup
and keep a watchful eye over it and charge for this service.
Apr 22 '06 #5
Baz
"Lyle Fairfield" <ly***********@aim.com> wrote in message
news:11**********************@i39g2000cwa.googlegr oups.com...
How fast is super fast?

LAN = 100 Mbit. VPN over the internet = depends on the bandwidth at each
end, but much, much slower than 100 Mbit.
I use an SQL db that lives on a Server in California (I am 4200 km
away), with front ends as HTA and Access ADPs on laptops and as ASP on
my web server. These are used in Canada, and from time to time in
England, France, Germany, The Czech Republic and Bulgaria.
I can recall only once that the connections have failed, and that for a
period of about 5 minutes. It's not noticeably slower than a mdb on my
own workstation.

So what? That's an entirely subjective impression, you've given no
information about the nature of the application, the amount of traffic, the
available bandwidths and so on. The original poster simply talked about
connecting client and server over the internet, he could be talking about
dialup for all you know, and if you want to give him the impression that
he's gonna get the same response over a 56k dialup as he gets over a 100
Mbit LAN then you are not helping him at all.

FWIW, I'm currently connecting to a customer's database over a VPN where the
server is sitting on the end of a leased line in London, I have a 1 Mbit
ADSL connection, and the users in China, I'm not sure what they have.
However, it IS much slower than using the app locally on their LAN. Quite
usable, but definitely slower. Sure, the app isn't designed with slow
connections in mind, but nor is the original poster's: an app which is being
converted to client/server from an old mdb app is likely to be pretty
profligate as regards it's use of the database engine.

The point about reliability is that, when it does go wrong, it is entirely
out of your hands. Jeez, it might take an hour just to get an ISP to answer
the phone!
One can get an idea of speed (and the power of ADO) by opening
http://www.ffdba.com/columns.aspchoosing some columns to show and
clicking submit, or not choosing any columns and clicking submit.

This is a very simple support db for my and relatives business account
keeping. You will find nothing complex here, and perhaps you will
realize that the whole thing has grown without much direction.

Regardless, for me in Ontario, listing the basic Table Schema for 27
tables takes less than one tenth of one second (that is the server work
takes less than one tenth of one second; the time for the html to be
sent to and displayed by my workstation is additional, but it seems to
be almost nothing). As more columns are added, more time is required,
but even with all columns selected the time is less than one-half a
second.

I have no difficulty matching or beating these results with a desktop
application using the same db.


What the hell has that got to do with it? The OP is asking about splitting
Access client and SQL Server database over the internet, and you present an
ASP application as an example. It's completely irrelevant.
Apr 23 '06 #6
The ADO technology used by the ASP application and the ADO technology
used by an Access ADP or an HTA are identical. It is ADO that connects
to and communicates with the SQL-Server.
It is true that the ASP/ADO connection is not following the same route
across the internet as an ADP would; on the other hand, as I pointed
out, to accommodate different needs I have created almost identical ASP
and HTA applications. The HTA applications run solely on the
workstation and there is no noticeable difference in their performance.
(A subjective opinion is that they are faster.) As I have pointed out,
they have been used across Europe without any troubles with speed. I
have sat at night and discussed transactions we were both looking at
(in the HTA) with colleagues on Yahoo Server. When she updated a record
and saved the changes were immediately visible to me upon a refresh.
Speed was never a problem. It would be quite tedious to provide an ADP
or HTA example as one would have to do considerable work to protect
logons and passwords; I felt the columns ASP was an example that showed
the potential for MS-SQL over internet.
BTW, the Columns ASP is simply a port of a reference page from an
application that accommodates, among many other things, execution of
dynamically created SQL strings and/or the display of recordsets from
same. I mention this to point out that MS-SQL over the net is entirely
manageable.
Of course, I do not know the internet connection speed of the OP and
his clients. If he is using or testing a 56k dial up, then he'll be
aware that everything is dead slow. But I doubt that he is. I have
created, sold and delivered ADP applications that connected to MS-SQL
over the internet. Both were programmed to use an internet connection
to the Server when the local connection was not available. Managers
used these applications when they travelled, perhaps with different
speeds and qualities of connections. Again, there were no problems.
Clearly, you and I live in different worlds. One does not wait for an
hour for an ISP response to a problem here.
You have mentioned the design of the application as a factor in speed
and reliability. Some of the examples I have given are ADPs with bound
forms no different from MDBs using local tables. ADP connections are
surely not efficient as there are often multiple connections from one
ADP.
I believe the OP wanted to know if Access-MS-SQL over the net
applications are feasible and from experience, at least five years of
experience, I can say, "Yes!"

Apr 23 '06 #7
BTW I emulated the columns.asp in both an ADP and an HTA. The ADP took
about twice as long, nearly a second for all the columns. The HTA took
about half as long, about a quarter of a second. I think I could live
with a second, but I suppose this might make one think ADPs are slow.
IMO, they are.

Apr 23 '06 #8
Per Anthony England:
This has the advantage that you do
not need to modify your coding in any way at all,


A small nit: If you are using local work tables and are not adhering to the MS
standard that says those tables should be under C:\Documents and
Settings\[UserName], you will have to rewrite whatever code you use to create
work tables and also do some kind of workaround for MakeTable queries that write
to a temp DB.
--
PeteCresswell
Apr 23 '06 #9
"(PeteCresswell)" <x@y.Invalid> wrote in
news:s6********************************@4ax.com:
Per Anthony England:
This has the advantage that you do
not need to modify your coding in any way at all,


A small nit: If you are using local work tables and are not
adhering to the MS standard that says those tables should be under
C:\Documents and Settings\[UserName], you will have to rewrite
whatever code you use to create work tables and also do some kind
of workaround for MakeTable queries that write to a temp DB.


First off, it's only necessary to do that if you can't count on your
users running as administrators on the local PC. This will likely
not be the case in situations where they are authenticating against
a domain controller, but for peer-to-peer networks of standalone PCs
configured according to MS's default configuration, they will be
running as admin (which is bad, of course).

Secondly, the issue is really quite irrelevant if you've configured
your Access app sensibly. The temp MDB should just reside in the
same folder as the application front end. It doesn't need to be
recreated each time it's used. If the user has write access to the
location where the front end is stored, it will also have write
access to the temp database.

The only wrinkle is in the first time the front end is installed the
links for the temp tables (assuming you're using links) will have to
be updated to point to the same folder that the front end resides
in. This is a one-time operation and can be done transparently
without the user ever noticing.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Apr 23 '06 #10
"(PeteCresswell)" <x@y.Invalid> wrote in
news:s6********************************@4ax.com:
If you are using local work tables and are not adhering to the MS
standard that says those tables should be under C:\Documents and
Settings\[UserName], you will have to rewrite whatever code you
use to create work tables and also do some kind of workaround for
MakeTable queries that write to a temp DB.


Another note on this:

The MS standard has nothing to do with "those tables" and where they
should be stored. It's simply a result of locking down the system to
prevent modification of system and application files by
non-administrative user processes.

Under the default locked-down scenario (in place since Win2K, i.e.,
since 1999!), any user data that has to be writable (which includes
an Access front end MDB) must be stored under the user's profile,
which is globally writable to user-level logons (which is what
should be in use, rather than admin-level logons).

Another advantage of this is that in a domain where roaming profiles
are in use, the user's same front-end MDB will be available at any
workstation they sit down at. If you're storing user settings in
that front end (either in tables or database properties), those will
follow a user with roaming profiles *if* the front end is stored in
a folder under the user's pofile folder.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Apr 23 '06 #11
Per David W. Fenton:
Under the default locked-down scenario (in place since Win2K, i.e.,
since 1999!), any user data that has to be writable (which includes
an Access front end MDB) must be stored under the user's profile,
which is globally writable to user-level logons (which is what
should be in use, rather than admin-level logons).


You can probably settle this then: Would it be legit to stash those temp tables
under Documents and Settings/All Users?

I say "no" - that it would be an end run around the spirit of the standard....
I'm hoping that's the answer because it's something I wasn't bright enough to
think of before I started re-writing all my code to work under Documents and
Settings\[UserName\....
--
PeteCresswell
Apr 24 '06 #12
You don't have to be a rocket scientist to use SQL
Server, but if you haven't done it before, you can't
maintain, backup, or restore. And when your server
goes down because you didn't truncate the logs, you
won't know what to do about it.

It's no more difficult than using Windows. It's no
less difficult than using Windows for the first time
(if anyone else here is old enough to remember that).

DAO transactions are broken in Access 2K+/Jet 4.
If you have transactions in your code, you need to
remove them or re-write the whole transaction as
a stored procedure.

(david)

"Mark 123" <no**@none.com> wrote in message
news:TV********************@news.xtra.co.nz...
I just read at
http://groups.google.com/group/micro...7d5504ee848c21
that if you have a spilt db using SQL server rather than jet, the
front-end's can connect to the backend SQL server over the internet.

Has anyone had experience with this?

We are thinking of migrating an commercially sold Access97 runtime app to
Access 2007 and if this is true it may well pay to redo the backend in SQL
Server so users can use over the net if needed. What other
upsides/downsides
are there to this?

Do 'little' end-users have to be rocket scientists to install and maintain
SQL server? $? Currently they only have to place one MDB backend file on a
shared fileserver. Some of them only have 5 PC's networked in their
business. Others have 500.

TIA

Apr 24 '06 #13
Baz
"Lyle Fairfield" <ly***********@aim.com> wrote in message
news:11**********************@v46g2000cwv.googlegr oups.com...
The ADO technology used by the ASP application and the ADO technology
used by an Access ADP or an HTA are identical. It is ADO that connects
to and communicates with the SQL-Server.
It is true that the ASP/ADO connection is not following the same route
across the internet as an ADP would; on the other hand, as I pointed
out, to accommodate different needs I have created almost identical ASP
and HTA applications. The HTA applications run solely on the
workstation and there is no noticeable difference in their performance.
(A subjective opinion is that they are faster.) As I have pointed out,
they have been used across Europe without any troubles with speed. I
have sat at night and discussed transactions we were both looking at
(in the HTA) with colleagues on Yahoo Server. When she updated a record
and saved the changes were immediately visible to me upon a refresh.
Speed was never a problem. It would be quite tedious to provide an ADP
or HTA example as one would have to do considerable work to protect
logons and passwords; I felt the columns ASP was an example that showed
the potential for MS-SQL over internet.
BTW, the Columns ASP is simply a port of a reference page from an
application that accommodates, among many other things, execution of
dynamically created SQL strings and/or the display of recordsets from
same. I mention this to point out that MS-SQL over the net is entirely
manageable.
Of course, I do not know the internet connection speed of the OP and
his clients. If he is using or testing a 56k dial up, then he'll be
aware that everything is dead slow. But I doubt that he is. I have
created, sold and delivered ADP applications that connected to MS-SQL
over the internet. Both were programmed to use an internet connection
to the Server when the local connection was not available. Managers
used these applications when they travelled, perhaps with different
speeds and qualities of connections. Again, there were no problems.
Clearly, you and I live in different worlds. One does not wait for an
hour for an ISP response to a problem here.
You have mentioned the design of the application as a factor in speed
and reliability. Some of the examples I have given are ADPs with bound
forms no different from MDBs using local tables. ADP connections are
surely not efficient as there are often multiple connections from one
ADP.
I believe the OP wanted to know if Access-MS-SQL over the net
applications are feasible and from experience, at least five years of
experience, I can say, "Yes!"


I never said they weren't feasible, in fact I said completely the opposite.
However, the OP needs to think about all the ins-and-outs of it, rather than
just be told "yeah, that'll work". If you truly believe that an Access app,
with probably lots of combos and list boxes, and record sources potentially
consisting of thousands of rows, is gonna be as fast over a VPN as it is on
a LAN then you are living in la-la land. It's got nothing to do with ADO,
it's all about how the app is designed, how many queries it generates, and
the volume of data they return. And that's not even to begin thinking about
factors like the sub-optimal speed of many DSL connections - many of them do
not achieve their nominal bandwidth, and that's BEFORE you take contention
into consideration.

Is it feasible? Yes, of course it is. Is it slower? Without a shadow of a
doubt. Would the OP notice, or care? I have no idea, he needs to do his
homework, do some testing, and draw his own conclusions.

In terms of application design, there are all sorts of things you can do in
an Access app if you know it is going to be used over a slow connection.
Just as one simple example, you could use ODBC rather than ADP and create
local copies of all the "static" tables which populate the combo boxes and
such like. Bit slower to launch the app, 'cos the local copies have to be
refreshed, but more efficient thereafter.
Apr 24 '06 #14
Baz

"Lyle Fairfield" <ly***********@aim.com> wrote in message
news:11**********************@t31g2000cwb.googlegr oups.com...
BTW I emulated the columns.asp in both an ADP and an HTA. The ADP took
about twice as long, nearly a second for all the columns. The HTA took
about half as long, about a quarter of a second. I think I could live
with a second, but I suppose this might make one think ADPs are slow.
IMO, they are.


An SQL Profiler trace for each scenario would most likely have been
illuminating. Whenever I have found an ADP to be slow, it's always because
it's doing something dumb query-wise, which can be fixed once you are aware
of it.
Apr 24 '06 #15
Baz

"david epsom dot com dot au" <david@epsomdotcomdotau> wrote in message
news:44***********************@lon-reader.news.telstra.net...
You don't have to be a rocket scientist to use SQL
Server, but if you haven't done it before, you can't
maintain, backup, or restore. And when your server
goes down because you didn't truncate the logs, you
won't know what to do about it.

If you distribute packaged apps then it's a good idea to supply simple forms
to enable users to do these things, or have them done automatically. I've
had customers running Access/SQL Server apps for years without any DBA
intervention, and they do backups/restores themselves using the simple
facilities I provide. I generally encourage them to use simple recovery,
which they are usually happy with 'cos then they don't have to get to grips
with log files.
It's no more difficult than using Windows. It's no
less difficult than using Windows for the first time
(if anyone else here is old enough to remember that).

DAO transactions are broken in Access 2K+/Jet 4.
If you have transactions in your code, you need to
remove them or re-write the whole transaction as
a stored procedure.

(david)


Apr 24 '06 #16
"(PeteCresswell)" <x@y.Invalid> wrote in
news:m9********************************@4ax.com:
Per David W. Fenton:
Under the default locked-down scenario (in place since Win2K,
i.e., since 1999!), any user data that has to be writable (which
includes an Access front end MDB) must be stored under the user's
profile, which is globally writable to user-level logons (which is
what should be in use, rather than admin-level logons).
You can probably settle this then: Would it be legit to stash
those temp tables under Documents and Settings/All Users?


I'm not sure.

Shortcuts put in the All Users desktop show up there, but in some
versions of Windows, if you try to delete a shortcut from your
desktop that is from the All Users desktop, you get a potentially
confusing error message (I read that Vista will increase this kind
of confusion). Perhaps this happens only when an administrator
deletes an All Users shortcut.

So, I don't know what happens for certain with data files placed in
All Users.

I would say that it's probably *not* the right place for the MDB,
but probably OK for the shortcut to it (which can use an environment
variable to determine which front end gets opened).
I say "no" - that it would be an end run around the spirit of the
standard.... I'm hoping that's the answer because it's something I
wasn't bright enough to think of before I started re-writing all
my code to work under Documents and Settings\[UserName\....


I don't see why you want to bother hardwiring any paths at all. It
makes no sense to me.

Just do it right, Pete. Do it once and you're done for good.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Apr 24 '06 #17
"Lyle Fairfield" <ly***********@aim.com> wrote in
news:11**********************@v46g2000cwv.googlegr oups.com:
The ADO technology used by the ASP application and the ADO
technology used by an Access ADP or an HTA are identical. It is
ADO that connects to and communicates with the SQL-Server.
But you were responding to this:

"Baz" <ba**@REMOVEbcap.THEeuro1net.CAPScom> wrote in
news:e2**********@news.e7even.com:
What the hell has that got to do with it? The OP is asking about
splitting Access client and SQL Server database over the internet,
and you present an ASP application as an example. It's completely
irrelevant.


which was itself written in response to these paragraphs of yours:
One can get an idea of speed (and the power of ADO) by opening
http://www.ffdba.com/columns.aspchoosing some columns to show and
clicking submit, or not choosing any columns and clicking submit.

This is a very simple support db for my and relatives business
account keeping. You will find nothing complex here, and perhaps
you will realize that the whole thing has grown without much
direction.

Regardless, for me in Ontario, listing the basic Table Schema for
27 tables takes less than one tenth of one second (that is the
server work takes less than one tenth of one second; the time for
the html to be sent to and displayed by my workstation is
additional, but it seems to be almost nothing). As more columns
are added, more time is required, but even with all columns
selected the time is less than one-half a second.

I have no difficulty matching or beating these results with a
desktop application using the same db.


This is *clearly* describing an ASP app, not an HTA.

So Baz's point was absolutely correct *in regard to what you wrote*,
as opposed to what you might have been thinking.

And I don't believe the HTA and the ASP application can possibly be
the same speed.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Apr 24 '06 #18
Per David W. Fenton:
I would say that it's probably *not* the right place for the MDB,
but probably OK for the shortcut to it (which can use an environment
variable to determine which front end gets opened).
I say "no" - that it would be an end run around the spirit of the
standard.... I'm hoping that's the answer because it's something I
wasn't bright enough to think of before I started re-writing all
my code to work under Documents and Settings\[UserName\....


I don't see why you want to bother hardwiring any paths at all. It
makes no sense to me.

Just do it right, Pete. Do it once and you're done for good.


That's what I'm in the home stretch doing right now.

Your observation in another post about VPN/RemoteDesktop friendliness pretty
much disposes of the notion of putting things under "All Users"....

I've got my little scheme working on one app already.

To do another, I just have to make up my mind what to do with MakeTable queries.
At the moment, I think I'll just replace them with a model table copy plus an
Append query.
--
PeteCresswell
Apr 24 '06 #19
Mark 123 wrote:
I just read at
http://groups.google.com/group/micro...7d5504ee848c21
that if you have a spilt db using SQL server rather than jet, the
front-end's can connect to the backend SQL server over the internet.

Has anyone had experience with this?

We are thinking of migrating an commercially sold Access97 runtime app to
Access 2007 and if this is true it may well pay to redo the backend in SQL
Server so users can use over the net if needed. What other upsides/downsides
are there to this?

Do 'little' end-users have to be rocket scientists to install and maintain
SQL server? $? Currently they only have to place one MDB backend file on a
shared fileserver. Some of them only have 5 PC's networked in their
business. Others have 500.

TIA


You should be able to get an ISP to provide backed-up hosting with some
kind of SQL Server backend for under $20 per month. That should save
you a lot of headaches until you're ready to try SQL Server
administration on your own. I have interacted with the same hosted
data using both ADP and ASP. There are several more 'gotchas' when
using ASP's, but once solved an ASP-style route is my personal
preference. It worked so well that I didn't need to optimize it to
take advantage of SQL Server's capabilities.

James A. Fortune
CD********@FortuneJames.com

Disclaimer:

I've had classes where the Navier-Stokes' Equations were derived. I've
come up with improvements in the convergence of Patankar's
computational fluid dynamic (CFD) methods. I've solved problems using
the differential and integral forms of the Mass, Momentum, Energy and
Moment of Momentum (turbine design) Equations. I've solved partial
differential equations involving heat transfer and fluid flow in
turbulent boundary layers and understand how conformal mapping helps in
designing airplane wings. I've designed fin shapes that maximize heat
dissipation. So, technically speaking, I'm a rocket scientist.

The shapes of the first modern airplane wings were based on the
cross-section of a trout. -- Von Karmen

Apr 25 '06 #20

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

Similar topics

13
by: Larry L | last post by:
Access is noted for bloating a database when you add and delete records frequently. I have always had mine set to compact on close, and that works great. Now after everyone's advice I split my...
1
by: Tardus Merula | last post by:
We have just put a new samba server on the lab premises and upgradede all workstations to 100 MB/s, in order to avoid using 10-mile radio link, hoping that this would enable us to operae our...
7
by: nydiroth | last post by:
Our servers went down for over 6 hours yesterday and I was asked if there was a way to store the database on the server and a local station at the same time. My datbase is split and the tables...
4
by: carriolan | last post by:
Hi I have managed to secure a split database. Both frontend and backend share a common workgroup, common security groups and common users and permissions, but as in all good stories there is a...
11
by: ShyGuy | last post by:
Is there a simple way to allow someone to access a backend on my computer with another person over the internet?
8
by: FireGeek | last post by:
I have a database that is split appropriately. Annually, we need to add data from .xls files. I have added code so with a click of a button, it will import this data as a new table into the...
2
by: Brian K. | last post by:
I've read several posts on this problem, since it's happening to me right now. Can't seem to get rid of this. Using A2K2 on a large XP network. PC front ends linked to a backend on a shared...
1
by: dhookings | last post by:
I have a fairly simple, split, Access 2000 database which logs data gathered externally. There is just one form which inputs the data once a minute through an rs232 control. The form has a graph...
1
by: G Gerard | last post by:
Hello I have managed to map an FTP site as a drive on my computer ( I think - not sure if it is really mapped - although it appear with the rest of the mapped drive on my system, there is no...
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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
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.