Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MS SQL Server 2005 データベースのバイナリ データを含むフィールドの内容を表示する方法を知っている人はいますか?
バイナリとして保存された単なるテキストであるかどうかによって異なります。そうである場合は、これを見てください
create table #bla (col1 varbinary(400)) insert #bla values(convert(varbinary(400),'abcdefg')) select col1,convert(varchar(max),col1) from #bla
出力 0x61626364656667 abcdefg