Viewing 15 posts - 226 through 240 (of 308 total)
Hi, use the Target Server Memory and Total Server Memory performance counters.
Andrew
July 16, 2013 at 6:17 am
Hi, compression is an attributed which is replicated. Please have a look here:-
http://msdn.microsoft.com/en-us/library/cc280449.aspx
Andrew
July 16, 2013 at 6:16 am
I'm quite looking forward to seeing the ability to extend the buffer pool to an SSD card.
Andrew
July 16, 2013 at 6:10 am
July 16, 2013 at 6:09 am
Hi,
Sorry but we would need more information on what the stored procedure is doing. Does it accept parameters and if so, do they vary?
Regards,
Andrew
July 16, 2013 at 6:06 am
Hi,
If you have the one instance as a linked server, you can reference it from the other instance by:-
[Server Name].[Database Name].[Schema Name].[Object Name]
Andrew
July 16, 2013 at 6:04 am
Thank you for the help and advice guys.
I've been doing more research and it looks like SSIS does not support delegation:-
http://msdn.microsoft.com/en-us/library/aa337083.aspx
The work around I have got is to execute the...
July 16, 2013 at 5:55 am
Not giving up on this one!
The problem seems to be that the account is used NTLM authentication, so it is not surviving the "double hop", hence the failure for...
July 15, 2013 at 1:52 pm
Hi,
Without knowing more about the server it is hard to make a call. How many and now big are the databases on it? What type of work load does it...
June 28, 2013 at 2:04 pm
Please try this (you can alter the returned columns as needed).
USE [msdb]
GO
SELECT *
INTO #temp
FROM OPENROWSET('SQLNCLI', 'server=SERVERNAME;trusted_connection=yes',
'set fmtonly off exec msdb.dbo.sp_help_job')
SELECT name, enabled, current_execution_step, current_execution_status
FROM #Temp
DROP TABLE #Temp
May 29, 2013 at 9:41 am
Disable TCP/IP in SQL Server configuration manager?
April 25, 2013 at 10:12 am
Hi,
Have a look here:-
https://www.simple-talk.com/sql/database-administration/sql-server-endpoints-soup-to-nuts/
Andrew
April 24, 2013 at 6:37 am
Hello,
I think you're trying to restore into SQL Server 2008, the database was backed up in SQL Server 2008 R2.
Have a look at the build numbers here:-
http://www.sqlteam.com/article/sql-server-versions
You cannot restore a...
April 23, 2013 at 7:32 am
opc.three (4/23/2013)
If you ever find yourself needing to implement functionality that crosses the OS/SQL Server gap then PowerShell can fill that need quite nicely for you.
Definitely, I have a powershell...
April 23, 2013 at 7:27 am
Are there active connections to the database?
April 23, 2013 at 4:42 am
Viewing 15 posts - 226 through 240 (of 308 total)