March 22, 2006 at 5:33 am
Tengo un server con 2 cpus y 4 gb de ram basado en win2003 server y sql server 2000.
Tengo tambien conexiones de aprox. 50 clientes contra ese server a traves de una aplicacion que dise?e en VB6 y SPs T-SQL conectados por TCP/IP(internet).
El problema se me presenta es a ciertas horas en donde todos los clientes usan la aplicacion hecha en VB6 al mismo tiempo, justo en ese momento la aplicacion en la parte de los clientes se pone bastante lenta, cosa que no sucede en horas donde no se
He probado optimizando varias cosas, una de ellas es el volumen de informacion que va de los clientes hasta el server y viceversa (he minimizado esto todo lo posible). Todo esta basado en SPs.
He estado monitoreando el rendimiento
Agradezco toda la ayuda posible.
March 23, 2006 at 1:18 pm
March 23, 2006 at 2:06 pm
Thank you very much....
jejeje, my english is very limited.
March 24, 2006 at 7:03 am
Utilicé a un traductor también. Otra cosa para mirar es la longitud media de la línea para cada disco físico en el perfmon. Si está sobre 2, usted tiene un embotellamiento. Inglés abajo:
I used a translator also. Another thing to look at is the average queue length for each physical disk in perfmon. If it is over 2, you have a bottleneck.
MG
"There are two ways of constructing a software design. One way is to make it so simple that there are obviously no deficiencies. And the other way is to make it so complicated that there are no obvious deficiencies."
Tony Hoare
"If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair.
March 27, 2006 at 4:01 pm
Here's my 'short list' for tuning:
Round I
DBCC UPDATEUSAGE
UPDATE STATISTICS (with FULL scan) for all tables
exec sp_recompile for all tables
exec sp_refreshview for all views
Round II
DBCC DBREINDEX
UPDATE STATISTICS (with FULL scan) for all tables
exec sp_recompile for all tables
exec sp_refreshview for all views
Round III
Profiler
Query Hints
RegardsRudy KomacsarSenior Database Administrator"Ave Caesar! - Morituri te salutamus."
Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply