Viewing 15 posts - 406 through 420 (of 535 total)
The main ones you would want to monitor are the following
SQL server buffer manager: Buffer cache hit ratio
Physical disk: Average queue length (do a seperate counter for each disk)
processor: processor...
April 21, 2008 at 7:17 am
The following few commands may help. They will tell you the size of your databases, you could monitor these to tell you if its the databases that are growing...
April 16, 2008 at 3:10 pm
because a clustered index physically stores the records in that order, therefore as you can only store the data in one order you can only have one clustered index.
Non clustered...
April 13, 2008 at 5:14 am
ok, to test the mail try this...
exec sp_addmessage @msgnum = 50001 ,@severity = 11, @msgtext = N'Test error'
,@with_log = 'True'
GO
USE [msdb]
GO
EXEC msdb.dbo.sp_add_alert @name=N'Test Alert',
@message_id=50001,
@severity=0,
@enabled=1,
@delay_between_responses=0,
@include_event_description_in=1,...
April 2, 2008 at 8:17 am
hmm ok, thats rather odd. Is there any more info in the logs that are not in the failure message your getting in the job history.
And just to clarify,...
April 2, 2008 at 8:05 am
ok. apologies for my first reply btw.
Do any jobs that notify the operator work? It could be that the agent mail has not been setup to use the database...
April 2, 2008 at 7:29 am
ignore what i first wrote! i didnt read the whole post :ermm:
Have you got a notification on the job outcome? Failure/Success etc?
April 2, 2008 at 7:21 am
ok guys ive gone for a mix of the two. Ive created an SP and then call that SP from an OPENQUERY Command bringing the results into a local...
April 2, 2008 at 4:54 am
Matt - I would consider using openquery, however i think i like Jacks idea the best. I will give them both a go and let you know the results.
April 2, 2008 at 1:40 am
som (4/1/2008)
Hi,Let us know the error message you are getting. Also the Sql Server versions of Target and Source Servers.
regards,
Som
The error message is at the top....
Msg 8180, Level 16, State...
April 2, 2008 at 1:38 am
fantastic, got it!! i now see where the 34 comes from 🙂 with this in mind i checked that right(ltrim(rtrim(name)), (len(name))) gave me the full column name,...
March 27, 2008 at 11:04 am
ok, ill shoot myself down. I tried it and Adam is right 😛
Thats stupid imo 🙂
March 27, 2008 at 10:24 am
Adam, i think the whole drop thing and rename etc is only scripted by SSMS when you alter a column (create new table with new structure, copy accross the data,...
March 27, 2008 at 10:19 am
Antares, i didnt really have a goal as such, it was just something i was messing about with and i noticed it gave the "wrong" result, hence the post. ...
March 27, 2008 at 10:09 am
jkinlaw (3/27/2008)
Do note how datalength() returns the true length of unicodes:
declare @k varchar(10), @nk...
March 27, 2008 at 9:34 am
Viewing 15 posts - 406 through 420 (of 535 total)