Viewing 15 posts - 1 through 15 (of 58 total)
Why not to call stored procedure from Python?
October 28, 2024 at 9:20 am
I have similar experience, ChatGPT generated T-SQL code to calculate local min and max nodes from a function that was defined by set of values in a given table. As...
August 26, 2024 at 1:58 pm
March 27, 2023 at 6:05 am
I am just wondering how I managed to do this in Microsoft Access without offshore team by myself without TDD and just for 6 month 🙂 A a developers we...
November 25, 2020 at 12:40 pm
It's a pity that EF does not support synonyms
June 24, 2016 at 1:37 am
HOW about Common Table Expression expressions? You should be able to use them in View definition 🙂 And I believe that they performed are BETTER than CROSS APPLY
June 9, 2016 at 11:22 pm
How to build a HELL in each SQL Server :angry:
June 2, 2016 at 5:40 am
It's amazing that usage of CLR is no-no in SQL Server , but old-fashion OLE/COM integration is acceptable 😉
June 2, 2016 at 4:48 am
I quite disagree that SQL Server nvarchar data type is limited by 4,000 bytes 😉
nvarchar [ ( n | max ) ]
Variable-length Unicode string data. n defines the string...
June 2, 2016 at 1:27 am
Support with both hands - IMHO ORM breaks encapsulation principle - why on Earth front end should knew about EACH table in database instead of calling DB operations (aka as...
May 18, 2016 at 6:33 am
With all due respect getting output parameter and return value from stored procedure via EF should not be a "black belt" coding endevour 🙁 What really escapes me that EF...
May 17, 2016 at 3:52 am
Entity Framework supports SQL server stored procedures and from June 1 it would also support natively compiled stored procedures for in-memory database.
I wish that Microsift also add support for...
May 16, 2016 at 11:35 pm
Did you consider to create a view with Rand() column?
CREATE VIEW [Common].[vwRandomView]
AS
SELECT RAND() Result
and use CROSS APPLY with this view?
It worked for me 😉
May 8, 2016 at 9:31 pm
SQL Azure Linked Servers - note about security:
In order to successfully create a SQL Azure Linked Server you should perform the following in SQL Azure database:
-- run this...
March 13, 2016 at 11:31 pm
I do not claim that this is a next silver bullet, from my experience I simply found this capability more useful comparing with "classical" approach. When it came to your...
May 26, 2015 at 5:32 pm
Viewing 15 posts - 1 through 15 (of 58 total)