Viewing 15 posts - 1,456 through 1,470 (of 5,685 total)
ACinKC (6/18/2012)
June 18, 2012 at 2:13 pm
Oksana March (6/16/2012)
Can you help me understand this better? I would not be able to explain it to my rubber ducky for sure, if I had one 🙂 I...
June 18, 2012 at 2:05 pm
CELKO (6/16/2012)
There is no need to write 1970's Sybase dialect any; use ANSI Standard syntax:
Unless, of course, you're creating code that someone who's working on older systems will be able...
June 17, 2012 at 7:25 pm
Brandie Tarvin (6/15/2012)
Craig,I don't have a Rubber Ducky. Can I borrow yours, please?
Here's the best I've got for now...
June 17, 2012 at 6:51 pm
dj1202 (6/15/2012)
Evil Kraig F (6/15/2012)
dj1202 (6/15/2012)
June 15, 2012 at 6:29 pm
Like so? (btw, thanks for the easy to use data)
SELECT
SUM( Value) AS SumValue
FROM
(SELECT
--DATEADD( dd, DATEDIFF( dd, 0, DateTimeStamp), 0) AS DayOfRecord,
MAX( DateTimeStamp) AS MaxDT
FROM
#Test
GROUP BY
DATEADD( dd, DATEDIFF( dd, 0,...
June 15, 2012 at 5:36 pm
dj1202 (6/15/2012)
There are duplicate dates (each correspond with a unique invoice number). Therefore, it will not let me assign. Any suggestions on how one should approach this?
I'd have to go...
June 15, 2012 at 3:49 pm
This really doesn't work for Full-Text. Full-Text indexing's purpose really is single column use. However, you may want to investigate the Fuzzy Lookup component in SSIS. It,...
June 15, 2012 at 3:45 pm
Merge's power is in the single transaction / modification capability for both sides of the Upsert, which implies multiple rows, and not having to double-pass the data.
By doing a select...
June 15, 2012 at 3:43 pm
Lynn Pettis (6/15/2012)
Brandie Tarvin (6/15/2012)
June 15, 2012 at 3:30 pm
Revenant (6/15/2012)
ACinKC (6/15/2012)
June 15, 2012 at 1:15 pm
dtoews 7666 (6/14/2012)
June 14, 2012 at 3:05 pm
I believe I can sum up the difficulty with Oracle compared to SQL Server with a quote I once heard an old Mainframer tell me when I started.
"If it's not...
June 14, 2012 at 3:01 pm
Personally, I'd look at how your restrictions are actually working. The reason for this is because date in this case as the leading edge is probably not your best...
June 13, 2012 at 4:10 pm
First, let me say nice work on the data setup and results, however, you didn't test it and you missed a spot. It needs quotes for the text entries,...
June 13, 2012 at 3:13 pm
Viewing 15 posts - 1,456 through 1,470 (of 5,685 total)