Viewing 15 posts - 3,901 through 3,915 (of 7,496 total)
I would suggest to contact SQLCAT (ms sqlserver customer advisory team) !
They may have more experience with that kind of volume(s) and may be in close contact with the sharepoint...
March 15, 2009 at 1:39 pm
Did you try to handle it this way ?
ALTER PROCEDURE [EDMS].[sp_DeleteArea]
@PageID int,
...
March 14, 2009 at 7:50 am
peace2007 (3/14/2009)
March 14, 2009 at 7:11 am
Can you try to provide a valid password for the sqluser sa
IMO, even if sql auth is not actively in use for the instance, the upgrade will validate...
March 13, 2009 at 3:10 am
I did write a little article "adventures with service broker" stating my first experiences with SSB.
http://www.sqlservercentral.com/articles/Service+Broker/2897/
IMO Klaus Aschenbrenners book is still one of the best !
(Pro SQL Server 2005 Service...
March 12, 2009 at 2:24 pm
chicagonj (3/12/2009)
Out of the hundreds of entries, there are entries labeled as 'Blocked By XX' When i click on those, I'm getting 3...
March 12, 2009 at 1:22 pm
This proc (in master db please) shows blocking activity
-- ALZDBA install sp_DBA_WhoBlocks.sql
-----------------------------------
USE [master]
GO
/****** Object: StoredProcedure [dbo].[sp_DBA_WhoBlocks] ******/
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[sp_DBA_WhoBlocks]') AND...
March 12, 2009 at 11:17 am
Keep in mind you cannot drop objects that are actually in use !
March 12, 2009 at 9:21 am
I didn't test resend features for dbmail.
I don't think this feature is supported, unless you actually recompose the mail and issue another sp_send_dbmail
March 12, 2009 at 8:34 am
The view must be dropped first if it has been created using schemabinding
March 12, 2009 at 8:30 am
you stated cpu and memory were ok.
What's the ammount of physical RAM on the windows server, how much is in use and how much is in use by sqlserver ?
Any...
March 12, 2009 at 6:43 am
can you free the proccache ?
(to get rid of the "unperformant" plans)
dbcc freeproccache
Maybe now (holliday) is the moment to rebuild indexes, ...
befor you implement the new ones.
We've recently had a...
March 12, 2009 at 2:30 am
As SQL Noob stated, contact your mail admins, they will be able to find your mail (or in an output queue or in an received state, but maybe filtered by...
March 12, 2009 at 1:08 am
leonp (3/11/2009)
select x.name as 'Databases...
March 11, 2009 at 4:39 pm
My guess, your delete generated a bunch of log and is still running (cascading deletes ?)
DBCC opentran (executed in the correct db) may give some answers.
March 11, 2009 at 4:29 pm
Viewing 15 posts - 3,901 through 3,915 (of 7,496 total)