sys.dm_exec_describe_first_result_set_for_object returns inconsistent results when the objectid is not valid.
Select * From sys.dm_exec_describe_first_result_set_for_object(object_id('NoObject'),1);…
Created on 3/2/2013 (updated 10 weeks ago) | 0 validations | 0 workarounds | 1 comment | feedback id: 780521
|
|
If i declare an index in SSDT as
CREATE INDEX [IX_myTable_Column] ON [dbo].[myTable] ([Name]) with(ONLINE=ON)
when i generate the publish script the ONLINE =ON option is missing.
Needless to say t…
Created on 1/4/2013 (updated 8 weeks ago) | 0 validations | 0 workarounds | 2 comments | feedback id: 775760
|
|
Hi,
i have been comparing schema 'A' to schema 'B' and have been having some random procs being returned as being changed. We can see that there are only whitespace changes and that the ignore white…
Created on 12/12/2012 (updated 22 weeks ago) | 0 validations | 1 workaround | 2 comments | feedback id: 774098
|
|
|
Closed
as By Design
|
|
If i declare a table inside SSDT without DATA_COMPRESSION
and then compare the dacpac against a database that has DATA_COMPRESSION set on that table, SSDT will report this as a change.
This happen…
Created on 12/10/2012 (updated 16 weeks ago) | 0 validations | 0 workarounds | 1 comment | feedback id: 773928
|
|
|
Closed
as Won't Fix
|
|
If i have a hypthetical index on my database:
Create index IdxName on TableName(ColumnName) with statistics_only
Firstly SSDT doesnt understand the syntax so i have to create it as non hypothetical.…
Created on 11/28/2012 (updated 24 weeks ago) | 0 validations | 0 workarounds | 1 comment | feedback id: 772495
|
|
|
Closed
as Won't Fix
|
|
Similar to:
https://connect.microsoft.com/SQLServer/feedback/details/635082/sqlcmd-bug-scripting-variable-not-defined
When publishing a database that uses , for example , $(ESCAPE_SQUOTE()) , then a…
Created on 7/6/2012 (updated 43 weeks ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 752581
|
|
|
Closed
as By Design
|
|
With sqlserver 2012 RTM and 2008R2 - When a query is using top, is reading data from a cold cache and the query also uses a key lookup , the actual row counts returned from the initial scan of the NC …
Created on 3/8/2012 (updated 61 weeks ago) | 0 validations | 0 workarounds | 1 comment | feedback id: 729828
|
|
|
Closed
as By Design
|
|
Consider the below code :
create table myTable
(
Id integer not null,
InView char(1) not null,
SomeData varchar(255) not null
)
go
Create view vwIxView
with schemabinding
as
Select ID,Somedata,left(…
Created on 1/6/2012 (updated 2 weeks ago) | 1 validation | 2 workarounds | 3 comments | feedback id: 717171
|
|
|
Closed
as Won't Fix
|
|
Importing a database with SSDT errors when a stored procedure that uses FORCESEEK
eg
create procedure Seek
as
Select * from sys.objects with(forceseek) where name ='j'
go
Errors with :
System.…
Created on 12/19/2011 (updated 71 weeks ago) | 0 validations | 0 workarounds | 3 comments | feedback id: 714721
|
|
|
Closed
as Duplicate
|
|
In ssms 2012 , the new extended event of inaccurate_cardinality_estimate is not shown in the extended events manager.
Additionally the actual row count is returned as (estimated rows *5)+1, why not…
Created on 12/6/2011 (updated 70 weeks ago) | 0 validations | 0 workarounds | 1 comment | feedback id: 711792
|
|
|
Closed
as By Design
|
|