Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
307 views

Global exception handler in CLR Stored Procedure

I use C# and Sql Server 2008 and I have some try/catch blocks in my CLR Stored Procedure and these are caught. These are logged in a file and they return a code error and message using SqlPipe. These ...
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 ...
3
votes
1answer
91 views

Calling unmanaged C/C++ DLL functions from SQL Server 2008

I have a vast library of C/C++ functions, which needs to be called from SQL Server 2008. I have written a C# adapter class which loads these functions from Win32 DLL with DllImport and exposes them to ...
3
votes
2answers
183 views

SQL Server - CLR stored proc in scalar function as filter not weighted properly in query optimizer ==> BAD EXECUTION PLAN

I have a query that looks like the following: SELECT someString FROM ( SELECT someString FROM someTable WHERE someField = 1 ) X WHERE dbo.fnMyClrScalarFunction(X.someString) = 0 The ...
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
3answers
523 views

SQL Server CLR stored procedures in data processing tasks - good or evil?

In short - is it a good design solution to implement most of the business logic in CLR stored procedures? I have read much about them recently but I can't figure out when they should be used, what ...
2
votes
1answer
30 views

Calling T-SQL stored procedure from CLR stored procedure

Very brief background: We are making use of CLR stored procedures to apply access control, using Active Directory, on query results to restrict what the end user can see accordingly. In a nutshell, ...
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
74 views

How to INSERT EXEC when the result data from a CLR SP should be truncated?

I'm inserting the result set returned from a CLR stored procedure into a table variable. I get the error: "System.Data.SqlClient.SqlException: String or binary data would be truncated", because some ...
2
votes
2answers
297 views

Is it possible to decompile a SQL Server CLR stored procedure assembly? [closed]

Possible Duplicate: Get the code of a CLR stored procedure We've got a few internal proprietary database CLR stored procs (MSSQL 2005) that were put together by a former employee who ...
2
votes
2answers
424 views

How to create CLR stored procedure with Nvarchar(max) parameter?

Is it possible to create CLR stored procedure in SQL Server CLR project having input parameterof type nvarchar(max)? If you define stored procedure: ...
2
votes
1answer
231 views

Moving C# in Process Functions to SQL Server CLR functions

What are the limitations, unexpected pitfalls and performance traits of moving from in process C# code to SQL CLR Functions? We currently have several data heavy processes that run very fast using ...
2
votes
1answer
160 views

CLR Stored Procedures

In an ASP.NET application, I have a small number of fairly complex, frequently used operations to execute against a database. In these operations, one or more of several tables needs updates or ...
2
votes
1answer
274 views

Error doing an MSBuild on a CLR Storedprocedure project on Build Server

When building a CLR Storedprocedure Project using MSBuild on our build server (Team City) we're getting the following error: error MSB4019: The imported project ...
2
votes
1answer
726 views

Multi-threaded code in CLR Stored Procs?

Are multi-threaded CLR stored procs possible? I have a data-intensive task with lots of potential for parallelization. CLR Stored Procs would be great to remove the overhead of moving the data out ...
1
vote
0answers
33 views

Calling a stored procedure from within a CLR stored procedure with a table valued parameter

The situation: One Clr stored procedure that builds a data table and then it tries to call an SQL Stored procedure with a TVP parameter. The code: public class tvp_test : System.Data.DataTable ...
1
vote
3answers
190 views

Sql Service Broker, CLR Intergration, Triggers back end problem

I'm looking for the most efficient way to build a backend for storing/processing data. Basically, data is sent to a server, parsed then saved to a db. Some processing is then done on it based on other ...
1
vote
1answer
229 views

Is it possible to use Log4Net to write to log file within a CLR Stored Procedure?

Issue: Unable to debug (write) to a Log File using Log4net inside of a CLR Stored Procedure. Possibly a problem with the way I'm building the CLR project? I'm only importing the DLL's into sql ...
1
vote
1answer
173 views

CLR sproc, object-parameter accepting nvarchar(max)

