SQL Text containing a byte order mark errors with a vague error message.
DECLARE @BinaryTest varbinary(2) = 0XFFFE
DECLARE @SQL nvarchar(max) = '
SELECT *
FROM (
VALUES
' + ISNULL(CONVERT(nvarchar(m…
Created on 6/10/2013 (updated 1 week ago) | 0 validations | 0 workarounds | 0 comments | feedback id: 789853
|
|
SSDT SqlPackage.exe does not recognize case sensitive updates. Therefore, it fails to deploy case-only xpath updates to scripts.
Created on 2/9/2013 (updated 14 weeks ago) | 0 validations | 0 workarounds | 2 comments | feedback id: 778893
|
|
|
Closed
as Won't Fix
|
|
DECLARE @Message nvarchar(max) = ''
SELECT @Message = REPLICATE('1', 8000)
PRINT LEN(@Message)
DECLARE @Message nvarchar(max) = ''
SELECT @Message = @Message + REPLICATE('1', 8000)
PRINT LEN(@Message…
Created on 4/13/2012 (updated 57 weeks ago) | 0 validations | 0 workarounds | 2 comments | feedback id: 736837
|
|
|
Closed
as By Design
|
|
If you accidentally rename your columns including any square brackets, the column is renamed incorrectly.
Created on 2/2/2012 (updated 70 weeks ago) | 0 validations | 0 workarounds | 1 comment | feedback id: 722776
|
|
|
Closed
as By Design
|
|
This SQL query will not concatenate results unless you supply the TOP keyword to the concatenation query. It instead returns only the last row's value within the @Content variable (and corresponding …
Created on 11/16/2011 (updated 2 weeks ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 704389
|
|
|
Closed
as By Design
|
|
Databases names containing control characters such as ASCII 127 (DEL char) do not display correctly in the interface. Control characters should be disallowed from databases names as they are indistin…
Created on 10/1/2010 (updated 101 weeks ago) | 0 validations | 0 workarounds | 1 comment | feedback id: 608963
|
|
|
Closed
as Won't Fix
|
|
I'm receiving an error from the sp_help stored procedure when running it on a table. I've scripted the table and condensed the script to focus where the bug is being caused by. It's being caused by …
Created on 10/7/2009 (updated 186 weeks ago) | 1 validation | 0 workarounds | 5 comments | feedback id: 496501
|
|