October 7, 2005 at 11:34 am
Shouldn't the image be in a separate table.
That allows you to join to that table using a case expression and it follows the normalization rules.
October 7, 2005 at 11:43 am
Could you tell me how to do that?
October 7, 2005 at 11:47 am
Even simpler than that.
Table Images
ImageID
ImagePath (or the image itself)
...
Table
Classification
ClassificationID
ImageID (foreign key to the images table)
...
Then
Select Columns, List, from dbo.Classifications S inner join dbo.Images I on S.ImageID = I.imageID
October 7, 2005 at 11:52 am
Oh, you meant on the dataase... I meant in the report table...
I'll try having an image column in my databse table...
Thanks
October 7, 2005 at 12:02 pm
That's how I'd do it... but maybe there's another way in RS (never worked with that product).
Viewing 5 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply