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...
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...
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...
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...
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...
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
'
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...
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?
May 3, 2015 at 3:01 pm
Koen Verbeeck (4/29/2015)
(and how big can the transaction log for the model database...
April 29, 2015 at 7:52 pm
sqlcmd
SQL Server PowerShell
.NET + PowerShell
SMO + PowerShell
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...
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...
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...
April 26, 2015 at 9:39 pm
Polymorphist (2/6/2015)
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...
January 30, 2015 at 11:16 am
Viewing 15 posts - 121 through 135 (of 972 total)