Viewing 15 posts - 121 through 135 (of 294 total)
Just adapted a function I have to strip different characters, this won't give you a small int, but do you really need this to be a small int. Where I...
February 16, 2009 at 6:47 am
Did you set the properties of SQL Server Agent Alert System to Enable the mail profile you set up?
Right click on SQL Server Agent, Select Alert System and ensure...
February 16, 2009 at 6:37 am
I think you may also need to convert the ''''00000000-0000-0000-0000-000000000000 into an uniqueidentifier as well to compare them.
DECLARE @compid UNIQUEIDENTIFIER
SET @compid = CONVERT(UNIQUEIDENTIFIER,'00000000-0000-0000-0000-000000000000')
AND ([KeyId] = '''+@KeyId+''' OR +'''CONVERT(UNIQUEIDENTIFIER,@KeyId)+''' = '''+@compid...
February 12, 2009 at 6:35 am
alter PROCEDURE AppLog_AdHoc
@Severity INT = ''
,...
February 11, 2009 at 11:18 am
I haven't worked with SQL 2000 for quite a while but I remember seeing this before. If I remember correctly I dropped the job restarted SQL Server and tried setting...
February 11, 2009 at 11:11 am
Does sending a test email work? If it does did you set the properties of SQL Server Agent Alert System to Enable the mail profile you set up?
February 11, 2009 at 11:01 am
I had a quick look around for articles on setting up log shipping, I have documentation for how I set it up but I need a warm standby server so...
February 5, 2009 at 12:04 pm
Have you looked at the built in Log Shipping that comes with SQL Server as this could be used to set all the process up for you.
February 5, 2009 at 9:42 am
Try something like
=IIf (sum(Fields!Terminations.Value + Fields!TransferOut.Value + Fields!HeadcountEnd.Value) = 0, 0,sum(Fields!Terminations.Value + Fields!TransferOut.Value + Fields!HeadcountEnd.Value))
February 4, 2009 at 6:05 am
How did you do the migration? have the databases been reindexed after the migration?
February 4, 2009 at 6:01 am
January 28, 2009 at 6:02 am
you've missed out the FROM
delete FROM tableName where path like '''%'+@path +'%'''
try to see if it will delete the correct record using a select statement first to test.
January 28, 2009 at 5:59 am
The fuzzy match that's in SSIS would be useful to use in some way on selecting data, Full Text just doesn't do it well enough.
January 23, 2009 at 5:45 am
Down load a trial of SQL Sentry if a deadlock fires it should give you the items that are in the chain of events. http://sqlsentry.net/sql-performance
January 22, 2009 at 9:40 am
There is a script to do just this on the microsoft site look for sp_helprevlogin in google
January 14, 2009 at 10:32 am
Viewing 15 posts - 121 through 135 (of 294 total)