Viewing 12 posts - 1 through 12 (of 12 total)
I'm not saying that the whole idea is bad (or wrong). Just the step where SQL Server makes a JSON document on the server side could be easily moved to...
November 13, 2016 at 12:45 pm
SQL Server is expensive (compared to web servers and other software). Standard Edition costs >1K per core and Enterprise is about 6-7K/core. Why would you want to use it to...
November 3, 2016 at 1:03 am
Mixed mode assembly will (most probably) need to be created as UNSAFE (since it's a mix of C# and C++ code).
Also the C++ part of it will have to be...
September 22, 2016 at 3:41 am
You could be right. At some point (after upgrading to SQL 2005) we switched from VBScript + COM to
C# code (for scripting all our objects into search engine).
June 14, 2016 at 1:16 am
There is very little reason to use IronPython when CPython offers so many great (well tested) libraries for everything you could possibly need (and code snippets are available on the...
June 13, 2016 at 1:48 pm
You need to sign assembly with certificate, and then you don't need to make your database trustworthy. Most of the time you will see articles (on internet) that use trustworthy...
June 9, 2016 at 1:34 pm
fregatepllada (6/2/2016)
It's amazing that usage of CLR is no-no in SQL Server , but old-fashion OLE/COM integration is acceptable 😉
... and you can load any COM junk (with memory leaks...
June 2, 2016 at 5:12 am
Hi, the problem is not in the nvarchar type but in the limitation of sp_OAGetProperty in the line:
EXEC @hr = sp_OAGetProperty @Obj, 'ResponseText', @json OUTPUT
June 2, 2016 at 3:10 am
🙂 https://www.hackerrank.com/challenges/array-and-simple-queries ...
I hope you get that job.
April 27, 2016 at 12:01 am
Hi, i think you can speed up your list "slice and dice" if you convert list to (byte) string using struct module and pack/unpack.
from struct import *
def string_query(s, t, i,...
April 26, 2016 at 1:39 pm
I use Python for everything (related to administration) and most of the ETL stuff (using xsd and XML Bulk Load (SQLXML).
December 21, 2014 at 3:48 am
Check out if you have a battery on your raid controller.
November 2, 2012 at 5:45 am
Viewing 12 posts - 1 through 12 (of 12 total)