Viewing 15 posts - 121 through 135 (of 972 total)
Truthfully, I would get support from company or consultant that is familiar with performance tuning and troubleshooting. This is something that can go back and forth trying to get down...
Shawn Melton
Twitter: @wsmelton
Blog: wsmelton.github.com
Github: wsmelton
May 17, 2015 at 9:48 pm
To me that sounds like a bug in the version of NetBackup you are running. I would verify what agent version is running on the server and then check what...
Shawn Melton
Twitter: @wsmelton
Blog: wsmelton.github.com
Github: wsmelton
May 14, 2015 at 5:24 am
If it was connection to the AD controller I would think the message would be more toward a type of login failure, not necessarily access denied. Access denied would tell...
Shawn Melton
Twitter: @wsmelton
Blog: wsmelton.github.com
Github: wsmelton
May 7, 2015 at 6:16 am
Afraid not, the only thing I could find in my testing is that a table in msdb keeps up with the version build but it does not give you any...
Shawn Melton
Twitter: @wsmelton
Blog: wsmelton.github.com
Github: wsmelton
May 7, 2015 at 6:09 am
Alan.B (5/5/2015)
It is worth noting, however, that sp_MSForEachDB is undocumented and you should never use...
Shawn Melton
Twitter: @wsmelton
Blog: wsmelton.github.com
Github: wsmelton
May 5, 2015 at 2:53 pm
You will have to use sp_executesql to execute it:
EXEC master.dbo.sp_MSForeachDb 'USE [?]
IF "?" NOT IN (''master'',''model'',''msdb'',''tempdb'')
BEGIN
SELECT ''?''
DECLARE @query nvarchar(50)
SET @query = ''CREATE SCHEMA [T_schema]''
EXEC sp_executesql @query
END
'
Shawn Melton
Twitter: @wsmelton
Blog: wsmelton.github.com
Github: wsmelton
May 5, 2015 at 12:45 pm
Eirikur Eiriksson (5/3/2015)
Suggestion, could you add the MOVE (file), closely related and I often get the question.😎
Eirikur
Yeah, could be on modifying the logical filenames and show a few examples of...
Shawn Melton
Twitter: @wsmelton
Blog: wsmelton.github.com
Github: wsmelton
May 3, 2015 at 4:18 pm
I can tackle this one. Interested in doing it only in T-SQL, or possibly PowerShell/SMO as well?
Shawn Melton
Twitter: @wsmelton
Blog: wsmelton.github.com
Github: wsmelton
May 3, 2015 at 3:01 pm
Koen Verbeeck (4/29/2015)
(and how big can the transaction log for the model database...
Shawn Melton
Twitter: @wsmelton
Blog: wsmelton.github.com
Github: wsmelton
April 29, 2015 at 7:52 pm
sqlcmd
SQL Server PowerShell
.NET + PowerShell
SMO + PowerShell
Shawn Melton
Twitter: @wsmelton
Blog: wsmelton.github.com
Github: wsmelton
April 29, 2015 at 7:45 pm
You can take a look at the MSSQLTip I wrote on missing services from SSCM[/url].
You can likely look under services management console (services.msc) and see Browser service listed there. If...
Shawn Melton
Twitter: @wsmelton
Blog: wsmelton.github.com
Github: wsmelton
April 28, 2015 at 10:25 pm
I do not have direct access to the specific SQL server instance, so I would like to be able to construct an email telling which numbers I am interested in...
Shawn Melton
Twitter: @wsmelton
Blog: wsmelton.github.com
Github: wsmelton
April 27, 2015 at 5:32 am
There is no connection made between the login made in the connection to SQL Server to the Windows Login that may have initiated it from the client end. This is...
Shawn Melton
Twitter: @wsmelton
Blog: wsmelton.github.com
Github: wsmelton
April 26, 2015 at 9:39 pm
Polymorphist (2/6/2015)
Shawn Melton
Twitter: @wsmelton
Blog: wsmelton.github.com
Github: wsmelton
February 8, 2015 at 6:08 pm
I have a client that uses DPM for all of their database servers, including one using AlwaysOn Availability Groups, and they do full and log backups. I have been told...
Shawn Melton
Twitter: @wsmelton
Blog: wsmelton.github.com
Github: wsmelton
January 30, 2015 at 11:16 am
Viewing 15 posts - 121 through 135 (of 972 total)