
1. Text File in a columnSelect statement can be utilized as to select data from a text file in a single column where 1 is as ID, Asia as region and the last column will contain the data from a text file. SELECT 1 AS ID, 'ASIA' AS REGION, * FROM OPENROWSET ( BULK 'C:\mysql.TXT',SINGLE_CLOB) AS MYTABLEin the OPENROWSET parenthesis replace the path with your text file path.Save an image in a binary formatFollowing query will save picture in sql db in binary format.UPDATE CompanyInfo SET Logo = A.BulkColumn...