sql server - Controlling file extension when inserting data into SQL Filestream column? -
I have a SQL Server Express database with a 10gig limit, so I save the location by transferring a large text column I'm trying out a filestream type
I created a new database, set the filestream column along with filestreaming and it was set as a full text index.
Then I tried to put data in my new database (insert column in column) into new database, which resulted in filestream files being created with a file extension (which I think is expected) is.
I looks this is causing my full text lookup (i.e., 'search term')) to fail
what filestream Can I specify a default file extension when inserting data into a column? Or do I need to create a program to create temporary text files and insert in that way (I really do not expect !!).
Thank you!
Comments
Post a Comment