Viewing 15 posts - 1 through 15 (of 79 total)
Thanks for the reply. No, I don't need DST. Dates in databases are always in CST, so I need to make sure to convert the computer time to CST and...
May 2, 2019 at 8:02 pm
VS 2015. But I tried on VS 2017 and still didn't work.
January 15, 2019 at 10:56 am
N_Muller - Thursday, September 28, 2017 9:19 AM
Final reply,...
September 28, 2017 at 5:44 pm
September 28, 2017 at 9:19 am
GilaMonster - Thursday, September 28, 2017 1:41 AMHave you looked at the execution plan?
That was too obvious and too easy. Of course...
September 28, 2017 at 7:33 am
This is a great article and I have always struggled with temporal data, every time needing a special case. Unfortunately for me, I am not yet using SQL 2016 and...
September 5, 2017 at 7:16 am
I can always change a select-insert into a merge. There's never going to be a "WHEN MATCHED". Must try to see if it solves the problem.
August 17, 2017 at 7:25 pm
Again on data compression - eventually the data will have to be archived in a database on a different server. If both the operational and archived tables are compressed, how...
March 30, 2017 at 12:39 pm
Thanks for the response. Good point about data compression, I didn't think about that. Compression will slow down data inserts, but it will speed up data retrieval as it will reduce...
March 30, 2017 at 12:25 pm
SQL Server, in particular SQL Server 2014, has performance issues with left join, especially when compared to inner joins. I do not know how merge was implemented by Microsoft, but...
February 3, 2017 at 10:23 am
Thanks. I had forgotten about the connection timeout.
January 14, 2017 at 1:20 pm
Jeff Moden (12/6/2016)
I'm thinking that code is going to work pretty well for you. 😀 Thanks for the mention in the comments.
I give credit, where credit is due 🙂
December 7, 2016 at 7:24 am
Jeff Moden (12/6/2016)
Shifting gears back to the problem at hand, will there ever be CSVs with more than 3 elements?
Yes, but the most I've seen in my scenarios is about...
December 7, 2016 at 7:23 am
Jeff Moden (12/6/2016)Can you post a copy of the FN_ListToTable_8K function so that we can try out your code? Thanks.
CREATE FUNCTION [dbo].[FN_ListToTable_8K]
(
@listVARCHAR(8000),
@delimiterCHAR(1)
)
RETURNS TABLE WITH SCHEMABINDING
AS
RETURN
--
-- Thist function has had...
December 6, 2016 at 4:52 pm
N_Muller (11/30/2016)
Alan.B (11/29/2016)
You'll notice three UNION ALL's. The first query...
November 30, 2016 at 2:47 am
Viewing 15 posts - 1 through 15 (of 79 total)