6

我想从varbinary(max)SQL Server 数据库中的列中检索一些二进制数据以进行调试。

将这些数据放入本地二进制文件的最简单方法是什么,最好不必编写一次性控制台应用程序?

我曾尝试使用 SQL Server Management Studio(使用“结果到文件”选项),但这会将十六进制编码的二进制字符串输出到文件,而不是原始二进制数据。

4

3 回答 3

7

我想不出比扔掉一点 C# 更简单的方法...

    static void Main(string[] args)
    {
        GetBinaryDataToFile("Server=localhost;Initial Catalog=ReportServer;Integrated Security=true", "D:\\temp.dat");
    }

    public static void GetBinaryDataToFile(string connectionString, string path)
    {
        using (SqlConnection connection = new SqlConnection(connectionString))
        {
            connection.Open();

            using (SqlCommand command = connection.CreateCommand())
            {
                command.CommandText = "SELECT Sid FROM Users WHERE UserID = '62066184-8403-494E-A571-438ABF938A4F'";
                command.CommandType = CommandType.Text;

                using (SqlDataReader dataReader = command.ExecuteReader())
                {
                    if (dataReader.Read())
                    {
                        SqlBinary sqlBinary = dataReader.GetSqlBinary(0);
                        File.WriteAllBytes(path, sqlBinary.Value);
                    }

                    dataReader.Close();
                }
            }

            connection.Close();
        }
    }

此代码已在默认安装的带有 Reporting Services 的 SQL Server 中使用 Users.Sid​​ 列(它是 varbinary 类型)进行了测试。

于 2010-04-28T09:14:05.387 回答
4

我喜欢 LinqPad 的建议。我试了一下,有一个查询可以在 10 分钟内将二进制文件输出到文件中。没有 VS 项目,没有构建 - 现在脚本已保存,我可以随时将其拉出。非常酷!

LinqPad 脚本:

var g = from pd in Archives 
    where pd.ArchiveId == 123
    select pd;

var q = from p in printDocs
where p.DocumentId == g.SingleOrDefault().DocumentId
select p;

File.WriteAllBytes("C:\\temp.pdf", q.SingleOrDefault().Pdf.ToArray());
于 2011-05-05T14:20:32.753 回答
3

我用命令找到了这个解决方案bcp(从命令提示符运行):

c:\temp>bcp "select MYVARBINARYCOL from MYTABLE where id = 1234" queryout "c:\filename.pdf" -S MYSQLSERVER\MYINSTANCE -T

Enter the file storage type of field filedata [varbinary(max)]:
Enter prefix-length of field filedata [8]: 0
Enter length of field filedata [0]:
Enter field terminator [none]:

Do you want to save this format information in a file? [Y/n] n

Starting copy...

1 rows copied.
Network packet size (bytes): 4096
Clock Time (ms.) Total : 15 Average : (66.67 rows per sec.)

我使用 -T 选项使用 Windows 身份验证连接到数据库。如果您使用密码验证,则需要使用 -U 和 -P 开关来指定用户名和密码。

但我也喜欢Robb Sadler 回答中的LinqPad建议,并且以某种方式更喜欢它。

于 2014-07-27T07:40:54.060 回答