Viewing 15 posts - 5,026 through 5,040 (of 59,072 total)
Do you have an actual example of a 30 million row transaction where every row was actually required or you had to fail all 30 million rows? ...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 29, 2021 at 4:53 pm
When I see that list, I'm not at all scared. I've seen many descriptions, not just in tech, but in medicine, legal, hospitality, etc. where a job ad is...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 28, 2021 at 5:33 pm
Presumably you are defining the PRIMARY KEYs as such, rather than using UNIQUE constraints? PRIMARY KEYs 'default' to being clustered. Broadly speaking clustering improves performance. These days, for permanent...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 28, 2021 at 3:43 pm
Ok... I'm pretty sure that I was correct so here it is again.
You can't actually define a "field" as being unique. Instead, an unique index must be created. That can...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 28, 2021 at 3:12 pm
Post withdrawn... gotta check on something...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 28, 2021 at 3:03 pm
Thank you all!
One more question though not fully related to this topic, for UNIQUE fields, is there a difference to define UNIQUE at column definition and/or while defining index?...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 28, 2021 at 3:02 pm
That might also be the reason why they've done the RBAR thing in the trigger. They don't want to have everything during and Insert or Update...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 28, 2021 at 2:53 pm
I guess I don't understand two things...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 28, 2021 at 2:26 pm
I want to design a database for an OLTP app where it mainly involves customer and transaction. I know we have up to 1024 columns in a table, but...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 28, 2021 at 12:39 pm
I guess I don't understand two things...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 28, 2021 at 12:29 pm
None of that actually has anything to do with the OP's table except that you've done the same unnecessary expansion of a column like you claim he did with the...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 25, 2021 at 8:12 pm
Some good but with little to no experience??? Dude, suck them up and train them before someone corrupts them. 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
June 25, 2021 at 7:53 pm
Totally Awesome!!!!
Many Thanks!!!!
Ok... so let's see your final output as an attached file, please.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 25, 2021 at 4:38 pm
Brent Ozar wrote an article about how they can force you query to go single threaded even if you're query is absolutely perfect in every other way and even when...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 25, 2021 at 3:57 am
(inmate_nbr CHAR(18) NOT NULL PRIMARY KEY, -- required, not optional.
Man... talk about a worse practice ever. If you're going to do something this silly, use a GUID... at least...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 25, 2021 at 2:58 am
Viewing 15 posts - 5,026 through 5,040 (of 59,072 total)