Viewing 15 posts - 16 through 30 (of 44 total)
Andrew G (1/19/2015)
For example, you...
January 20, 2015 at 11:23 pm
Thanks. The high waits are CXPacket from report queries which I want to advise them to offload to a secondary copy but need the evidence that this would be an...
January 20, 2015 at 5:16 pm
I notice on the activity monitor, I regularly see high wait times on Buffer I/O however there is substantial amount of memory for this server....
January 18, 2015 at 7:48 pm
ALZDBA (1/9/2015)
burfos (1/9/2015)
ALZDBA (1/8/2015)
FWIW I hope you enabled Instant File Initialization as it also works for restore operations !
I haven't on this particular server as...
January 11, 2015 at 8:15 pm
Jeff Moden (1/11/2015)
Lowell (1/11/2015)
January 11, 2015 at 7:51 pm
It is a production 24/7 system. I wont be able to run that tool on there.
January 11, 2015 at 4:50 pm
ALZDBA (1/8/2015)
FWIW I hope you enabled Instant File Initialization as it also works for restore operations !
I haven't on this particular server as the database...
January 9, 2015 at 12:12 am
Thanks all for the replies. Very helpful. I am definitely running set single user and then immediately running the restore command so nothing in between. There should be no...
January 8, 2015 at 6:09 pm
Could a database audit specification be another solution?
December 22, 2014 at 8:19 pm
I believe that restores are indeed recorded in to the backupset table.
A good blog on this is http://shaunjstuart.com/archive/2010/12/msdb-backupset-table-peculiarity/
Backupset it seems, simply holds the details of a backup whether it...
November 24, 2013 at 10:14 pm
Yes very very good point. Apologies for not pointing that out. Just answering the problem that was asked. There is a previous thread with the actual original question of what...
November 21, 2013 at 11:40 pm
xp_cmdshell is used to run command shell commands like batch files, executables etc which is probably not what you want. You should simply call
EXEC (@sql)
November 21, 2013 at 10:33 pm
You need to concat your variable in to your string...
ALTER procedure [dbo].[totalinstallations]
@installations nvarchar(1000)
AS
BEGIN
declare @sql nvarchar(1000)
SET @sql = 'SELECT softwaremanufacturer,productname,productversion,
November 21, 2013 at 10:09 pm
Viewing 15 posts - 16 through 30 (of 44 total)