You can read content of file using OPENROWSET(BULK) function and store content in some table:
INSERT INTO myTable(content)
SELECT BulkColumn
FROM OPENROWSET(BULK N'C:\Text1.txt', SINGLE_BLOB) AS Document;
SINGLE_BLOB option will read entire content from a file as single cell.