Tagged Questions

SQL Common Language Runtime is technology for hosting of the Microsoft .NET common language runtime engine within SQL Server

learn more… | top users | synonyms

11
votes
5answers
2k views

SQLCLR using the wrong version of the .NET Framework

During a recent restart of our development server the SQL Server started using .NET 4.0 for the SQLCLR. This means that nothing using the CLR in SQL works, or at least that's my understanding by ...
10
votes
2answers
330 views

Should I run F# in SqlClr?

I need to run .Net code in Sql and I'm trying to decide between F# and C#. I'm doing more and more code in F# nowadays so if it's not too impractical, I'd like it to be F#. Is it possible to coerce ...
9
votes
1answer
153 views

Is it possible to create table-valued *methods* in a SQL CLR user-defined type?

I have a CLR UDT that would benefit greatly from table-valued methods, ala xml.nodes(): -- nodes() example, for reference: declare @xml xml = ...
9
votes
9answers
2k views

Are CLR stored procedures preferred over TSQL stored procedures in SQL 2005+?

My current view is no, prefer Transact SQL stored procedures because they are a lighter weight and (possibly) higher performing option, while CLR procedures allow developers to get up to all sorts of ...
8
votes
1answer
189 views

Computed columns in SQLCLR project in Visual Studio 2010

It appears that MS has a bug when dealing with VS 2010 SQL CLR project and computed columns. I am using Pre/PostDeployScript.sql to drop/add the computed column. However, if I try to deploy from ...
8
votes
2answers
2k views

How do I update an assembly and its dependent assemblies in MS-SQL?

This is the situation: I have a Trigger.dll and a Trigger.XmlSerializer.dll. I use CREATE ASSEMBLY to register them in MSSQL. Now, I have compiled new versions of both. I want to use ALTER ...
8
votes
3answers
7k views

How to PRINT a message from SQL CLR function?

