Viewing 6 posts - 1 through 6 (of 6 total)
Nullable columns it is. It's not so much the data integrity that bugged me, it was scalability. I don't like the idea of having a table that has...
August 27, 2004 at 3:32 pm
SELECT [ACCOUNT #], MAX([DATE]) FROM PAYMENT_TABLE GROUP BY [ACCOUNT #]
That would get you a result like the following for the above data:
123456 8/9/04
123457 5/19/04
If...
August 27, 2004 at 10:21 am
I hope it's open source, because there are several things that need fixed. In my 5 or 6 posts here, i've had a couple just clear and disappear when...
March 25, 2004 at 1:44 pm
Never used cubes, but in Sql there is the datepart() function. You can get the week for anydate like so:
select datepart(wk, '3/25/2004')
>> 13
Apologies if this isn't in the realm of...
March 25, 2004 at 1:08 pm
To delete records from PROD for matching records in AUDIT, given the constraints I listed in the original post.
March 9, 2004 at 7:28 pm
Thanks for the responses. The structure is already hardcoded, so i'm trying to get away from that.
I have one additional issue, and I believe it will fit...
February 24, 2004 at 6:00 pm
Viewing 6 posts - 1 through 6 (of 6 total)