Viewing 15 posts - 721 through 735 (of 14,953 total)
Challenges will mainly depend on the amount of data and what you can allow for downtime, or if you can do an online rebuild.
October 3, 2012 at 7:51 am
GSquared (10/3/2012)
dwain.c (10/1/2012)
You may want to take a look at this article, by our own, beloved Joe Celko: http://www.simple-talk.com/sql/t-sql-programming/contiguous-time-periods/
The solution Joe provides doesn't actually prevent gaps. The PreviousEndDate column...
October 3, 2012 at 7:41 am
dwain.c (10/1/2012)
You may want to take a look at this article, by our own, beloved Joe Celko: http://www.simple-talk.com/sql/t-sql-programming/contiguous-time-periods/
The solution Joe provides doesn't actually prevent gaps. The PreviousEndDate column joins...
October 3, 2012 at 7:04 am
One reason to keep servers running is that turning a computer on takes about as much energy as running it for 1-3 hours, because capacitors have to be charged up,...
October 2, 2012 at 2:25 pm
patrickmcginnis59 (10/2/2012)
Not to protect weak interviewers.
...
So, I post a list. A manager reads it, memorizes it in the hopes it will help deliver the interview. A person masquerading as a...
October 2, 2012 at 1:06 pm
GUID vs BigInt vs Int for a surrogate primary key, or the leading edge of any index, is all about what you want the index/key to do. There is...
October 2, 2012 at 11:59 am
Yes. The reason to not add indexes you don't need isn't because of performance degredation. It's because you'll be wasting drive space on storage, and CPU cycles on...
October 2, 2012 at 11:45 am
patrickmcginnis59 (10/2/2012)
Grant Fritchey (10/2/2012)
patrickmcginnis59 (10/2/2012)
Grant Fritchey (9/21/2012)
Lowell (9/21/2012)
Grant wanted to avoid putting the answers on the forum,...
October 2, 2012 at 11:43 am
Sure, you can add that index. I'm not sure why that view would exist, since simply selecting from b would be easier and would do the same thing.
October 2, 2012 at 10:14 am
Ellen-477471 (10/2/2012)
I've searched for this...
October 2, 2012 at 9:55 am
dan-572483 (10/1/2012)
I'd...
October 2, 2012 at 8:44 am
CptCrusty1 (10/1/2012)
October 2, 2012 at 8:04 am
Do you have a Users table? If so, you need to start from that, then join to UsersCurriculum and then Curriculum.
Otherwise, you don't have a full list of users.
If...
October 1, 2012 at 2:04 pm
CptCrusty1 (10/1/2012)
My DBA Vendor indicated that they had to delete indexes before creating primary key's on a table. They created the...
October 1, 2012 at 1:58 pm
The query is backwards for that. The left join you defined would find a curriculum that has never had any users, not the other way around.
October 1, 2012 at 1:32 pm
Viewing 15 posts - 721 through 735 (of 14,953 total)