Guest User

Untitled

a guest
May 27th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. create table [TableName]
  2. (
  3. ...
  4. FilePath nvarchar(4000) not NULL,
  5. ...
  6. )
  7.  
  8. create table [TableName]
  9. (
  10. ...
  11. FileData varbinary(max) FILESTREAM not NULL,
  12. --либо
  13. --FileData varbinary(max) not NULL,
  14. ...
  15. )
  16.  
  17. create table [FileTableName]
  18. as filetable
Add Comment
Please, Sign In to add comment