Viewing 15 posts - 31 through 45 (of 146 total)
I've used the Sql compliance manager from Idera at the last company I worked for. https://www.idera.com/productssolutions/sqlserver/sqlcompliancemanager
It is quite expensive - I think we paid around £6000 per monitored...
June 22, 2015 at 10:00 am
USE [msdb]
GO
EXEC msdb.dbo.sp_update_job @job_id=N'<JOB_GUID>',
@notify_level_email=3
GO
Running the following will set the job to send an alert when it completes.
See attachment for screen shot of doing it through the GUI.
June 22, 2015 at 9:30 am
The following query should show the file sizes of the data and log files and the amount of space used.
SELECT RTRIM(name) AS [Segment Name], groupid AS [Group Id], filename AS...
June 16, 2015 at 4:24 am
You can set the notification of the job to email the operator when the job completes -(i.e if it fails or succeeds).
June 11, 2015 at 2:13 am
I'm sure there are other ways, but you could execute a procedure on startup (information here https://msdn.microsoft.com/en-us/library/ms181720.aspx or http://zarez.net/?p=1566 ) which ran the code SELECT HOST_NAME()
and emailed the result....
June 11, 2015 at 2:11 am
Is the storage setup different for each server?
June 10, 2015 at 7:44 am
info.sqldbamail (6/8/2015)
June 8, 2015 at 7:32 am
I'm sure you have had your questions answered, but if it helps, I use the following query to check my backups are running ok:
SELECT DISTINCT
...
June 4, 2015 at 9:47 am
Logging in as a local admin you wont be able to browse the domain I expect. If you type in the new login search box domain\username and hit the...
May 27, 2015 at 7:06 am
You're creating the master key and certificate on the Database. You need to create it on the server, so run the first two commands on the master database. ...
May 22, 2015 at 8:15 am
Not sure how this has got to the top of the list since I asked it to years ago. Just to confirm, the bug was the issue and the hot...
May 21, 2015 at 7:46 am
Even better! Thanks.
I understand the second query more than the first, but will study it in more detail to understand how it is working.
Thanks again.
May 20, 2015 at 9:14 am
Pefect! That's what I need. Thank you so much.
May 20, 2015 at 8:13 am
Thanks for the help.
Your first query, shows the same results as my query - the problem being for Gate5, where the job id is 1 and process id is 10,...
May 20, 2015 at 6:26 am
The only time I see users creating thier own schemas, is when they haven't had "dbo" set as their default schema. In that case, creating objects will cause a schema...
April 20, 2015 at 8:06 am
Viewing 15 posts - 31 through 45 (of 146 total)