Viewing 15 posts - 196 through 210 (of 560 total)
Eric M Russell (1/9/2015)
January 9, 2015 at 8:45 am
GBeezy (12/29/2014)
December 29, 2014 at 7:32 am
Measure workload during normal business hours. You can use Perf. Mon for that. One or two weeks should be ok, but no less than that. I prefer Extended Events instead...
December 26, 2014 at 9:28 am
mtillman-921105 (11/1/2012)
November 25, 2014 at 7:56 am
Dave Mason (11/20/2014)
November 21, 2014 at 7:43 am
Would it make any major performance impact to only have 1-2 virtual drives per SQL server to handle the various data/log/tempdb files vs the current setup? What do you all...
November 13, 2014 at 9:18 am
Shawn Melton (11/13/2014)
The main point...
November 13, 2014 at 9:00 am
Sounds like a permission issue to me. But posting the actual error may help.
October 15, 2014 at 2:41 pm
I use powershell. Like this:
$Path = "D:\MyPath"
$CurrentDate = Get-Date
$DatetoDeleteFULL = $CurrentDate.AddDays(-14)
$DatetoDeleteDIFF = $CurrentDate.AddDays(-7)
Get-ChildItem $Path -Recurse -include *_FULL_*.sqb| Where-Object { $_.LastWriteTime -lt $DatetoDeleteFULL } | Remove-Item
Get-ChildItem $Path -Recurse -include *_DIFF_*.sqb| Where-Object...
October 15, 2014 at 2:30 pm
trayalacheruvu (10/7/2014)
Good Day. Primarily we have WH Solution in place running with the back end of SQL 2005 on Windows 2003 Server. Recently we have upgraded databases from SQL...
October 15, 2014 at 1:55 pm
Grant Fritchey (10/15/2014)
sql-lover (10/15/2014)
Grant Fritchey (10/15/2014)
That's one piece of functionality that didn't make the transition into the GUI for extended events. You just can't do it.
Thanks for reply Grant.
Wow, that...
October 15, 2014 at 9:08 am
Grant Fritchey (10/15/2014)
That's one piece of functionality that didn't make the transition into the GUI for extended events. You just can't do it.
Thanks for reply Grant.
Wow, that was useful. It's...
October 15, 2014 at 6:16 am
ramana3327 (9/29/2014)
If Report server tempdb logspace used is 93%, Do we need to restart the server?
A reboot may temporary fix the problem but you need to find out which...
October 2, 2014 at 12:48 pm
FULL, and DIFFERENTIAL backups do not break the LSN log chain, so you can have Log Shipping and it will be ok.
Now, it is a horrible idea to keep your...
October 2, 2014 at 12:41 pm
It depends of the workload and type of operations.
In data warehousing, which is basically the type of databases I have, I've seen Indexes with columns on 80% or more of...
October 2, 2014 at 9:49 am
Viewing 15 posts - 196 through 210 (of 560 total)