views:

27

answers:

2

Where can I find information on storing ".dll" files in SQL Server 2005? Is it the same as storing Binary data?

+2  A: 

You could use a binary or varbinary data type you can store any binary information including dlls.

Kane
+1  A: 

Yes, it's just a file like a Word document or image...

Use varbinarx(max)

gbn