473,387 Members | 1,561 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,387 software developers and data experts.

Database slowdown if you connect to more than one BE?

365 100+
Just wondered really if connecting to multiple BE's makes the database slower in general? I have a project whereby i want to store information in 5 databases (site Specific) but i want some information to be in a common database.

Thanks for any info.

Dan
Mar 27 '10 #1
6 1398
ADezii
8,834 Expert 8TB
Depenidng on the information that you require, why not programmatically Link/Break Links to specific DBs?
Mar 27 '10 #2
Dan2kx
365 100+
Yeah i plan to be able to re-link the different databases, but i need one or two tables to be the same for all databases, this information shouldn't change much and should be quite limited in size, the bulk of the information should grow in these 5 seperate databases, just wondered if this would slow things down, the alternative would be to have this information in each database with some kind of syncronisation required (not best practice huh)

data is stored on a WAN by the way....
Mar 29 '10 #3
Programatically linking / breaking links to tables seems so interesting. Can you please provide more information? Thanx
Mar 29 '10 #4
Dan2kx
365 100+
i do it like this, very simple:
Expand|Select|Wrap|Line Numbers
  1. Function ReMapTable()
  2. Dim tdf As DAO.TableDef
  3.     For Each tdf In CurrentDb.TableDefs
  4.         If Mid$(tdf.Name, 2, 3) <> "Sys" And Left$(tdf.Name, 1) <> "~" Then
  5.             tdf.Connect = ";Database=" &"**Destination**" & "##Database##"
  6.             tdf.RefreshLink
  7.         End If
  8.     Next
  9. End Function
  10.  
that code relinks all tables to a given destination, i also use a function to select my locations, of course the code could be more complex... but i like simples...

Dan
Mar 29 '10 #5
Stewart Ross
2,545 Expert Mod 2GB
Hi. In my experience linking multiple back-end databases does not of itself cause any performance deterioration to the performance of the front-end database. The linked back-end databases do not appear to be accessed by the front end at all until a query referring to tables from that database is executed.

I've seen no evidence so far of any polling or other checking of status of the tables concerned being done when forms etc referring to the linked tables via suitable queries are not open.

I use a reporting front-end system linked permanently to four different back-end systems located in different folders on a network drive with no apparent slow down from the links. Wish I could say the same about the network on which these are located, but that's a different issue!

-Stewart
Mar 29 '10 #6
Dan2kx
365 100+
OK, thanks i will give it a whirl, i can see no other way of doing it easily really, i can maybe create temporary tables if it gets too slow.

Thanks
Mar 29 '10 #7

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

Similar topics

16
by: lkrubner | last post by:
Are there any benchmarks on how much an extra, unneeded VARCHAR, CHAR, INT, BIGINT, TEXT or MEDIUMTEXT slows down a database call with MySql? PostGre info would also be useful. I'm trying to...
4
by: John Morgan | last post by:
I have Enterprise Manager on my local machine. For the last twelve months it has been connecting without problem to my online SQL Server database provided by my ISP. Three weeks ago the ISP...
6
by: Mortrek | last post by:
Hi. We have a .NET programmer using our SQL server. The database is roughly 8GB at this point, full of all of our inventory, payroll data, etc. for running reports. This is on a dual-xeon...
5
by: news | last post by:
Well, I wrote my first PHP class today. Yeah! But to get it to work, in each function within the class I have to repeat the database connection lines, and that just seems redundant; there has to...
10
by: Stephen | last post by:
Hello, Is it normal for plain VACUUM on large table to degrade performance by over 9 times? My database becomes unusable when VACUUM runs. From reading newsgroups, I thought VACUUM should only...
22
by: Bradley | last post by:
Has anyone else noticed this problem? I converted the back-end to A2000 and the performance problem was fixed. We supply a 97 and 2000 version of our software so we kept the backend in A97 to make...
2
by: Buddy Ackerman | last post by:
I have a web app that I have setup on numerous web servers. I've set one up for a new client at their hosting facility and cannot get it to connect to their database. I get a "SQL Server does not...
18
by: surfrat_ | last post by:
Hi, I am having the following problems in getting Microsoft Visual Studio 2005 Professional to link to an Access .mdb database. Please help me to sort this out. Problem 1: The Microsoft...
9
by: Gordon | last post by:
I want to add a feature to a project I'm working on where i have multiple users set up on my Postgres database with varying levels of access. At the bare minimum there will be a login user who...
0
by: guillaume weymeskirch | last post by:
Hello everybody, To test the python 2.5 garbage collector, I wrote a trivial script allocating dummy objects of various sizes, then forgetting them in a loop. The garbage collector seems...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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
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...

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.