Viewing 15 posts - 241 through 255 (of 309 total)
CirquedeSQLeil (4/18/2010)
April 18, 2010 at 1:31 pm
CirquedeSQLeil (4/18/2010)
April 18, 2010 at 1:12 pm
Matt Miller (#4) (4/18/2010)
April 18, 2010 at 12:59 pm
Jeff Moden (2/23/2010)
April 18, 2010 at 10:47 am
Jeff Moden (4/17/2010)
April 18, 2010 at 3:12 am
mec (4/15/2010)
April 17, 2010 at 2:17 pm
Try:
SELECT StartTime
FROM TicketTransaction
WHERE
convert(datetime,StartTime) <= '12:30 PM'
AND
convert(datetime,StartTime) >= '05:30 PM'
You should also consider permanently changing the datatype of this column to...
April 17, 2010 at 7:54 am
Paul White NZ (4/16/2010)
April 17, 2010 at 5:25 am
Paul White NZ (4/16/2010)
April 16, 2010 at 10:18 am
Could you possibly post the actual SQL used in your tests ?
You dont have to post a full repro script, but it would be interesting to see the actual queries...
April 16, 2010 at 6:10 am
OK, I obviously cannot stop thinking about this problem.
I just thought of another really simple and very fast solution.
Just write the update statement like this:
update a
set CountryCode = case when...
April 15, 2010 at 9:34 am
Using an SSIS package definitely seems like the best way to go.
The execution plan you posted is unfortunately not an actual plan created with the method described in the article....
April 15, 2010 at 3:06 am
I just thought of another even more efficient way of solving this problem.
The problem with both your hash-method and my range-method is that they use a fast method to...
April 15, 2010 at 2:48 am
Is this SQL 2000 or SQL 2005 ?
Please post the actual execution plan as either an .sqlpan file or an excel file.
April 14, 2010 at 12:37 pm
Paul White NZ (4/14/2010)
This is not valid (in the source) since it spans a class A address, and the end...
April 14, 2010 at 11:24 am
Viewing 15 posts - 241 through 255 (of 309 total)