Viewing 15 posts - 9,391 through 9,405 (of 14,953 total)
as long as it is liable or slander you should at least respect what I say
I think there should be a "not" in there. Right?
June 2, 2009 at 6:35 am
Good idea Phil.
Most companies need to actually set up a parallel system, with dummy data, and "tiger team" it, by deliberately hacking the fake site. Any dummy data they...
June 2, 2009 at 6:28 am
18 Gig with 2% growth per day will pass the 24 Gig mark in just about 2 weeks. It'll be over 600 Gig in 6 months. Assuming compound...
June 1, 2009 at 3:29 pm
Well, the thing you most hope to avoid is the one that's most likely to bite you in the ...
🙂
June 1, 2009 at 3:20 pm
Mike McQueen (6/1/2009)
I know there is the small performance hit, is...
June 1, 2009 at 3:19 pm
The trigger will fire once. It's absolutely critical that triggers be built so they can efficiently handle multiple rows.
June 1, 2009 at 3:06 pm
Bob Hovious (6/1/2009)
Can anyone who has been through the partitioning wars give me some advice here?
I suggested load-testing three scenarios. Really, that's how you'll get the best solution for...
June 1, 2009 at 3:05 pm
I suspect that you're best action would be to keep the tables partioned the same way, so as to avoid extra overhead in querying even more partitions.
What you might do...
June 1, 2009 at 3:04 pm
I can't fully judge it based just on your description, but I'm going to say that's not normalization, that's something else. It's based on a relatively common misconception of...
June 1, 2009 at 3:00 pm
Grats and well done!
And, of course, thanks for the information. Very good write-up, without being any sort of brain dump or anything. That's good.
June 1, 2009 at 2:41 pm
Jus (6/1/2009)
Hello GSquared..Wonder is that when i ran your code it works...but in my db, it returns no records...
--Jus
That almost certainly means there are no exact matches for that Where...
June 1, 2009 at 2:38 pm
Jack Corbett (6/1/2009)
Lynn Pettis (6/1/2009)
June 1, 2009 at 2:38 pm
I've used calculated columns for that kind of thing a few times, but I've generally found the best is a history table. Set up the indexes on them correctly,...
June 1, 2009 at 2:11 pm
I just tested this:
set nocount on;
if object_id(N'tempdb..#testcases') is not null
drop table #testcases;
CREATE TABLE #testcases(
[testcase_id] [int] IDENTITY(1,1) NOT NULL,
[ScenarioName] [varchar](max) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[scenario_category] [varchar](15) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[expected_bundles] [varchar](max) COLLATE SQL_Latin1_General_CP1_CI_AS...
June 1, 2009 at 2:03 pm
There are ways to get Windows apps/services to run on Linux, but you're almost certainly better off using one of the RDBMSs that's designed for Linux/Unix. Like MySQL or...
June 1, 2009 at 10:02 am
Viewing 15 posts - 9,391 through 9,405 (of 14,953 total)