Viewing 15 posts - 16 through 30 (of 62 total)
March 6, 2018 at 1:23 pm
February 22, 2018 at 1:34 am
February 22, 2018 at 12:53 am
Thanks for the reply.
Why shouldn't I drop the clustered indexes? - they're not needed (hence why non exist), as they're only needed for the move.
March 16, 2015 at 6:56 am
Solved! Not quite sure why though.
The fact that I could restore the log manually, said something was up with the Agent starting automated task. It definitely wasn't a permissions issue....
February 13, 2015 at 1:52 am
Thanks for the suggestion.
Unfortunately, this will not work for my scenario. The database from what I know is around 275GB in size, not sure of the log file size.
I...
October 30, 2014 at 4:09 am
Thanks for the replies.
The question was more around if there was any other way to release the unused space back to the OS apart from DBCC SHRINKFILE, as there isn't,...
July 11, 2014 at 9:07 am
Thank you for the clarification.
Also, am I right in thinking I can only change for columns which have char, varchar, text, nchar, nvarchar, and ntext as their datatype?
March 20, 2014 at 8:26 am
I simply ran @@VERSION and from the build details I was able to cross-reference with http://support.microsoft.com/kb/321185 to confirm definitively which CU has been applied.
March 4, 2014 at 11:11 am
Bob, thank you, this is working as I'd hoped. I can sort of see what I needed to do.
One thing has just occurred to me though, I need a date...
February 6, 2014 at 10:20 am
Thank you.
Code to retrieve disk information needed via Powershell
Get-WMIObject Win32_LogicalDisk -filter "DriveType=3" -computer (Get-Content c:\computers.txt) | Select SystemName,DeviceID,VolumeName,@{Name="size(GB)"; Expression={"{0:N1}" -f($_.size/1gb)}},@{Name="freespace(GB)";Expression={"{0:N1}" -f($_.freespace/1gb)}}
Of the back of this, I've created a table on...
February 6, 2014 at 8:44 am
Right I've been able to connect to my instance of sql server via Powershell and run a simple select. I've also figured out the command to retrieve the information I...
February 6, 2014 at 4:10 am
I'm a Powershell newbie so will need to look into first creating the script to get the data I need, then connecting to SQL Server via Powershell to populate my...
February 5, 2014 at 10:18 am
Yeh, I want to stay away from enabling anything on the server.
It's proving to be a lot more complex than I first thought, for the sake of one missing metric...
February 5, 2014 at 8:00 am
Viewing 15 posts - 16 through 30 (of 62 total)