I have a CLR stored procedure that takes a value from an arbitrary column as parameter. To handle all possible columns the parameter if of type object / sql_variant: [SqlFunction] public static ...
1
vote
2answers
297 views

SQL CLR stored procedure for encryption

Background: I have an SSIS package that loads profile data from system A and creates corresponding profiles and membership users in system B. System B uses a custom ASP.NET Membership Provider that ...
1
vote
2answers
288 views

Schema for CLR Stored Procedure During Deployment

I'm interested in configuring Visual Studio (2010) so that when deploying C# CLR Database projects, it puts stuff in schemas other than DBO. I understand I can update the fucntion/procedure/etc... ...
1
vote
2answers
320 views

Why does SQL Server CLR procedure hang in GetResponse() call to web service

Environment: C#, .Net 3.5, Sql Server 2005 I have a method that works in a stand-alone C# console application project. It creates an XMLElement from data in the database and uses a private method to ...
1
vote
2answers
139 views

How to profile CLR stored procedure

guys! I have stored procedure, written on C# using Visual Studio 2010. It is running very slow and I want to profile it to detect slowness source. I have JetBrains dotTrace profiler and built-in ...
1
vote
1answer
325 views

Error deploying CLR udf project in VS - system.core 3.5 not found in SQL catalog

I am building CLR Stored Procedures and UDFs as discussed in this article: http://www.codeproject.com/KB/cs/CLR_Stored_Procedure.aspx When I execute Build > Deploy, I get the following error: ...
1
vote
2answers
2k views

SQL CLR Stored Procedure and Web Service

I am current working on a task in which I am needing to call a method in a web service from a CLR stored procedure. A bit of background: Basically, I have a task that requires ALOT of crunching. If ...
0
votes
1answer
84 views

SolrNet in CLR Stored Procedure

Has anyone ever used Solrnet inside CLR Stored Procedures? I would really appreciate pointers to some good tutorials. One problem I'm facing is that I can't find a way to include the SolrNet library ...
0
votes
1answer
51 views

CLR stored procedure is automatically encrypted

I have created a simple CLR procedure that creates a Folder. The problem is that each time I create the procedure inside SQL Server using the "CREATE PROCEDURE..." statement, the procedure is ...
0
votes
0answers
72 views

.NET Framework execution was aborted. Another query caused the AppDomain db.dbo[runtime].4 to be unloaded