Is there an equivalent of PRINT 'hello world' which can be called from CLR (C#) code? I'm trying to output some debug information in my function. I can't run the VS debugger because this is a ...
8
votes
3answers
1k views

Advantage of SQL SERVER CLR

What advantages does SQLServer CLR offer over T-SQL? Is using .NET syntax easier than T-SQL? I see that you can define user types, but I'm not quite clear on why that's better. For example, you could ...
7
votes
5answers
538 views

What are good problems to solve using CLR stored procs?

I have used CLR stores procedures in SQL server for awhile now, but I'm still wondering what the best situations to use them are. MSDN provides some guidelines for use like heavy string manipulation ...
6
votes
2answers
216 views

Can the F# core libs be SQLCLR-approved?

According to this thread, F# Core must be SQLCLR-approved for assemblies to be marked SAFE. Is this planned? Can it even be done?
6
votes
2answers
539 views

How is a CLR table valued function 'streaming''?

The MSDN Docs on table-valued Sql Clr functions states: Transact-SQL table-valued functions materialize the results of calling the function into an intermediate table. ... In contrast, CLR ...
5
votes
3answers
297 views

“cursor like” reading inside a CLR procedure/function

I have to implement an algorithm on data which is (for good reasons) stored inside SQL server. The algorithm does not fit SQL very well, so I would like to implement it as a CLR function or procedure. ...
5
votes
3answers
293 views

SQL Server stops loading assembly

We have developed an assembly for the SQL Server 2008 R2. The assembly has been working for a week. The managed stored proc inside the assembly was working fine for the whole week and then it stops ...
5
votes
1answer
488 views

How to have a sql_variant parameter for a SQL CLR stored procedure?

How can one add a sql_variant parameter to a SQL CLR stored procedure? Using System.Object does not work, and I don't see any attributes that I can use. [Microsoft.SqlServer.Server.SqlProcedure] ...
5
votes
4answers
2k views

How to register System.DirectoryServices for use in SQL CLR User Functions?

I am porting an old 32-bit COM component that was written in VB6 for the purpose of reading and writing to an Active Directory server. The new solution will be in C# and will use SQL CLR user ...
5
votes
3answers
355 views

How do I parse boolean logic?

I need to write a boolean logic parser which will translate the boolean logic language to a SQL WHERE clause. The order of the operands will always be in the correct order (with value on the right). ...
5
votes
1answer
93 views

Is it possible to create a new T-SQL Operator using CLR Code in SQL Server?

I have a very simple CLR Function for doing Regex Matching public static SqlBoolean RegExMatch(SqlString input, SqlString pattern) { if (input.IsNull || pattern.IsNull) return ...
5
votes
6answers
1k views

Can SQL CLR triggers do this? Or is there a better way?

I want to write a service (probably in c#) that monitors a database table. When a record is inserted into the table I want the service to grab the newly inserted data, and perform some complex ...
4
votes
3answers
620 views

Extracting a .NET Assembly from SQL Server 2005

I am trying to help a personal friend (who now also is a client) with a SQL CLR related problem. He has a SQL Server with a database that has 3 .NET assemblies embeded in it. He asked me to help him ...
4
votes
1answer
161 views

I'd like to know, what columns have been REALLY changed

I have an after trigger implemented in SQLCLR assembly. Within it I'd like to know, what columns have been really updated (and their values have been changed). Unfortunately, ...
4
votes
2answers
1k views

SQL Server: How to list all CLR functions/procedures/objects for assembly

Question: In SQL Server 2005, how can I list all SQL CLR-functions/procedures that use assembly xy (e.g. MyFirstUdp) ? For example a function that lists HelloWorld for query parameter MyFirstUdp ...
4
votes
5answers
3k views

How to notify a windows service(c#) of a DB Table Change(sql 2005)?

I have a table with a heavy load(many inserts/updates/deletes) in a SQL2005 database. I'd like to do some post processing for all these changes in as close to real time as possible(asynchronously so ...
4
votes
3answers
4k views

Get the names of attributes from an element in a SQL XML column

For this xml (in a SQL 2005 XML column): <doc> <a>1</a> <b ba="1" bb="2" bc="3" /> <c bd="3"/> <doc> I'd like to be able to retrieve the names of the ...
3
votes
2answers
253 views

DRY CLR table-valued functions

I'm using a CLR table-valued function to SELECT and return the results of a complex database search which uses many variables. The documentation shows that you build such a function in a fashion ...
3
votes
1answer
176 views

SQL CLR Procedure Default Parameter in VS2008 deployment?

I know that I can define default values for CLR procedures when creating the procedure in the database, like this: CREATE PROCEDURE [dbo].[ShredXml] ( @InputXml [xml], ...
3
votes
1answer
328 views

Processing multiple results from CLR stored procedure in T-SQL

I have some complex algorithm written in C# as CLR Stored procedure. Procedure is not deterministic (it depends on current time). The result of procedure are two tables. I didn't found any solution ...
3
votes
2answers
78 views

SQL Assemblies vs Application code for complicated queries on large XML columns

I have a table with a few relational columns and one XML column which sometimes holds a fairly large chunk of data. I also have a simple webservice which uses the database. I need to be able to ...
3
votes
1answer
295 views

Why might one function run in SQL Server CLR cause a crash, while working fine in a standalone app?

These two methods below are similar, except one handles null values and the other does not. To handle null values, it uses SqlString type and checks the "get_IsNull" property. Why might the first ...
3
votes
2answers
430 views

Get the code of a CLR stored procedure

I have an application that retrieves the text of stored procedures using sp_helptext. It works great on all my stored procs except for CLR stored procs. If I try to use sp_helptext on a clr stored ...
3
votes
2answers
2k views

CLR assembly will not load in 64 bit SQL Server 2005

We use an assembly with some user defined functions in our installation of SQL Server 2005 (32 bit). We deploy this to production with a script like this: CREATE ASSEMBLY [Ourfunctions] AUTHORIZATION ...
3
votes
1answer
1k views

how to deploy the CLR functions in SQL server 2008

I created a SQL Server Project in VS2008 called 'RegularExpression'.In that Project i created a 'Regex.cs' class and i wrote one function regarding Regular Expression. Then i Build the solution. Now ...
3
votes
3answers
417 views

Hidden features/Best uses of SQLCLR (MS SQL Server 2005 and 2008)

Continuing on the hidden features theme, I havent found one for SQLCLR (Microsoft 2005 / 2008). For example, undocumented features, tricks to do things which are very useful but not documented enough? ...
3
votes
6answers
1k views

HttpWebRequest runs slowly first time within SQLCLR

When making an HttpWebRequest within a CLR stored procedure (as per the code below), the first invocation after the Sql Server is (re-)started or after a given (but indeterminate) period of time waits ...
3
votes
2answers
162 views

SQLCLR Community Extensions or common library

Having just finished writing a Regex replacement and match function and tvf for SQLCLR for the fifth time, I sat and pondered whether there was a set of common community extensions for SQLCLR for the ...
3
votes
1answer
711 views

Control SQL Server CLR Reserved Memory

I've recently enabled CLR on my 64 bit SQL Server 2005 machine for usage of about 3 procs. When I run the following query to gather some info on memory usage... select single_pages_kb+ ...
2
votes
4answers
83 views

Max sum for the continous N rows

I've the following table (both A and B are integers): Update 1 - Could anyone do me a favour and run the solution on a set of 1M records with B being a random decimal (to avoid overflows) residing in ...
2
votes
1answer
202 views

Sending SMS with GSM Modem from SQL Server 2008 R2

I want to send SMS using GSM modem's AT-Commands from SQL Server 2008, so I wrote a Visual C# SQL CLR Database Project and a stored procedure. But when I execute that stored procedure I received this ...
2
votes
1answer
145 views

How to get detailed error from CLR Stored Procedure called in DTC transaction from SSIS Package

Whenever an exception is thrown in CLR stored procedure called from a SSIS package, within a DTC transaction , the error returned to client (SSIS package) relates to DTC rather than the underlying ...
2
votes
1answer
87 views

What are the pitfalls of using sql_variant?

I've read and heard several times that sql_variant should be avoided. I think I have a great use case for it. I've used varchar(max) in the past to store different types in the same column, but it ...
2
votes
3answers
147 views

Reverse the order of words in TSQL

I would like to know how (if it is possible) to reverse the order of words returned from a TSQL string (varchar). I know about the TSQL REVERSE function but the also reverses the letters in the word ...
2
votes
0answers
34 views

How to deploy CLR Stored Procedure using MsBuild?

How to deploy CLR Stored Procedure using MsBuild? I can do that by right clicking on the project and click deploy. But I would like a command line where I can also specify custom ConnectionString?
2
votes
1answer
106 views

How can I use SQL Server Profiler to view the TSQL ran in a CLR trigger?

How can I user SQL Server Profiler to view the TSQL ran in a CLR trigger? I have a CLR trigger in the a MS SQL Server DB, that checks the Inserts, Updates, Deletes on a table and then conditionally ...
2
votes
1answer
53 views

Disable Type in code running on the SQLCLR

Recently I've managed to get the Razor parser working under .NET 3.5 and hosted by SQL Server 2008. At the moment, it's really just an experiment to see what is feasible. This is working, including ...
2
votes
2answers
191 views

SQL Server Regular Expression Workaround in T-SQL?

I have some SQLCLR code for working with Regular Expresions. But now that it is getting migrated into Azure, which does not allow SQLCLR, that's out. I need to find a way to do regex in pure T-SQL. ...
2
votes
1answer
141 views

SQL Server 2008: Custom Aggregate Function and Indexed Views

I'm having issues creating an index on a view that uses a custom CLR aggregate function. I don't see any way to flag the aggregate function as deterministic or with schemabinding. I'm creating my ...
2
votes
1answer
62 views

Sql Server CLR Functions

While writing a CLR function Sql Server can we use namespaces ? namespace SomeName1.SomeName2 { public static class SomeClass { [SqlFunction] public static SqlString ...
2
votes
2answers
93 views

CLR Stored Procedure and object in memory

I am using SQL Server 2008 and C# for a CLR Stored Procedure. Is there any way to keep in memory a big object and to retrieve this object after a second call of the Stored Procedure? In the second ...
2
votes
2answers
145 views

CLR Assembly C# DBMS

Is it possible to do SQL's CLR assembly in other DBMS? or what would be the CLR analog in DBMS Oracle, MySQL, PostgreSQL...
2
votes
1answer
141 views

Slow SQL Server CLR aggregates

I've always found the lack of a built-in aggregate function that just strings together values using some user defined separator, frustrating. The closest thing I know of is the XML hack: select ...
2
votes
3answers
298 views

SQL 2008 CLR and Bing Maps

I've developed a small C# application that will let me geocode a table of address using Bing's geocode service configured as a serivce reference. I have the assembly loaded but when I attempt to call ...

1 2 3 4 5