Semicolum bug in 6.4.0.633

jmeyerjmeyer Posts: 70 Bronze 2
edited September 24, 2014 1:18PM in SQL Prompt
Repo:
DECLARE @cmd VARCHAR(1000);

DECLARE @filelist TABLE (filelist_name VARCHAR(255));

SET @cmd = 'dir /B /A:-D';

INSERT  INTO @filelist
        (filelist_name)
        EXEC master.sys.xp_cmdshell
          @cmd;
Pressing Ctrl-B, Ctrl-C multiple times will insert multiple semicolons in the last line of code behind "@cmd;". This bug also exists in private build 6.4.0.634

Comments

Sign In or Register to comment.