179ab Front End / Back End Questions
Sign Up |  Live StatsLive Stats    Articles 37,351| Comments 177,417| Members 19,424, Newest yashpal singh| Online 444
Home Contact
 (Forgotten?): 
    Sikhism
    For best SPN experience, use Firefox Internet Browser!


                                                                   Your Banner Here!    




Click Here to Register/Sign Up Daily Hukamnama Member Blogs Downloads Website Navigation Help Fonts Tags

Front End / Back End Questions

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 500 USD, Received: 115 USD (23%)
Please Donate...
     
Related Topics...
Thread Thread Starter Forum Replies Last Post
Back end Front end file locations Mary Ann Information Technology 3 28-Jul-2006 08:29 AM
Access 2003 Front end SQL Server 2000 Back end via ODBC Siross Information Technology 0 28-Jul-2006 08:28 AM
back end 2000 front end 2002-2003 simcon Information Technology 2 28-Jul-2006 08:26 AM
front end/back end Kate Information Technology 14 28-Jul-2006 08:23 AM
Compact and repair Back End From Front End at Runtime bobdydd Information Technology 2 28-Jul-2006 08:03 AM


Tags
back, end, front, questions
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:39 AM
iMike12345's Avatar iMike12345
Guest
 
Posts: n/a
   
   
Front End / Back End Questions

  Donate Today!   Email to Friend  Tell a Friend   Show Printable Version  Print   Contact sikhphilosophy.net Administraion for any Suggestions, Ideas, Feedback.  Feedback  

Register to Remove Advertisements
All:

I have a question on this setup. I created a front end / back end
database and deployed the front end to some users for testing. The
backend was on the server where I reside. The users were in other sites
and stated the reponse time was a killer and everything ran very slow.
When a put a local copy of the whole database on their server (not
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/13755-front-end-back-end-questions.html
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13755
split), they said it ran fast. What is the best option for me here? All
users in 4 different sites must have access to the same tables for data
entry purposes (updates). I really don't want to do replication, bt
will consider it. Any ideas?

Mike



Got anything to share on This Topic? Why not share your immediate thoughts/reaction with us! Login Now! or Sign Up Today! to share your views... Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 28-Jul-2006, 08:39 AM
Joseph Meehan's Avatar Joseph Meehan
Guest
 
Posts: n/a
   
   
Re: Front End / Back End Questions

iMike12345 wrote:
> All:
>
> I have a question on this setup. I created a front end / back end
> database and deployed the front end to some users for testing. The
> backend was on the server where I reside. The users were in other
> sites and stated the reponse time was a killer and everything ran
> very slow. When a put a local copy of the whole database on their
> server (not split), they said it ran fast. What is the best option
> for me here? All users in 4 different sites must have access to the
> same tables for data entry purposes (updates). I really don't want to
> do replication, bt will consider it. Any ideas?
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13755
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13755
>
> Mike


Access does not like working over a marginal LAN. I would not recommend
it for use on a WAN. Could that be the problem?

--
Joseph Meehan

Dia duit


Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:39 AM
Larry Linson's Avatar Larry Linson
Guest
 
Posts: n/a
   
   
Re: Front End / Back End Questions

"iMike12345" wrote

> . . . I created a front end / back end
> database and deployed the front end
> to some users for testing. The backend
> was on the server where I reside. The
> users were in other sites and stated the
> reponse time was a killer and everything
> ran very slow. When a put a local copy
> of the whole database on their server (not
> split), they said it ran fast. What is the
> best option for me here? All users in 4
> different sites must have access to the
> same tables for data entry purposes
> (updates). I really don't want to do
> replication, bt will consider it. Any
> ideas?


Joseph is correct that a split Access - Jet database application on a WAN or
even an old, slow LAN requires Very Patient Users (and those, in my
experience are rare). The reason for this is the way Access (or any
file-server database) works... the remote backend simply is a data
repository, and all the data that would normally be retrieved from the local
hard drive has to pass across the network.

(NOTE: That does not, repeat NOT, say that "the entire database has to be
fetched across the network"... careful design and implementation, making use
of indexes and limiting data retrieved, can significantly speed up
operations. But, it is difficult or impossible to do enough to make
performance across a WAN or slow LAN acceptable.).

Replication is "not for the faint of heart" and I recommend it only when
there is no other option... as when you have a database back at the office,
but people having to update off-site on their unconnected notebook
computers.

One option, and likely the simplest (but some expense for Client Access
Licenses) would be to use Microsoft's Terminal Services, so that the user,
from their own machine, is actually executing the database on the server.
You'll need the cooperation of your system administrator to set this up. I
believe MVP Albert Kallal has some good information on this at
http://www.members.shaw.ca/AlbertKallal.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13755


Another option, more time and effort (probably costing more than the TS
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13755
CALs), would be to convert your application so that it has Access client
applications for the users, and a true server database for the backend (MS
SQL Server, which could be the free MSDE that comes with Access; or, for
that matter, any ODBC-compliant server database). My guess is that you can
easily support 20 or more concurrent users with MSDE, but for more, you
should consider a more robust server.

Larry Linson
Microsoft Access MVP


Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:40 AM
Peter the grate's Avatar Peter the grate
Guest
 
Posts: n/a
   
   
Re: Front End / Back End Questions