I have a SQL CLR Function (written in c#.net) that I'm trying to debug. I attach visual studio to the sqlserver process and begin stepping through, but it keeps crashing and ending with the following ...
0
votes
1answer
239 views

clr stored procedure with SqlContext.Pipe.Send should return decimal, returns int

I have a clr stored procedure that has to return decimal value. I cannot use output parameters at this moment - i need to reuse the existing library that doesn't process output parameters. My stored ...
0
votes
0answers
66 views

Efficient SQL Geography wilcard name search for 20mill+ records

We have a SQL 2008 database with 20million+ geoWe locations (and growing) , each location includes the standard name/address/Geography/ID/Etc columns. We need a way to efficiently search through the ...
0
votes
1answer
131 views

System.IO.FileNotFoundException when executing CLR Stored Procedure to run a Cognos Report

Good Morning. I am currently experiencing an issue with a CLR Stored procedure calling an assembly created in Visual Basic (VS 2008). At the highest level, the assembly executes a report contained ...
0
votes
1answer
64 views

Parallelize TSQL CLR Procedure

I'm trying to figure out how I can parallelize some procedural code to create records in a table. Here's the situation (sorry I can't provide much in the way of actual code): I have to predict when ...
0
votes
1answer
245 views

Call external process in CLR Stored procedure

I know this is not an easy one, nor that it should be very popular. But does anyone know the best way of calling an external assembly with parameters in a trigger or a Stored procedures ? I have tried ...
0
votes
2answers
194 views

How to execute dynamic .net code in clr stored procedure in SQL Server

Is there a way to change the code of CLR procedure in SQL Server dynamically? Suppose you have an assembly with your business logic deployed in MS SQL Server 2008 R2. This assembly (or assemblies) ...
0
votes
0answers
199 views

Using CLR Stored Procedure to loop through result set to execute other SP using those values

I was looking through this question and I'm just curious what can be the implications or benefits of using CLR stored procedure in such scenario.
0
votes
1answer
120 views

CLR Stored Procedure

I wish to use the Cryptography API in CLR stored procedure. I have created a CLR stored procedure and written a select statement SqlConnection conn = new SqlConnection(); ...
0
votes
0answers
146 views

SQL server wait type - CLR_MONITOR

Looking for a good elaboration of this wait type. http://msdn.microsoft.com/en-us/library/ms179984.aspx implies that this may be a deadlock in the executing CLR code? Or is this wait type ...
0
votes
3answers
287 views

stored procedure in sql clr

How to write a stored procedure using C# in CLR. Currently i am using management studio and i write stored procedures using t-sql in sql server such as create proc sp_item as ....
0
votes
4answers
1k views

How to generate SQL CLR stored procedure installation script w/o Visual Studio

I am working on CLR stored procedure using VS2010. I need to generate standalone deployment script to install this procedure at customer servers. Now I am using Visual Studio which generate such ...
0
votes
1answer
466 views

Call System.Diagnostics.Process.Start from SQL CLR function that contain param with xml

I have a stored procedure in SQL Server 2008 CLR project. This function call a console application with a parameter that contain some xml. [Microsoft.SqlServer.Server.SqlProcedure()] public static ...
0
votes
1answer
248 views

TSQL - Executing CLR Permision

I got a sql procedure from a CLR (.net Assembly) that when executed returns an error Msg 6522, Level 16, State 1, Procedure sp_HelloWorld, Line 0 A .NET Framework error occurred during execution of ...
0
votes
1answer
575 views

ms sql call stored procedure with date time parameter

how do one call a stored procedure that has date input . spName getDate() does not work. the question is about calling within ms sql managment studio.
0
votes
1answer
223 views

How can a stored procedure return ROWCOUNT?

Hi All I have written stored procedure which has 2 Insert queries and 1 Update query inside it. Of all these,either insert queries or update query are executed at a time. Now my problem is to get ...
0
votes
1answer
993 views

Calling a WCF Service from SQL CLR Stored Procedure

I have created a SQL CLR Stored Procedure which will call a WCF Service. I have managed to get all the correct DLL's loaded into SQL Server to get this to work however I now have following error ...
0
votes
1answer
45 views

Best approach to consume, messaging, and save audit data from Application A in Application B real time

My initial approach to this was to use a stored procedure in database of Application A, triggered on an insert to gather additional data and call a web-service, hosted by Application B to do the ...
0
votes
1answer
385 views

Adding the iTextSharp dll for use with CLR Stored Procedures

Has anyone had any luck creating an assembly for iTextSharp for use with CLR Stored procedures? I've been trying all afternoon and have not been able to get any results. SQL management studio is ...
0
votes
2answers
73 views

CLR Sproc Permissions

When I'm trying to execute a clr sproc (Still in C# IDE for this) I have permission errors. The error is " Request for the permission of type 'System.Data.SqlClient.SqlClientPermission,... failed", ...
0
votes
0answers
294 views

SQL Server “version, culture or public key mismatch” during “create assembly” when loading XMLSerializers created with sgen utility

I'm trying to create a CLR function in SQLServer that calls a web service. When I create the first assembly, the AssemblyVersion in AssemblyInfo.cs is 1.0.*. I'll run sgen to create the accompanying ...
0
votes
1answer
306 views

Why does CREATE ASSEMBLY fail with the error 'Unable to resolve token'?

I'm working with some SQL 2005 CLR code written in C#. We have recently altered a few of the functions to allow NULL parameters. We did this by changing parameters from 'double' to 'SqlDecimal' types. ...
0
votes
1answer
45 views

Trace what DB a stored Procedure is located from a script

is there a way to make a query which DB the Stored Procedure is located? I got this bunch of Databases doing a lot of Cross DB query from each other, now I got lost with 1 stored procedure and I just ...

1 2