Viewing 15 posts - 91 through 105 (of 309 total)
You need to specify a lot more detail.
You say that the processing starts fast and then slows down. How do you know this?
Is the bottlneck on the client or the...
August 3, 2010 at 7:03 am
Sounds like a fragmentation issue with some system tables, or perhaps some kind of database corruption.
To me the best fix seems to be to simply avoid full scans of the...
July 2, 2010 at 3:36 am
We use subversion with Ankhsvn and Tortoisesvn.
No cost and very good functionality.
July 2, 2010 at 2:29 am
Are the actual query plans identical for the queries with and without UNION ALL ?
July 1, 2010 at 9:48 am
BOVA Systems (7/1/2010)
Can someone explain to me what could be the problem that causes the...
July 1, 2010 at 5:38 am
I believe that you are inadvertently switching the input language between your desired language (UK english ?) and the standard US English.
Exactly how this is done depends on the OS...
July 1, 2010 at 1:01 am
winston Smith (6/30/2010)
then i open sql...
June 30, 2010 at 9:21 am
Your query causes a full table scan.
To get good performance the query should look like this:
select text from syscomments where id=object_id('dbo.ObjectName')
June 30, 2010 at 9:11 am
I would probably use:
select sum(rows)
from sys.partitions
where
index_id <= 1
and
object_id = object_id('[dbo].[BALEOD2009]')
Even if Microsoft has described the rows field as "approximate number of rows" I still have not seen...
June 29, 2010 at 10:59 am
Keith Underwood (6/29/2010)
He was using the GUI, so all he did was put back in the name of the table "batch", not dbo.batch.
Well, there are two possibilities:
1) There is a...
June 29, 2010 at 10:27 am
Shamshad Ali (6/29/2010)
CREATE NONCLUSTERED INDEX [IX_ProgramTracking_ProgramId] ON [dbo].[ProgramTracking]
(
[ProgramId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB =...
June 29, 2010 at 10:15 am
I have tried to reproduce your problem.
I am able to get deadlocks using the following script:
-- Create a test table with an index
use tempdb
go
if object_id('deadtest') is not null drop...
June 29, 2010 at 5:24 am
Shamshad Ali (6/29/2010)
June 29, 2010 at 2:48 am
Shamshad Ali (6/29/2010)
I don't think that HINT
???
June 29, 2010 at 2:20 am
I really find it very disturbing that a number of concurrent single-row inserts can cause deadlock. Maybe someone else can explain why this is happening.
To fix the problem I think...
June 29, 2010 at 1:33 am
Viewing 15 posts - 91 through 105 (of 309 total)