Re running multiple users over a slow LAN or WAN. Larry's answer is correct,
however there is another method, run two systems (ie copy of database on
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13755
remote system) and collect copies of all transactions (ie appends, updates
and deletes) then transmit these over your slow link (they are fairly small)
and run them on the local system.

This is similar to what replication does and is not as good a solution as
using SQL server as your back end. However depending on the nature of your
database and the transacrtions that it performs, it can be a viable solution.


This solution demands regular coopying of the databases. to ensure that the
odd transaction is not lost.

Peter the grate.

"Larry Linson" wrote:

> "iMike12345" wrote
>
> > . . . I created a front end / back end
> > database and deployed the front end
> > to some users for testing. The backend
> > was on the server where I reside. The
> > users were in other sites and stated the
> > reponse time was a killer and everything
> > ran very slow. When a put a local copy
> > of the whole database on their server (not
> > split), they said it ran fast. What is the
> > best option for me here? All users in 4
> > different sites must have access to the
> > same tables for data entry purposes
> > (updates). I really don't want to do
> > replication, bt will consider it. Any
> > ideas?

>
> Joseph is correct that a split Access - Jet database application on a WAN or
> even an old, slow LAN requires Very Patient Users (and those, in my
> experience are rare). The reason for this is the way Access (or any
> file-server database) works... the remote backend simply is a data
> repository, and all the data that would normally be retrieved from the local
> hard drive has to pass across the network.
>
> (NOTE: That does not, repeat NOT, say that "the entire database has to be
> fetched across the network"... careful design and implementation, making use
> of indexes and limiting data retrieved, can significantly speed up
> operations. But, it is difficult or impossible to do enough to make
> performance across a WAN or slow LAN acceptable.).
>
> Replication is "not for the faint of heart" and I recommend it only when
> there is no other option... as when you have a database back at the office,
> but people having to update off-site on their unconnected notebook
> computers.
>
> One option, and likely the simplest (but some expense for Client Access
> Licenses) would be to use Microsoft's Terminal Services, so that the user,
> from their own machine, is actually executing the database on the server.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13755
> You'll need the cooperation of your system administrator to set this up. I
> believe MVP Albert Kallal has some good information on this at
> http://www.members.shaw.ca/AlbertKallal.
>
>
> Another option, more time and effort (probably costing more than the TS
> CALs), would be to convert your application so that it has Access client
> applications for the users, and a true server database for the backend (MS
> SQL Server, which could be the free MSDE that comes with Access; or, for
> that matter, any ODBC-compliant server database). My guess is that you can
> easily support 20 or more concurrent users with MSDE, but for more, you
> should consider a more robust server.
>
> Larry Linson
> Microsoft Access MVP
>
>
>

Reply With Quote
  #5 (permalink)  
Old 28-Jul-2006, 08:40 AM
iMike12345's Avatar iMike12345
Guest
 
Posts: n/a
   
   
Re: Front End / Back End Questions

  Donate Today!  
All:

Thanks for your responses. This gives me a good idea of where to go
from here. I talked to the IT guys and they stated they could probably
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13755
do a terminal services setup fairly easily. Right now I am copying the
db's over to the remote sites after importing all changes into a
master. Kind of a pain, but it works for now until the TS solution is
up and running.

Thanks all!
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13755

~Mike

Reply With Quote
   Click Here to Donate Now!

Support Us!
Become a Promoter!
Gurfateh ji, you can become a SPN Promoter by Donating as little as $10 each month. With limited resources & high operational costs, your donations make it possible for us to deliver a quality website and spread the teachings of the Sri Guru Granth Sahib Ji, to serve & uplift humanity. Every contribution counts. Donate Generously. Gurfateh!
ReplyPost New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!

Bookmarks


(View-All Members who have read this thread : 0
There are no names to display.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Tools Search
Search:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On

» Active Discussions
Is Science a Religion?
Today 07:47 AM
18 Replies, 2,085 Views
UNITED SIKHS AID Team...
Today 03:19 AM
0 Replies, 34 Views
Woolwich Killing: The...
Today 03:05 AM
26 Replies, 292 Views
Abu Nusaybah, 'Friend'...
Today 02:33 AM
0 Replies, 48 Views
Stockholm riots throw...
Today 02:14 AM
10 Replies, 108 Views
How does Sikhi help you...
Today 02:04 AM
48 Replies, 1,227 Views
Sikh Spokesman (ਪੰਜਾਬੀ...
Today 01:52 AM
186 Replies, 4,659 Views
Rozana Reports (ਪੰਜਾਬੀ...
Today 01:41 AM
322 Replies, 7,738 Views
Paneer: what I have...
Yesterday 22:29 PM
8 Replies, 85 Views
How Many Sikhs Have...
Yesterday 21:55 PM
698 Replies, 51,746 Views
Transgenderism ... Right...
By Kaylee
Yesterday 17:55 PM
31 Replies, 1,385 Views
Rochester Gurdwara...
Yesterday 10:55 AM
2 Replies, 88 Views
US Congress panel passes...
Yesterday 04:22 AM
0 Replies, 52 Views
Harmeet Kaur Took the...
Yesterday 03:40 AM
0 Replies, 72 Views
Panjabi Alphabet Resource
24-May-2013 23:15 PM
12 Replies, 6,566 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.3
All times are GMT +6.5. The time now is 09:06 AM.
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.90731 seconds with 32 queries
0