I managed to get the datawindow to pull up with a JPG file that I imported.
Does it matter, what type of format that the image file is in?
I performed the following command, to get a sample image in place
INSERT INTO Employees (Id, Name, Photo)
SELECT 10, 'John', BulkColumn
FROM Openrowset( Bulk 'C:\castle.jpg', Single_Blob) as EmployeePicture
Are there things I need to do, in displaying a Tiff file instead of a jpg?
do I need to look into the Table Blob help more?