PC Review


Reply
Thread Tools Rate Thread

Access 2007/SQL 2005 ADP Performance Issues

 
 
Vee Van Dyke
Guest
Posts: n/a
 
      5th Jun 2008
Hi all. I have developed a SQL 2005 ADP that contains a LOT of Data. We are
currently experiencing some interesting performance issues over the network.
I am interested in finding solution for optimizing my DB and any other
suggestions that could help to improve the performance of the program.

We are running an ADP developed in Access 2007. Each workstation has a local
copy of the ADE on their machine. Some machines are using 2003, some 2007.

The issues are as follows:
1. In certain forms, the first 1-2 records that you add are extremely slow
when tabbing from field to field. after you have added several records, the
speed increases. This only occurs in workstations using Access 2007.

2. Certain reports have slowed WAAAAAY down and are crashing certain PC's.
They don't have THAT much data and the ones that are doing it are running
stored procedures. This occurs on both 2003 and 2007 workstations.

None of these issues occur if I am remoted into the SQL server. They DO
occur if someone else from the LAN is logged remotely into the SQL server.

Any advice is appreciated.
Thanks.
Vee Van Dyke
 
Reply With Quote
 
 
 
 
Vadim Rapp
Guest
Posts: n/a
 
      7th Jun 2008
VVD> We are currently experiencing some interesting performance issues over
VVD> the network.

You may find this thread useful:

http://forums.microsoft.com/TechNet/...0500&SiteID=17

Vadim Rapp



 
Reply With Quote
 
Vee Van Dyke
Guest
Posts: n/a
 
      7th Jun 2008
Vadim-
Thank you for your prompt reply. The PC's that are experiencing issues are
not connecting via VPN or WAN. They are actually connected on the LAN, and
have mainly the reverse problem... the longer they stay connected, the better
the speed gets.

Any other ideas are welcomed.

Thank you.
V

"Vadim Rapp" wrote:

> VVD> We are currently experiencing some interesting performance issues over
> VVD> the network.
>
> You may find this thread useful:
>
> http://forums.microsoft.com/TechNet/...0500&SiteID=17
>
> Vadim Rapp
>
>
>
>

 
Reply With Quote
 
Sylvain Lafontaine
Guest
Posts: n/a
 
      8th Jun 2008
Looks like a recompilation problem or a locking problem. The first thing to
do would be to update the statistics using the sp_updatestats stored
procedure and to free the procedure caches:

DBCC FLUSHPROCINDB
DBCC DROPCLEANBUFFERS
DBCC FREEPROCCACHE

After that, adding the WITH RECOMPILE option to your stored procedures
and/or looking about the parameter sniffing problem (Seach Google on these
terms) will tell us if you have a recompilation problem. If you have a
locking problem, this will be harder to find.

In all cases, using (or learning to use) the SQL-Server Profiler to see
what's going on would be probably a very good idea.

A final possibility would be that you have an authentification issue. If
the peoples on the LAN are using the Windows authentification, then trying
with a SQL-Server account would be a good test to do.

--
Sylvain Lafontaine, ing.
MVP - Technologies Virtual-PC
E-mail: sylvain aei ca (fill the blanks, no spam please)


"Vee Van Dyke" <(E-Mail Removed)> wrote in message
news:BE5D0005-C397-410F-A6C7-(E-Mail Removed)...
> Vadim-
> Thank you for your prompt reply. The PC's that are experiencing issues are
> not connecting via VPN or WAN. They are actually connected on the LAN,
> and
> have mainly the reverse problem... the longer they stay connected, the
> better
> the speed gets.
>
> Any other ideas are welcomed.
>
> Thank you.
> V
>
> "Vadim Rapp" wrote:
>
>> VVD> We are currently experiencing some interesting performance issues
>> over
>> VVD> the network.
>>
>> You may find this thread useful:
>>
>> http://forums.microsoft.com/TechNet/...0500&SiteID=17
>>
>> Vadim Rapp
>>
>>
>>
>>



 
Reply With Quote
 
Vadim Rapp
Guest
Posts: n/a
 
      13th Jun 2008
Hello, Vee!
You wrote on Sat, 7 Jun 2008 13:09:00 -0700:

VVD> Thank you for your prompt reply. The PC's that are experiencing issues
VVD> are not connecting via VPN or WAN. They are actually connected on the
VVD> LAN, and have mainly the reverse problem... the longer they stay
VVD> connected, the better the speed gets.

This is expected: first, sql server is probably configured to use dynamic
amount of memory, and once it sees increased usage, it grabs more and more
memory, increasing its performance; at the same time, more and more data,
indexes, and code are collected in the data and procedure cache.

I would probably spend some time using _very_ detailed profiling of sql
server, to see what extra is coming from Access 2007 compared to 2003 that
results in slowing down the reports.

Generally speaking, changing the product from the release 2003 that was
suppsoed to live to the release 2007 that is supposed to die (meaning ADP as
technology) is probably much closer to the term "downgrade" than to
"upgrade". Down to the grave, so to speak.

Vadim Rapp



 
Reply With Quote
 
a a r o n . k e m p f @ g m a i l . c o m
Guest
Posts: n/a
 
      27th Jun 2008

bullshit you dipshit

nobody ever said ADP was supposed to die.



-Aaron




