Viewing 15 posts - 1 through 15 (of 17 total)
One thing that comes to mind is you will have to reconfigure the endpoint URL's with the new domain information. I suspect you will have to break always on down...
July 17, 2018 at 1:38 pm
Check for any log backup jobs that happened outside of the log backup restore jobs that you expect to run. From SSMS you can right click the database name,...
December 27, 2016 at 2:16 pm
Check out this page for information on SQL Agent roles defined in the msdb database:
September 23, 2016 at 11:50 am
Look for a procedure that runs at startup:
SELECT ROUTINE_NAME
FROM MASTER.INFORMATION_SCHEMA.ROUTINES
WHERE OBJECTPROPERTY(OBJECT_ID(ROUTINE_NAME),'ExecIsStartup') = 1
September 22, 2016 at 12:05 pm
Thanks for the scripts, Eric. You just helped me with tracking down the culprit that was consuming all of the space in tempdb (about 70GB with 8 duplicate copies...
September 2, 2015 at 2:40 pm
Thanks. Most of these are tracked in our ticketing system, so numbers and projects worked should not be a problem to find and report on.
April 13, 2015 at 8:33 am
What we do is well documented, and management is well aware that they would have issues replacing any of the DBA team (although none can make their way without preparing...
April 9, 2015 at 7:14 am
Thanks for the reply. Those could certainly come in handy. It would just be presentation that may be a bit challenging. I see pie charts that would...
April 8, 2015 at 12:50 pm
This link https://msdn.microsoft.com/en-us/library/ms174396(v=sql.110).aspx indicates that if you use
select SERVERPROPERTY('SERVERNAME')
you should see the new name. In the remarks section on the 'servername' property you will find a statement...
March 20, 2015 at 12:09 pm
We have found that once a database grows beyond 1TB striping is required, if only just to fit into our maintenance window. We currently have been backing up a...
January 9, 2015 at 7:45 am
You need to add the server name (the DEV team's server) to sys.servers (I am not sure how it is NOT there, unless the server has been renamed):
sp_addserver [new_name\instancename], local;
September 18, 2014 at 9:17 am
What output do you get On the DEV team's server (2008R2) for:
select * from sys.servers
September 18, 2014 at 9:08 am
What does
select @@servername
return?
September 18, 2014 at 9:01 am
Try:
Declare @ServerName sysname
select @ServerName = @@servername
Print @ServerName
September 18, 2014 at 8:50 am
This will explain and give options:
http://sqlperformance.com/2014/06/sql-indexes/hotfix-sql-2012-rebuilds
June 18, 2014 at 2:49 pm
Viewing 15 posts - 1 through 15 (of 17 total)