Viewing 15 posts - 1,276 through 1,290 (of 1,518 total)
Is there a performance benefit to calling the web service within SQL Server, pass it the required parameters retrieved from the database, retrieve the results and update the local data,...
April 2, 2008 at 6:11 pm
Thanks Matt.
Here is another interesting test from http://microsoft.apress.com/asptodayarchive/74019/sql-clr-best-practices:
Comparing Performance
Gert now presented some performance comparisons. He took two custom UDFs, one of which summed over a long series of numbers, while...
April 2, 2008 at 2:29 pm
Here is what I know so far:
Developers want to deploy the CLR sproc to a single UTILITY SQL instance and allow linked server connections to the sproc from other instances....
April 2, 2008 at 1:16 pm
Jeff Moden (4/2/2008)
I'm mostly a data troll, so I don't really know... but my gut tells me that SQL Server probably shouldn't be calling a Web Service......
April 2, 2008 at 8:12 am
The interesting thing I saw was that in .NET - PI() is a constant, whereas PI() in T-SQL is a non-precise function, and POWER() seems to suck as a system...
April 2, 2008 at 7:31 am
So - function against function, sure.
So are you guys conceding that a CLR UDF can be much faster than a T-SQL UDF, when it comes to a complex math...
April 2, 2008 at 7:16 am
Add the sphere calculation as a direct calc, and "go for the million"
Hi Matt,
Can you post the script you ran to get these results?
April 2, 2008 at 7:10 am
I have a database restored from a full backup + txn logs.
Is there a way to find out what was the latest txn log applied (from system views)?
Actually I can...
April 1, 2008 at 5:40 pm
If anything, this discussion has opened my appetite to learn more about this subject. I'm not convined, but, if in the process, I become a condemner of SQL CLR, having...
April 1, 2008 at 12:02 pm
Jeff Moden (4/1/2008)
But, the real key here is that CLR's are not necessary for 99.9% of anything you do in a database. It can all be done in T-SQL...
April 1, 2008 at 11:17 am
Jeff Moden (4/1/2008)
You still haven't answer my other suggestion... instead of the DBA having to learn C# or whatever, what about the developers learning good T-SQL?
Both are necessary.
You mention...
April 1, 2008 at 10:52 am
Matt Miller (4/1/2008)
Which is an interesting thought. The problem is - I'm pretty sure you have to flag that CLR as "unsafe" in order for it to be able...
April 1, 2008 at 10:46 am
Ask how many DBA's allow developers to have write privs to production.
It's not about DBAs allowing devs direct access to production. It has nothing to do with that.
It's about allowing...
April 1, 2008 at 9:52 am
If you set up a proxy that has cmd shell privs and write a proc that does one thing well as all procs should, AND you don't allow developers...
April 1, 2008 at 9:49 am
Jeff Moden (4/1/2008)
April 1, 2008 at 8:14 am
Viewing 15 posts - 1,276 through 1,290 (of 1,518 total)