0

このコードを使用して bak ファイル名を取得すると、#tmpTable最後の行が null になるのはなぜですか?

--Configure extension procedure the cmd_shell enable
        declare @backupfile_store_path varchar(200)
                ,@DynamicSql varchar(200)
        exec sp_configure 'show advanced options',1;
        reconfigure;
        exec sp_configure 'xp_cmdshell',1;
        reconfigure;
        if (OBJECT_ID('tempdb.dbo.#tmpTable') is not null)
        drop table #tmpTable --#tmpTable
        --select OBJECT_ID('tempdb.dbo.#tmpTable')

    create table #tmpTable
    (
        DBName varchar(200)
    )       
    set @backupfile_store_path='E:\20131015'
    /*using extended procedure xp_cmdshell to get the path and name*/
    set @DynamicSql='cd /d "'+@backupfile_store_path+'"&&dir /a /b /s *.bak'
    insert into #tmpTable exec xp_cmdshell @DynamicSql
    select * from #tmpTable

このコマンドを使用すると:

C:\Users\Administrator>cd /d e:\20131015

e:\20131015>dir /a /b /s *.bak>>c:\a.txt

e:\20131015>

txt ファイルの最後の行に空白の列がありますが、空白の列があるのはなぜですか?

4

1 に答える 1

0

Windowsdirコマンドについてですが、最後の出力は空白行です。

于 2013-10-16T01:55:54.000 に答える