Viewing 15 posts - 3,901 through 3,915 (of 7,503 total)
First question : Why ?
- don't trust the network people ....that is not an argument
- they don't have a clue about sqlsever and the consequences of the sqlserver related actions...
March 17, 2009 at 4:43 am
I use this script to generate the restore log sequence(s).
(and the header time indication may help to determine which full backup to start from )
March 17, 2009 at 4:33 am
start with setting the current database to another state !
e.g.
Alter database set single_user with rollback immediate
-- don't put GO overhere or you may lose your db connection !! (so...
March 17, 2009 at 4:24 am
Gift Peddie (3/16/2009)
hmm... your db-engine can still be 64-bit and take advantage of all that comes with it !
Maybe the db-level might be kept to 80 (sql2000) for a little...
March 17, 2009 at 12:56 am
Actually you would need to do the same as if you would handle files on "regular" disks.
That goes for :
- raid
- allocation size
- number of files
...
Whenever we move physical files,...
March 16, 2009 at 11:08 am
Gift Peddie (3/16/2009)
March 16, 2009 at 11:01 am
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
Viewing 15 posts - 3,901 through 3,915 (of 7,503 total)