Viewing 15 posts - 76 through 90 (of 322 total)
Stephen Hirsch (7/14/2010)
What I find interesting here is how much it bothers many of you out there that the query was never optimized in the normal sense.
I find it interesting...
July 14, 2010 at 10:11 am
Jeff Moden (7/13/2010)
John N (7/13/2010)
Figured it out.. use SOUNDEX right?I'm pretty sure I wouldn't use SOUNDEX... it's a little too "fuzzy" for my taste.
Or not "fuzzy" enough
SELECT Soundex('philip'),
...
July 14, 2010 at 7:25 am
Now I spot the other thread :blush:
http://www.sqlservercentral.com/Forums/Topic952016-338-1.aspx
July 14, 2010 at 7:16 am
Simplest method
create table contacts (
EMP_ID int,
Contact_type varchar(20),
Contact_Number varchar(100))
insert into contacts
select 1, 'Home', '92 - 51 - 225478' union all
select 1, 'Cell', '92 - 131 - 225478'...
July 14, 2010 at 6:54 am
majorbloodnock (7/14/2010)
Many of the first personal computers were used as better type-writers. Still the same old typing pool; just quicker. That was a case of isolating a performance issue...
July 14, 2010 at 5:41 am
Here's another story about bosses and optimisation...
A few years ago when I was a still slightly wet behind the ears developer my boss asked me to run a report for...
July 14, 2010 at 4:02 am
For me the preference is full featured for a short time which then automatically disables some features and goes into "free" mode or at least "I'm going to irritate you...
June 4, 2010 at 2:02 am
Just to concur with some of the other posters, for ETL processes the Except function is very useful for comparing 2 tables with the same structure in different databases and...
May 21, 2010 at 4:40 am
Kelsey Thornton (2/19/2010)
Of course, it should refer to the "American" calendar.
In England, like in most of the rest of Europe, the week is deemed...
February 19, 2010 at 3:50 am
Catch all Lookup tables are the bane of my life.
I've lost count of how many times I've had to write queries which join to the same lookup table 10 or...
February 10, 2010 at 4:41 am
LogParser is certainly a relatively unknown Gem.
I've used it off and on for a few years now and I'm frequently suprised at how few people I meet have ever heard...
December 29, 2009 at 10:57 am
Personally, I find using windows scheduling and invoking the SSIS package from a .bat file to be a lot more dependable.
December 10, 2009 at 1:56 am
ian.hadlington (11/13/2009)
November 18, 2009 at 2:51 am
dcawvive (11/12/2009)
I was basing the 10K on the 80 hours estimated in the article @ $100 /hour plus a few hours of debugging, tweaking etc.
Currency conversion issue
I'm working in...
November 12, 2009 at 7:44 am
hickymanz (11/12/2009)
you mean I could get 10k just for writing a script ... right im on that 🙂
Unfortunately only the big consultancies can get away with charging £1000 per day...
November 12, 2009 at 6:16 am
Viewing 15 posts - 76 through 90 (of 322 total)