循环遍历文件中的SQL命令

时间:2012-08-15 08:15:31

标签: sql sql-server

我有一个看起来像这样的SQL文件(显然真实的东西有点长,并且实际上有东西:))

DECLARE @Mandatory int = 0 
DECLARE @Fish int = 3 

DECLARE @InitialPriceID int
if @Mandatory= 0
    begin
    select @InitialPriceID = priceID from Fishes where FishID = @Fish
    end

我有一个'强制'和'鱼'值的文件

  Mandatory,Fish
     1,3
     0,4
     1,4
     1,3
     1,7

我需要编写一个程序,为DBO生成一个SQL文件(或多个文件)来对数据库运行。但我不太确定如何处理这个问题...

干杯

3 个答案:

答案 0 :(得分:1)

您通常应该选择基于集合的解决方案。我不知道完整解决方案会是什么样子,但从一开始你就给出了:

declare @Values table (Mandatory int,Fish int)
insert into @Values(Mandatory,Fish) values
(1,3),
(0,4),
(1,4),
(1,3),
(1,7),

;with Prices as (
    select
        Mandatory,
        Fish,
        CASE
            WHEN Mandatory = 0 THEN f.PriceID
            ELSE 55 /* Calculation for Mandatory = 1? */
        END as InitialPriceID
    from
        @Values v
            left join /* Or inner join? */
        Fishes f
            on
                v.Fish = f.Fish
) select * from Prices

您应该一次性计算所有结果,而不是试图“循环”每次计算。 SQL以这种方式工作得更好。

答案 1 :(得分:1)

冒着过度简化C#或类似事物的风险,你可以使用字符串处理方法:

class Program
{
    static void Main(string[] args)
    {
        var sb = new StringBuilder();

        foreach(var line in File.ReadLines(@"c:\myfile.csv"))
        {
            string[] values = line.Split(',');

            int mandatory = Int32.Parse(values[0]);
            int fish = Int32.Parse(values[1]);

            sb.AppendLine(new Foo(mandatory, fish).ToString());
        }

        File.WriteAllText("@c:\myfile.sql", sb.ToString());
    }

    private sealed class Foo
    {
        public Foo(int mandatory, int fish)
        {
            this.Mandatory = mandatory;
            this.Fish = fish;
        }

        public int Mandatory { get; private set; }
        public int Fish { get; set; }

        public override string ToString()
        {
            return String.Format(@"DECLARE @Mandatory int = {0}
DECLARE @Fish int = {1}

DECLARE @InitialPriceID int
if @Mandatory= 
begin
select @InitialPriceID = priceID from Fishes where FishID = @Fish
end
", this.Mandatory, this.Fish);
        }
    }
}

答案 2 :(得分:1)

有很多文章介绍了如何通过t-sql从文本文件中读取,检查"Stored Procedure to Open and Read a text file" on SO,如果你可以将输入文件的格式改为xml,那么你可以查看SQL SERVER – Simple Example of Reading XML File Using T-SQL