On Jun 13, 3:30*pm, "Vadim Rapp" <v...@nospam.myrealbox.com> wrote:
> Hello, Vee!
> You wrote *on Sat, 7 Jun 2008 13:09:00 -0700:
>
> *VVD> Thank you for your prompt reply. The PC's that are experiencing issues
> *VVD> are not *connecting via VPN or WAN. They are actually connectedon the
> *VVD> LAN, and have mainly the reverse problem... the longer they stay
> *VVD> connected, the better the speed gets.
>
> This is expected: first, sql server is probably configured to use dynamic
> amount of memory, and once it sees increased usage, it grabs more and more
> memory, increasing its performance; at the same time, more and more data,
> indexes, and code are collected in the data and procedure cache.
>
> I would probably spend some time using _very_ detailed profiling of sql
> server, to see what extra is coming from Access 2007 compared to 2003 that
> results in slowing down the reports.
>
> Generally speaking, changing the product from the release 2003 that was
> suppsoed to live to the release 2007 that is supposed to die (meaning ADPas
> technology) is probably much closer to the term "downgrade" than to
> "upgrade". Down to the grave, so to speak.
>
> Vadim Rapp


 
Reply With Quote
 
a a r o n . k e m p f @ g m a i l . c o m
Guest
Posts: n/a
 
      27th Jun 2008
have you built enough indexes?

Seriously-- have you build enough indexes?
Select *
From Sys.dm_db_missing_index_details

ADP has a bright future!

-Aaron



On Jun 5, 8:40*am, Vee Van Dyke <VeeVanD...@discussions.microsoft.com>
wrote:
> Hi all. I have developed a SQL 2005 ADP that contains a LOT of Data. We are
> currently experiencing some interesting performance issues over the network.
> I am interested in finding solution for optimizing my DB and any other
> suggestions that could help to improve the performance of the program.
>
> We are running an ADP developed in Access 2007. Each workstation has a local
> copy of the ADE on their machine. Some machines are using 2003, some 2007..
>
> The issues are as follows:
> 1. In certain forms, the first 1-2 records that you add are extremely slow
> when tabbing from field to field. after you have added several records, the
> speed increases. This only occurs in workstations using Access 2007.
>
> 2. Certain reports have slowed WAAAAAY down and are crashing certain PC's..
> They don't have THAT much data and the ones that are doing it are running
> stored procedures. This occurs on both 2003 and 2007 workstations.
>
> None of these issues occur if I am remoted into the SQL server. They DO
> occur if someone else from the LAN is logged remotely into the SQL server..
>
> Any advice is appreciated.
> Thanks.
> Vee Van Dyke


 
Reply With Quote
 
a a r o n . k e m p f @ g m a i l . c o m
Guest
Posts: n/a
 
      27th Jun 2008
have you put nolock on reporting queries?



On Jun 5, 8:40*am, Vee Van Dyke <VeeVanD...@discussions.microsoft.com>
wrote:
> Hi all. I have developed a SQL 2005 ADP that contains a LOT of Data. We are
> currently experiencing some interesting performance issues over the network.
> I am interested in finding solution for optimizing my DB and any other
> suggestions that could help to improve the performance of the program.
>
> We are running an ADP developed in Access 2007. Each workstation has a local
> copy of the ADE on their machine. Some machines are using 2003, some 2007..
>
> The issues are as follows:
> 1. In certain forms, the first 1-2 records that you add are extremely slow
> when tabbing from field to field. after you have added several records, the
> speed increases. This only occurs in workstations using Access 2007.
>
> 2. Certain reports have slowed WAAAAAY down and are crashing certain PC's..
> They don't have THAT much data and the ones that are doing it are running
> stored procedures. This occurs on both 2003 and 2007 workstations.
>
> None of these issues occur if I am remoted into the SQL server. They DO
> occur if someone else from the LAN is logged remotely into the SQL server..
>
> Any advice is appreciated.
> Thanks.
> Vee Van Dyke


 
Reply With Quote
 
Tony Toews [MVP]
Guest
Posts: n/a
 
      27th Jun 2008
"a a r o n . k e m p f @ g m a i l . c o m" <(E-Mail Removed)>
wrote:

>ADP has a bright future!


ADP has not had any enhancements for at least the last two versions of
Access.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Tony's Microsoft Access Blog - http://msmvps.com/blogs/access/
 
Reply With Quote
 
a a r o n . k e m p f @ g m a i l . c o m
Guest
Posts: n/a
 
      28th Jun 2008


Tony;

I disagree.

What about SQL Server 2005 support?

What abotu SQL Server 2005 _ITSELF_?

What about the PIVOT keyword?
What about the UNPIVOT keyword?

ADP has had millions of improvements. Access MDB is a ****ing waste of
time and effort.

Seriously why do you post such mis-information?

-Aaron





On Jun 27, 1:21*pm, "Tony Toews [MVP]" <tto...@telusplanet.net> wrote:
> "a a r o n . k e m p f @ g m a i l . c o m" <aaron.ke...@gmail.com>
> wrote:
>
> >ADP has a bright future!

>
> ADP has not had any enhancements for at least the last two versions of
> Access.
>
> Tony
> --
> Tony Toews, Microsoft Access MVP
> * *Please respond only in the newsgroups so that others can
> read the entire thread of messages.
> * *Microsoft Access Links, Hints, Tips & Accounting Systems athttp://www.granite.ab.ca/accsmstr.htm
> * *Tony's Microsoft Access Blog -http://msmvps.com/blogs/access/


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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 Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Outlook 2007 Performance Issues Gozcubukcu Microsoft Outlook Discussion 8 29th Jan 2010 07:21 AM
Access 2007 Performance Issues RomanTAtBayer Microsoft Access 1 25th Sep 2009 09:36 PM
Performance issues with Access 2007 and other Office apps Alistair F Microsoft Access VBA Modules 1 7th Mar 2008 10:41 PM
Outlook 2007 Performance issues Sabo, Eric Microsoft Outlook Discussion 2 10th Apr 2007 05:59 PM
Outlook 2007 performance issues =?Utf-8?B?amJhYmlu?= Microsoft Outlook Discussion 7 28th Feb 2007 04:36 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:57 PM.