SQLCLR (SQL Common Language Runtime) is technology for hosting of the Microsoft .NET common language runtime engine within SQL Server. The SQLCLR allows managed code to be hosted by, and run in, the Microsoft SQL Server environment.
0
votes
0answers
3 views
How do you roll back a CLR deployment on SQL Server 2008 R2 (deploying with Visual Studio 2008)
Each time I deploy my CLR's on SQL Server 2008 R2 I always worry "What if this release has a bug? How am I going to redeploy the previous version of the CLRs?".
At the moment, the only way of doing ...
0
votes
1answer
34 views
Why SQL-CLR code installs correctly only on one database and not on any other of the same SQL Server?
I've published from Visual Studio the same CLR database function to both the Staging and Live db instances, they both live on the same MS SQL Server which is version 11.0.2100.60.
They both install ...
1
vote
1answer
28 views
Get name of “parent” database from assembly
I have a SQL CLR stored procedure written in c# (.NET4). Its purpose is to allow a trigger on a table in a SQL Server 2012 database to call a web service which then processes the data in that table.
...
3
votes
1answer
61 views
Get the SQL statement that invoked the CLR function
Is it possible from with in a CLR function that is being executed by SQL to determine the SQL statement that invoked the CLR function in the first place. If there is no direct way, what about an ...
0
votes
2answers
40 views
CLR User-Defined function security exception
I have created a CLR User-defined function to look up the latitude and longitude information of a location using Google geocode. The function is as follows:
using System;
using System.Net;
using ...
0
votes
0answers
19 views
The server may be running out of resources in aggregate functiond
I try to copy this code and to deploy this function to my server. When I try to create the function I get the message below. It's very strange to me because I don't use any unsafe resource.
I tried ...
0
votes
1answer
16 views
SQL CLR UDF Returning Type Name ()
I am using a Visual Studio 2012 Database project with a CLR UDF (below). For some reason, after deploying it to the database, I call the function and I get the type name returned instead of the ...
1
vote
1answer
24 views
How should a SQL CLR UDT handle invalid input?
When a SQL Server CLR UDT is set to a value, that value (as a string) is internally passed to the Parse() method, which is supposed to return an instance of the UDT set to whatever the passed-in ...
0
votes
1answer
20 views
SQL CLR Aggregate function Error Handling
I have a user defined CLR aggregate function that can potentially throw an error. I would like to know how to handle an error if one occurs in my query.
The function is performing an IRR ...
0
votes
1answer
35 views
Merging a decrypted search of items within a LINQ query
I have the following search query:
IQueryable<File> files = GetFiles(f => f.Clients.Any(fc => fc.Contacts.Any(c => c.Companies.Any(x => x.Name.Contains(searchText)))));
...
0
votes
1answer
75 views
Execute decrypt function on LINQ query
If I have the following query where Companies.Name is encrypted:
Obviously executing the following query is going to be invalid because we're searching against encrypted names.
...
0
votes
0answers
44 views
How can I modify my string comparison algorithm to reduce the 'significance' of digits?
I have a SQL CLR table valued function which accepts two string parameters for the purpose of comparing company names and returning a match score outcome.
This is the c# function that I'm using to ...
0
votes
0answers
37 views
TSQL 'create assembly' not working
I've added a simple reference to my SQL Server 2008 CLR project (hosted in VS2012).
If I compile naively, it throws this:
SQL06503: Assembly 'microsoft.sharepoint, version=14.0.0.0, ...
0
votes
0answers
22 views
SQL CLR Register dll from 1 database to other
I have a clr aggregate function in 1 database and wonder if there is a way to register it on the same server to another database without recompiling the code?
0
votes
0answers
47 views
SSDT emits spurious SQL71502: Function: [dbo].[***] contains an unresolved reference to an object
I have a number of SqlClr aggregate functions that were once in a separate project...but now with SSDT, I can have them all a single db project. Cool. All of them are in the global namespace. They ...
0
votes
1answer
42 views
Using CLR UDT in table gives `unresolved reference to Sql Type` on deploy
I have created a CLR UDT for use with SQL Server 2008, and am now trying to actually use it from a database project.
Both the CLR UDT project and the database project are in the same solution in ...
1
vote
2answers
28 views
SQL Server and CLR, batching SqlFunction
I have a CLR function that returns "n" rows with random data. For example, to prime an empty table with 100 rows of test data I could write
INSERT INTO CustomerInfo(FirstName, LastName, City...)
...
0
votes
0answers
60 views
SQL CLR Exchange Web Services
I have created a SQL CLR Stored Procedure which uses the Exchange Web Services SDK to download calendar data for specific rooms into our own data warehouse so that we can run detailed reports on room ...
6
votes
2answers
210 views
Multithreaded caching in SQL CLR
Are there any multithreaded caching mechanisms that will work in a SQL CLR function without requiring the assembly to be registered as "unsafe"?
As also described in this post, simply using a lock ...
0
votes
0answers
51 views
Open secondary SqlConnection within SqlProcedure using context connection
I'm attempting to write the results from one query back to the database with another query, all within an SQLCLR SqlProcedure.
I am aware of the context connection limitations (Restrictions on ...
1
vote
1answer
66 views
Getting a CLR stored procedure activated by a broker queue to run as the database owner
I'm trying to set up a CLR stored procedure to be run from a service broker queue so that the CLR stored procedure runs as the database owner.
I've tried all sorts of combinations but can't get this ...
0
votes
0answers
32 views
How to add a config file in SQL CLR
My SQL CLR assembly references an external config file , that is stored in the same folder as the dll.
How do I reference that file in my code or during runtime ?
-5
votes
2answers
47 views
Type 'StoredProcedures' already defines a member called 'AddNumber' with the same parameter types
I have created Visual C# SQL CLR Database Project.
I added two Stored Procedures: test1.cs and test2.cs.
I have a function in test1.cs as AddNumber.
In test2.cs i want to have a function with the ...
0
votes
0answers
101 views
I want to write a User-Defined Function for SQL Server with Visual C++
I want to write a SQL Server User-Defined Functions with Visual C++.
before this i wrote a dll and brought to SQL Server as Extended Stored procedure.
but this page said that the way is Deprecated ...
1
vote
1answer
166 views
Return a table variable from CLR stored procedure call
I have an existing CLR that uses XST to shred and validate XML passed in. I want to capture the data points (don't care about the XML itself) into a table that can be directly inserted into a ...
1
vote
1answer
36 views
Error trying to execute sql from inside SQL CLR
I have the following code:
[SqlFunction(DataAccess = DataAccessKind.Read, SystemDataAccess = SystemDataAccessKind.Read)]
public static int GetInt()
{
int retValue = 0;
using ...
0
votes
1answer
34 views
Best method to copy a file to the SQL Server machine
I am looking into copying a file from the client computer to the server computer. One path I've looked into was creating a CLR method which accepts a stream as input. Another suggestion I've had is to ...
0
votes
0answers
76 views
SQL Server 2012 SQLProject won't build when adding Geography query
I have a stored procedure that I am writing as a mock up for linking existing user gps to a road network I have uploade.. I have loaded southern california osm file into SQL Server 2012 ...
1
vote
2answers
229 views
Calling functions from CLR assembly (which has pinvoke method to load unmanaged assembly) in SQL Server 2008
I have a .Net assembly (64 bit environment) which has P/Invoke method to load an unmanaged assembly. I want to consume the method available in the .Net assembly in to the SQL stored procedures. ...
0
votes
0answers
182 views
SQL Server HASHBYTES SHA2_512 and C#
If I run the following in SQL Server:
SELECT HASHBYTES('SHA2_512', 'THE CAT SAT ON THE MAT')
and then run this in C#
string test = WordFunctions.SHA512("THE CAT SAT ON THE MAT");
I get the same ...
1
vote
1answer
170 views
SqlHierarchyID casting from Datarow
I am trying to retrieve a SqlHierarchyID data-type in C#, from a DataRow that has been fetched from a SQL Server database. After the database call, if I write the following:
var id = ...
2
votes
2answers
121 views
Is it better to run 1000-10000 of command in single SQLCLR Context Connection?
I am using the JOB to continuously watch the table data. Inside the JOB i am calling the SQLCLR SP. SQLCLR SP will run. Before the while loop i will open the SQL connection. Inside for loop i will ...
1
vote
2answers
101 views
Is there any risk associated with trustworthy database for CLR (Assembly) implementation?
I need to write a clr sql function to access external file. I have done it by giving 'trustworhty on' to my database. Is there any other way to access external resources without giving 'trustworthy ...
0
votes
0answers
23 views
Problems outputing string in upper case
I'm playing around with SQL CLR C# table valued function and I've got it to output a simple 3 column table however, I can't get it to output the string in UPPER case. Any ideas?
Thanks in advance.
...
1
vote
2answers
97 views
.NET Regex whole string matching
If we take the following patterns: 70000@.* and 970000@.*
the string 970000@ILoveFishSticksAndTarTarSauce.com:5060
is returning a match to 70000@.*
I understand why it matches, but I need to modify ...
0
votes
1answer
120 views
Passing entire rows to SQL CLR function/sproc
I have a process where I need to perform some complex string manipulation on a SQL table containing columns like Forename, Surname, Address1 etc
To perform this data manipulation I have setup various ...
1
vote
0answers
198 views
Register CLR function (WCF based) in SQL Server 2012
I have a CLR based stored procedure which used MsmqIntegrationBinding to post messages to remote MSMQ's. Everything was working fine in SQL Server 2005 but now there is an upgrade from 2005 to 2012 ...
0
votes
1answer
80 views
Find how many words are the same in two strings - SQL CLR UDF C#
I have this function where I would like to compare two strings and then return how many words exist but the following isn't working. I always seem to get 0 for SameWordCount and 1 for ...
0
votes
0answers
24 views
What function signature is necessary to accept a nullable datetime2 value in an SQL CLR function?
The CLR SqlDateTime type maps to the sql 'datetime' type, so it's imprecise and useless.
The CLR DateTime type has the same precision as the sql 'datetime2' type, which is what I want, but unlike ...
0
votes
1answer
162 views
How to extract and port an “SQL Server 2008 database embedded CLR assembly” to a MySQL 5.5 database equivalent?
My Goal:
To extract and port a SQL Server CLR assembly embedded in an SQL Server 2008 database to an equivalent supported by a MySQL 5.5 database.
I have a SQL Server 2008 database which i am trying ...
2
votes
1answer
60 views
How to reference CLR UDTs when creating a table
I have no idea why there is very little documentation on this so I'll ask here.
I have created some user defined data types and would like to use them when creating a table.
However I have no idea ...
1
vote
1answer
66 views
SQL CLR C# UDF - Append country code to postcode
I have the following SQL CLR C# UDF:
This basicallly accepts two parameters, a country name and a postcode then returns the post code prefixed with a country code. Pretty basic stuff however I'm not ...
27
votes
3answers
660 views
SQLCLR database name adds _1 everytime I make a change to the project
This is a new phenomenon I am seeing, my Database name is: MySQLCLR, there is a script that always give this name in it:
:setvar DatabaseName "MySQLCLR"
all of a sudden now, everytime I make any ...
0
votes
1answer
109 views
SQL CLR make sure finally block is executed
I have a SQL server CLR stored proc that is used to retrieve a large set of rows, then do a process and update a count in another table.
Here's the flow:
select -> process -> update count -> mark ...
0
votes
1answer
128 views
SQL CLR execution error
I am using visual studio 2012 and MS SQL Server 2012. I created SQL CLR project and followed the steps according to the following link
...
0
votes
1answer
227 views
Use .NET dll as COM
I have a somewhat convoluted issue where I need to call a WCF web service from a SQL Server 2005 stored procedure.
While researching I discovered that the only version of .NET SQL Server 2005 will ...
2
votes
1answer
296 views
Working with a SqlXml parameter in a SQLCLR method
This is SQL CLR, I'm just trying to create a function that receives XML from SQL and then gets the value for a certain node and returns it:
[SqlFunction]
public static SqlString ...
0
votes
1answer
183 views
Potential performance issues when calling web service from SQL CLR
I have a need to call external web service on certain events in my application. I don't want to modify my application and make any dependencies of that external web service. So, I need to think of a ...
2
votes
0answers
184 views
Create a faster regular expression clr function
I am trying to improve the Clr function in the link http://msdn.microsoft.com/en-us/magazine/cc163473.aspx .
public static partial class UserDefinedFunctions
{
public static readonly ...
0
votes
0answers
109 views
CLR SQL Server under VB.net
I am doing some testing integrating a simple CLR assembly into SQL Server express. I have been following the very simple tutorial at
...
