Viewing 15 posts - 1,156 through 1,170 (of 8,760 total)
Here is one suggestion, uses a recursive CTE
😎
USE TEEST;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'tempdb..#Employees') IS NOT NULL DROP...
August 12, 2018 at 11:45 pm
We have a procedure in database A which is inserting 10 millions records from...
August 12, 2018 at 11:22 pm
August 12, 2018 at 9:55 am
Jeff Moden - Saturday, August 11, 2018 1:09 PMIt's all in the indexes, like the article says. 😉
You mean "indices"
August 12, 2018 at 9:40 am
UGH! This is what happens when people try to be "smart" about how to...
August 12, 2018 at 8:55 am
August 12, 2018 at 7:49 am
As we do on this site, we don't assume, we state the facts.
So, just to put things into perspective, some solutions are less equal than others, there are cardinality induced...
August 12, 2018 at 7:35 am
Quick question, as there is no duration data type in SQL Server, why not simply record the start and end date times and when needed, simply calculate the...
August 12, 2018 at 12:46 am
EntityFramework(EF) can use DATETIME, done so on many project, may take a "little" convincing of the developers though. EF unfortunately uses DATETIME2(7) by default, which is simply a waste of...
August 12, 2018 at 12:07 am
August 11, 2018 at 11:04 am
TSB was like many others, a disaster waiting to happen. Even when voicing concerns with similar institutes, no one would listen and let alone do anything. This is not about...
August 11, 2018 at 10:28 am
August 11, 2018 at 9:43 am
August 11, 2018 at 9:41 am
Viewing 15 posts - 1,156 through 1,170 (of 8,760 total)