Viewing 15 posts - 1,336 through 1,350 (of 2,044 total)
You can use the sqliostress utility http://support.microsoft.com/kb/231619/.
Does normal copy works well?
Doublechecked SAN-configuration?
September 29, 2006 at 12:03 pm
They both allow to run the server unpatched. Without sp3 or later you won't be able to connect to it with TCP/IP and perhaps other network protocols.
September 28, 2006 at 12:37 pm
Some generics:
Select the least amount of data you need.
Check your query plan (sql query analyzer ->display estimated execution plan)
Try to avoid cursors and work out a set-based solution.
Try to normalize...
September 23, 2006 at 12:49 pm
Are there +20 jobs active at the same time? Sql server agent has a limited pool of threads.
September 23, 2006 at 9:41 am
That is quite odd since it is a parameterless procedure. Does the executionplan changes when you execute it under sqlagent's permission? Is there additional locking? Are the connectionsettings the same...
September 22, 2006 at 4:06 pm
What is the error you get? It looks fine at first sight (although you are not specifying the owner of PROD_MAST_SUBS and are not using stored procedures for abstraction)
September 22, 2006 at 3:50 pm
Batches are a whole serie of sql-statements sent at once by the client.
Stored procedure can contain a whole serie of sql-statements stored on the server.
Pro batchs: some flexibility (like search-commands)...
September 21, 2006 at 12:44 pm
Also try to monitor the locks on the table. Any transaction taking longer than required?
September 21, 2006 at 12:22 pm
Greetings,
1. What version of sql server is it and which servicepack do you have applied to it. SP3a or higher is required for sql server 2000 on a windows 2003...
September 21, 2006 at 12:06 pm
the insert-sequence & select-sequence are out of order
insert-sequence: status at the end
select-sequence: status in the middle
move MAX(CASE WHEN HEADER = 'AFS' AND PROPERTY = 'Membership Number' THEN STATUS...
September 20, 2006 at 1:56 pm
It should die soon after that. Do you check it with sp_who?
September 20, 2006 at 12:17 am
You could use the sql server best practices analyzer on the db. It will report which stored procedures,views needs some work. Like owner not specified ...
Perhaps you will have access...
September 19, 2006 at 2:17 pm
The process needs to be kept alive till the rollback is completed (which can also take a long time).
Any clues why the vb app suddenly started to work slower?
September 19, 2006 at 2:09 pm
Viewing 15 posts - 1,336 through 1,350 (of 2,044 total)