Viewing 15 posts - 1,786 through 1,800 (of 2,051 total)
I haven't got experience with dual cpu's.
Did you have a look at "parallel queries" in the books online?
The following server configurations can affect parallel execution of...
November 23, 2005 at 2:44 pm
Can we see the code of the stored procedure.
Is the hash table a temporary table (last for one connection) or a more permanent one?
November 23, 2005 at 2:34 pm
*I'm wonding if the query will work at all
from tableB
where field1 not in (select field1 from tableB) /* every record eliminated + a subselect on each record executed because of...
November 23, 2005 at 2:30 pm
Are you using ADO?
Can we see ( a piece) of your code that causes the error?
Are you deleting rows in the same statement?
November 23, 2005 at 2:23 pm
according to Microsoft, if you use a SAN you need some different counters
PhysicalDisk\Average Disk Queue Length Indicates the average number of both read and write requests... |
November 22, 2005 at 2:46 pm
Thanks for sharing. One more reason not to use select *
November 22, 2005 at 2:35 pm
first make copy (try to name the fields instead of using select *)
SELECT * INTO Table2
FROM Table1
WHERE Finished='Yes'
afterwards cleaning out table1
the inner joins verifies you are only deleting "copied" records...
November 22, 2005 at 10:39 am
1) the query has extra subselects in the select clause, move them where possible in the from or where clause.
Have a look at
http://www.sql-server-performance.com/sql_server_performance_audit10.asp
and
http://www.sql-server-performance.com/query_execution_plan_analysis.asp
to analyze query...
November 21, 2005 at 3:10 pm
make sure you join with the new table then in order not to delete fresh finished records.
November 21, 2005 at 2:58 pm
1) cursors are mostly used as last resorts (because they are such a performance drain on the server) to implement complex logic. Beginners tend to use them also because it...
November 21, 2005 at 2:54 pm
1) is there any firewall in between?
2) What is the OS of your sql server and is sql server patched up to at least SP3+hotfix or SP4?
November 21, 2005 at 11:51 am
Can you trace the sql statements sent to sql server using sql profiler?
You can then analyze the query plans in the query analyzer (display estimated query plan)
Possible causes:
a query is...
November 21, 2005 at 11:48 am
1)Haven't really got that situation myself, but it can be because connections aren't closed as quickly as possible after their use.
http://www.15seconds.com/issue/040830.htm
3) It all depends wath the server will do,...
November 21, 2005 at 11:40 am
You don't need to take a database offline to back it up.
Attaching/detaching: allows to copy the mdf/ldf files.
November 21, 2005 at 11:31 am
does the sql agent account has the rights to start the reindexing?
November 21, 2005 at 11:28 am
Viewing 15 posts - 1,786 through 1,800 (of 2,051 total)