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
>>
>>
>>
>>