Viewing 15 posts - 616 through 630 (of 726 total)
It's been a while, but I do think that the back end needs a 0 or 1 in FrontPage.
February 2, 2007 at 2:03 pm
That depends on your development environment, but 0 (zero) usually represents an unchecked state, while 1, -1, or sometimes any non-zero value represents a checked state. Some dev environments even have...
February 2, 2007 at 11:35 am
The method I came up with is the same basic concept, and I have no idea whether it would be faster or slower than Ninja's solution (I'm guessing they'd be...
February 1, 2007 at 9:41 am
Are you wanting to do this for a range of dates, or specifically only for the last six orders, no matter how many days elapsed between the first and last...
January 31, 2007 at 3:52 pm
My bad, I had them switched in my head. I'm got a bit confused, as RS does allow for a Report Header, it's just in the body itself, which I see you've...
January 31, 2007 at 3:43 pm
The link you provided is to a picture stored on your local drive, so while you can see it, none of us can (except for those who have hacked into...
January 30, 2007 at 10:46 pm
By the way, RS does have Report Headers. Right click on that grey square in the upper left corner of the layout design window, and you can turn on the...
January 30, 2007 at 10:44 pm
I don't believe that it even checks names when you set permissions from SQL Server Management Studio. When you do it from Report Manager, even though it looks the same,...
January 29, 2007 at 7:24 pm
You'll find that many folks here have hundreds of millions or even billions of rows of data, so don't fret expanding your's to 288k. The main problem with the design...
January 29, 2007 at 6:48 pm
Without seeing your data, I don't see anything obviously wrong, but there are a few things I'd check, just to ensure there are no typos, etc.
First, your derived table for...
January 29, 2007 at 6:40 pm
This is pretty close to what it sounds like you're attempting to do with it.
January 26, 2007 at 10:14 am
While I agree with jezemine about the model, below is a solution (untested) that should work for you. Keep in mind that you didn't qualify columns, so I guessed as...
January 24, 2007 at 4:13 pm
A couple of questions. Are you joining on col1 between the two tables? Assuming that is true, what are the maximum number of rows that a single col1 value has in...
December 18, 2006 at 11:38 am
Untested, and it's Friday, so probably not the ideal solution, but it should work:
UPDATE
i
SET
i.Payor = p.Payor
FROM
InpatientMedStat AS i
INNER JOIN (
SELECT
PID
,Payor
,MaxAmt
FROM
[Table two] AS t1
INNER JOIN (
SELECT
PID
,MaxAmt = Max(PayAmount)
FROM
[Table two]
GROUP BY
PID
) AS...
December 15, 2006 at 12:46 pm
The problem is that you are using a five part name to reference a column in a table that you've already aliased, specifically "mwltmw.MWI.DBO.RM20201.APFRDCNM" and "mwltmw.MWI.DBO.RM20201.APTODCNM".
In fact, after looking at this...
December 15, 2006 at 12:10 pm
Viewing 15 posts - 616 through 630 (of 726 total)