Viewing 9 posts - 16 through 24 (of 24 total)
I tried deleting just 10 records directly as follows:
delete from tblDocument where DocumentID in (1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
The delete ran for over a minute,...
December 21, 2010 at 1:09 pm
--Table definition (with relevant indexes)
CREATE TABLE [dbo].[tblDocument](
[DocumentID] [int] IDENTITY(1,1) NOT NULL,
[Category] [varchar](50) NULL,
[Number] [varchar](50) NULL,
[State] [varchar](50) NULL,
[CreatedDate] [datetime] NULL,
[CreatedBy] [varchar](50) NULL,
[ModifiedDate] [datetime] NULL,
[ModifiedBy] [varchar](50) NULL,
[DirType] [int] NULL,
[DocumentName] [varchar](200) NULL,
[FileName] [varchar](200)...
December 21, 2010 at 12:53 pm
I think I found the problem - the execution plan for the stored procedure. (SQL Profiler helped point the way.)
The stored procedure is called with a date range. I suspect...
March 5, 2007 at 2:45 pm
I know for a fact that the ASP page is only executing the SP once and is timing out on this one call.
The SQL Server is our production server and...
March 5, 2007 at 9:49 am
Sorry. I guess I wasn't very clear. The same "exec usp_...." SQL code that the ASP page executes is what I am executing in Query Analyzer. (I showed the SQL...
March 2, 2007 at 12:19 pm
Would it be advantagous to carefully convert the identity columns to BIGINT?
February 25, 2007 at 12:07 pm
Lighten up, people! SQL Server isn't the only DB in the world.
Defining the length of a column in SQL Server defines both the number of characters to display and the maximum...
January 30, 2007 at 3:03 pm
No deadlocks, just lockouts. The isolation levels are most likely the defaults.
May 11, 2006 at 11:22 am
When I try viewing conflicts for the publication, I get "An unexpected error occured while trying to launch the Conflict Viewer". Any suggestions on how to fix this?
September 1, 2005 at 9:48 am
Viewing 9 posts - 16 through 24 (of 24 total)