Viewing 15 posts - 31 through 45 (of 583 total)
A database of size 40GB with largest index 10GB would need a maximum of 50GB for the index rebuild.
However, I'm not sure whether the next-largest-index will reuse the, now released,...
September 17, 2015 at 7:55 am
index rebuilds require as much space as your largest table. During rebuild you essentially have two copies of the index until the rebuild is complete, at which time to original...
September 16, 2015 at 2:41 pm
What is maxdop set to?
Are you using resource governor?
Have you set processor affinity?
just to verify how many CPUs SQL Server is recognizing,what does query below return?
SELECT cpu_count,hyperthread_ratio,scheduler_count
FROM...
September 16, 2015 at 2:15 pm
Are you testing mail with the same account\profile used in SQL Agent?
go to the properties of SQL Server Agent, go to the alert system page, and check which mail profile...
September 9, 2015 at 9:30 am
pretty sure as soon as you have anything on your passive/DR instance that isn't used for DR then instance will have to be properly licensed. Your best best to get...
August 18, 2015 at 8:16 am
Well that's the problem, you let a Sharepoint guy touch your server. 🙂
August 18, 2015 at 7:48 am
check out Multi server administration. This may be what you are looking for.
August 18, 2015 at 7:45 am
Is your C: drive or the folder where SQL server is currently installed compressed? If so try uncompressing folder.
August 17, 2015 at 3:27 pm
anything in the installation log files? (c:\program files\Microsoft SQL Server\110\setup bootstrap\log\). Logs here might give indication as to what is going wrong.
August 17, 2015 at 2:24 pm
Do you have the correct CU for your current version? there is a CU 6 for RTM, SP1 and SP2
August 17, 2015 at 2:11 pm
I finally have something that works. Not necessarily elegant and I have no idea what it will perform like, but the results are what is expected.
Here's the code:
CREATE...
July 30, 2015 at 3:12 pm
paul.s.lach (7/30/2015)
1. do a cross join of all courses and terms
2. left join the results of the cross join to the...
July 30, 2015 at 2:34 pm
I'd like to thank everyone for their contributions.
Even if supplied solution did not give desired results, they did give me different ways of looking at problems and , in...
July 30, 2015 at 7:54 am
First, is the right answer 4.3333 ? I changed the data type in your table to decimal(5, 4), as the float data type would be unable to accurately...
July 29, 2015 at 3:15 pm
Jacob Wilkins (7/29/2015)
CREATE TABLE [gpa]([term] int,
...
July 29, 2015 at 1:50 pm
Viewing 15 posts - 31 through 45 (of 583 total)