Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
149 views

SQL user defined aggregate order of values preserved?

Im using the code from this MSDN page to create a user defined aggregate to concatenate strings with group by's in SQL server. One of my requirements is that the order of the concatenated values are ...
1
vote
1answer
144 views

SQL Server user-defined aggregate returns an error if aggregating 0 rows

I have this SQL Server user-defined aggregate: [SqlUserDefinedAggregate(Format.UserDefined, Name="median", IsInvariantToDuplicates=false, IsInvariantToNulls=true, IsInvariantToOrder=true, ...
1
vote
1answer
598 views

User-Defined Aggregate in SQL Server 2008 - How to deploy with MaxByteSize = -1?

I read here (and elsewhere) that it's possible, in SQL Server 2008, to build a user-defined aggregate which can return a string longer than 8000 characters. This is exactly what I need. Supposedly, ...
0
votes
0answers
20 views

sqlclr aggregate: Use of MaxByteSize = -1 cause Null exception during serialization

I've written a uda and it works fine in initial testing. The aggregate takes two columns of data and outputs them in XML. When I increase the data volume the aggregate fails with an insufficient ...
0
votes
1answer
184 views

rounding problem with sql clr extension (user-defined aggregate)

I'm writing some custom .Net extensions for SQL Server 2008. One of them is a user-defined aggregate that should aggregate a set of decimal numbers to a decimal value. To narrow down my problem, I'm ...