Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
wkalo
Starting Member
10 Posts |
Posted - 2011-05-30 : 03:55:52
|
Hi There I created a table as followsCREATE TABLE [dbo].[stockGifs]( [StockGifID] [int] NOT NULL, [Gif] [varbinary](max) NULL) ON [PRIMARY]I Have Inserted A Photo Using The Following Syntaxinsert stockGifs (StockGifID, Gif) Select 3, BulkColumn From Openrowset ( Bulk 'C:\Folder1\SubFolder1\Photo-0017.jpg', Single_blob) as XOn The select Statement I Get An Empty FieldIf I Open The Table In The Image Field I See <Binary Data> What Seems To Be The Trouble ???? Any Help Please ??? |
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2011-05-30 : 05:44:03
|
You can't view an image in the Server. It should be done using a front end applicationMadhivananFailing to plan is Planning to fail |
 |
|
|
|
|