Viewing 15 posts - 1 through 15 (of 87 total)
That is cool SQLRNNR.
I don't know if this would always work, but this at least works for the given puzzle to return it in 9 x 9:
SELECT TOP 9 SUBSTRING(s,...
August 17, 2011 at 8:01 am
Jeff Moden (4/22/2010)
bc_ (4/21/2010)
try:
comp_column IN ('mon ','tue ','wed ','thu ','fri ','sat ','sun ')
Why? comp_column only contains 3 characters according to the OP's posted code.
eseosaoregie (4/21/2010)
April 22, 2010 at 7:16 am
try:
comp_column IN ('mon ','tue ','wed ','thu ','fri ','sat ','sun ')
April 21, 2010 at 9:04 am
Yes, I generally create a view limited to the records that will likely match. The Fuzzy lookup is very intensive and the more limited you are comparing against, the...
April 19, 2010 at 9:22 am
I would check the Custom Properties of the Fuzzy Lookup. If the Exhaustive property is set to True, I've seen it take forever. The Reference index settings may...
April 19, 2010 at 7:56 am
I enjoy an afternoon on the golf course (on company time and money) from time to time 🙂
April 16, 2010 at 7:58 am
Could you post a small sample file (~100 records) that has the rogue record in it? And perhaps a screenshot of what the package looks like, sources, transforms and...
April 16, 2010 at 7:05 am
Inside the Fuzzy Lookup transform, on the Columns tab, right click one of the links between the fields and select "Edit Mappings". There you can set a minimum similarity...
March 9, 2010 at 7:52 am
[font="Arial Black"]ARIAL BLACK[/font]
is there an advantage to using a fixed width font? or is it personal preference?
February 25, 2010 at 7:37 am
Glad most folks liked it. Here is the actual code (you'll have to remove the *'s around amp to make it work):
WITH cteData (ID, Colors) AS
(SELECT1, 'Blue'
UNION
SELECT2, 'Red'
UNION
SELECT3, 'Yellow'
UNION
SELECT4,...
February 19, 2010 at 7:54 am
Oops, and for the other days of week path:
DATEPART("dw", GETDATE()) != 2
February 15, 2010 at 1:45 pm
Viewing 15 posts - 1 through 15 (of 87 total)