Viewing 15 posts - 1,636 through 1,650 (of 59,082 total)
Why does creating and inserting data into a table with insert into cause blocking but inserting into an existing table not cause blocking?
Someone like Paul White could answer that...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 2, 2023 at 9:32 pm
The tran log I/O seems really high to me, as does query store. Without having more esoteric knowledge of the system, I'm hesitant to make any judgement on that.
I will...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 2, 2023 at 7:40 pm
I was shocked to learn that this table still exists in SQL Server, and nobody is talking about it ^^. It seems to be around since the 80s as...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 2, 2023 at 6:00 pm
Nothing like shifting gears but, whatever. It's also not always the "better" way. "It Depends".
--Jeff Moden
Change is inevitable... Change for the better is not.
April 2, 2023 at 5:50 pm
Ah... never mind... I found the source.
Consider telling the OP the search you did to find this documentation so that they may help themselves in the future. I believe it's...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 2, 2023 at 1:48 pm
@Sridevi Kakolu...
First, welcome aboard!
Just to ask the question (and no argument from me one way or the other), did you actually construct all of your first reply or did you...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 2, 2023 at 1:26 pm
Welcome aboard, Glenn!
--Jeff Moden
Change is inevitable... Change for the better is not.
April 1, 2023 at 11:23 pm
I've seen issues repeatedly with "SELECT ... INTO <new_table>" causing blocking (on SQL 2016). When we adjust the code to split the table creation and...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 1, 2023 at 10:17 pm
I've seen issues repeatedly with "SELECT ... INTO <new_table>" causing blocking (on SQL 2016). When we adjust the code to split the table creation and the table...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 1, 2023 at 8:48 pm
I've seen issues repeatedly with "SELECT ... INTO <new_table>" causing blocking (on SQL 2016). When we adjust the code to split the table creation and the table load the...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 1, 2023 at 8:32 pm
Just in case anyone else is reading this and doesn't know, Lynn is anything but a "Ring Knocker". He's a regular on these forums, has written some great articles, and...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 1, 2023 at 6:42 pm
I absolutely agree that it may not "be the listener" at fault... especially after seeing so many different "speakers". I definitely believe we're on the same page in that area.
On...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 1, 2023 at 5:52 pm
Jeff Moden perhaps that is the reason why Option A is sometimes faster and why Option B is sometimes faster my knowledge of DBA aspects is not as deep...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 1, 2023 at 5:33 pm
Ok... I just did some extensive testing using Brent's code both as is and with some mods to give the test table a bit more bulk.
Using a MAXDOP of 1,...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 1, 2023 at 4:51 pm
It's been my expectation that SQL Server will run slower because of all the stuff they're doing to figure out if a plan should be reverted and a bunch of...
--Jeff Moden
Change is inevitable... Change for the better is not.
April 1, 2023 at 4:46 am
Viewing 15 posts - 1,636 through 1,650 (of 59,082 total)