Viewing 15 posts - 5,611 through 5,625 (of 9,643 total)
Gail,
We both changed our original posts that pointed to the opposite thread so now both are available. I'll point the other thread to here again.:-D
March 17, 2009 at 8:09 am
This may not actually be an issue, check out this article.
March 17, 2009 at 8:00 am
Gail beat me to it on the other post. I was pointing people to the other post while she was pointing people here, so I have edited mine to...
March 17, 2009 at 7:56 am
Check out the articles I included as they will help you understand deadlocks and how to troubleshoot and correct them.
March 17, 2009 at 7:53 am
You haven't done anything wrong. By default EM only displays objects for the users default database when opening a linked server node. You should be able to query...
March 17, 2009 at 7:50 am
I suggest you enable trace flag 1222 so the deadlock information is output to the error log, then you will be able to see what process the package is conflicting...
March 17, 2009 at 7:37 am
I think this is what you want:
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
ALTER PROC [dbo].[sp_product_search]
@ProductId NVARCHAR(100),
@CrossReference NVARCHAR(100),
@ProductDescription NVARCHAR(300)
AS
...
March 17, 2009 at 7:30 am
Bob Hovious (3/16/2009)
March 16, 2009 at 12:00 pm
Steve Jones - Editor (3/16/2009)
March 16, 2009 at 11:33 am
GilaMonster (3/16/2009)
😀In other words, there are a couple bad apples in every barrel.
Just as long as they don't spoil the whole batch!:P
March 16, 2009 at 9:50 am
I would hope that you were hired because they recognized a need for better database management, so I'd start by putting together a list of issues that you believe need...
March 16, 2009 at 8:09 am
SQL Server has a function ServerProperty() that you can use to get this information. I know it is available from at least 2000 forward.
March 16, 2009 at 7:34 am
Without a log reader, and depending on the backup plan you may not have that row in the transaction log anymore, you would need to restore the database to a...
March 16, 2009 at 7:31 am
Regular maintenance is definitely a good idea, but many times the default configuration of maintenance plans is more maintenance than is actually necessary. Kimberly Tripp just wrote an excellent...
March 16, 2009 at 7:28 am
I don't know why the configuration of the SQL Server would affect the memory usage of another server. It sounds to me like some tuning and re-configuration of the...
March 16, 2009 at 7:26 am
Viewing 15 posts - 5,611 through 5,625 (of 9,643 total)