Viewing 15 posts - 1,771 through 1,785 (of 2,043 total)
normally this means you have to reapply the service pack
November 30, 2005 at 10:45 am
Are you allowed to change the field back to autonumbering?
November 30, 2005 at 10:27 am
1) Do the tables in the new db have primary keys?
2)Is the user allowed to insert data (permissions?)
November 28, 2005 at 1:47 pm
That query is huge.
I'll look into it tomorrow
November 28, 2005 at 1:42 pm
I wouldn't count on sql server 2000 and sql 2005 living happily together on a cluster. A test would be at place.
You surely can install 2005 next to 2000 like...
November 25, 2005 at 5:14 pm
No clue, I'm total new to SAN'S.
Does HP mayhaps have new firmware/software updates?
November 25, 2005 at 5:10 pm
Is this using sql enterprise edition or higher?
November 25, 2005 at 5:05 pm
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
Viewing 15 posts - 1,771 through 1,785 (of 2,043 total)