Viewing 15 posts - 4,831 through 4,845 (of 59,089 total)
I have found that just putting that together will often lead to a solution or helps identify the actual issue.
Heh... PREACH IT BROTHER! 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
August 17, 2021 at 5:46 pm
Answering Post by Jeff
"Two tables (one of existing data, one for new data) would be great."
Are you absolutely sure that you want to include the invoice date and the...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 17, 2021 at 4:06 pm
DECLARE @FRDate DATE = '20210228';
DECLARE @newFRDate DATE = DATEFROMPARTS(YEAR(@FRDate) - 1, 4, 1);
SELECT @FRDate
,@newFRDate;
+1000
--Jeff Moden
Change is inevitable... Change for the better is not.
August 17, 2021 at 3:49 pm
First of all, the function you wrote is converting the final output to DECIMAL(10,2) because that's exactly what you told it to do in the RETURN clause of the function.
Second,...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 17, 2021 at 3:04 pm
... maybe. Testing is your buddy in these circumstances.
Preach it Brother! One good test result is worth a thousand expert opinions.
--Jeff Moden
Change is inevitable... Change for the better is not.
August 17, 2021 at 12:21 pm
I have a simple proc that I suspect is causing intermittent blocking. It takes a customer ID (int) as a param and returns an output param FeatureFlag (bit) indicating...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 17, 2021 at 12:19 pm
I've attached 3 functions for this that I needed to build for a project at the end of July. They're fully documented and they include test code for your QA/UAT...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 17, 2021 at 4:30 am
I guess I would be interested in knowing HOW the numbers of which versions running SQL Server were determined.
Not enough to actually click on the links in Steve's...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 17, 2021 at 2:26 am
I'm with Frederico on this... I wouldn't try to salvage the old code. The only thing I'd take from the old code is what the overall goals for ALL the...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 17, 2021 at 2:19 am
At least when you're dealing with XML or JSON the average end users is too intimidated by the format(and usually lacks the tools anyways) to directly mess and generate...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 16, 2021 at 5:05 pm
Well ,this is something I wanted to run by you, too.
Steve Jones said that if I am going to submit this and more articles, -- I intend from now...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 16, 2021 at 2:35 pm
If someone writes a blog but doesn't let us comment on it, I will not hold it against him.
Adi
I will and do... especially when they post stuff that's just...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 16, 2021 at 2:28 pm
The code is RBAR and super-logging on steroids. It calls a proc to write to the log at virtually every point and it's also running a string splitter for every...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 16, 2021 at 2:08 pm
Ummm... what's with the name change?
--Jeff Moden
Change is inevitable... Change for the better is not.
August 15, 2021 at 6:19 pm
Not confusing for me. You have existing data and you have new data. He want's a way to compare the data that changed.
I do absolutely agree that he...
--Jeff Moden
Change is inevitable... Change for the better is not.
August 15, 2021 at 6:15 pm
Viewing 15 posts - 4,831 through 4,845 (of 59,089 total)