0
votes
2answers
27 views
DLL needed after assembly creation?
Can I delete the DLL-File C:\PATH\TO\DLL\FILE.DLL after creating an assembly with
CREATE ASSEMBLY MyAssemblyName FROM 'C:\PATH\TO\DLL\FILE.DLL'
?
Everything seems to work fine …
0
votes
2answers
127 views
Cannot call scalar-valued CLR UDF from select … from table statement
I have created a scalar-valued CLR UDF (user defined function). It takes a timezone id and a datetime and returns the datetime converted to that timezone.
I can call it from a sim …
1
vote
2answers
23 views
Sql 2005 CLR Integration - Is Dynamic Assembly Loading supported??
I have a static class which loads a .NET assembly dynamically (using Assembly.LoadFile method)
I get the following error message:
Msg 6522, Level 16, State 2, Line 3
A .NET Framew …
0
votes
0answers
9 views
SqlCLR Error trying to install assembly in SqlServer 2005
I am getting the following error message when I try install my .NET assembly int SqlServer 2005. My .NET assembly references 'ChilkatDotNet2.dll' assembly.
Msg 6544, Level 16, Sta …
-3
votes
1answer
61 views
how to decompile sql server assembly [closed]
go to http://www.sqlsharp.com/download/download.php and download run this scrip SQLsharp_SETUP.sql.by this u get 4 assemblies.i want to decompile this to see the sql server clr pro …
3
votes
2answers
844 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 th …
3
votes
3answers
68 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 no …
0
votes
1answer
32 views
Why won’t SQL Server register my assembly as SAFE?
On SQL Server 2008, I'm attempting to register an assembly that seems to only reference the supported libraries. Here is the T-SQL code that I'm using to register the assembly:
c …
0
votes
1answer
79 views
SQL Server: An error occurred during the generation of the asymmetric key.
create asymmetric key asymmetrickey from executable file = 'c:\windows\microsoft.net\framework\v2.0.50727\system.windows.forms.dll'
Why can't I use the above to generate an asymme …
1
vote
5answers
136 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 …
0
votes
2answers
37 views
Data access patterns in SQLCLR
I'm using SQLCLR in my project and, for the record, I'm very pleased with it. However, I can't find any good sources of information for good data access patterns.
Usually I do com …
0
votes
2answers
47 views
SQL Server Service Broker using DataSet
Hi,
I am converting a console application to run from Service Broker in SQL Server 2005.
The application makes heavy use of DataSet.
Are DataSets supposed to work in SQLCLR? Ho …
0
votes
1answer
106 views
Return a recordset from a SQL CLR Assembly?
Guys lease help me out I think I'm close, but I'm missing something.
Background
I'm rewriting a SQL CLR assembly (stored procedure), my assembly contacts another resource and get …
0
votes
1answer
166 views
Accessing Sql FILESTREAM from within a CLR stored procedure
I'm trying to access a Sql filestream from a CLR stored procedure. I've set up a very simple database with a single table which includes a filestream column. I can successfully rea …
2
votes
6answers
235 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) …
