Viewing 15 posts - 6,916 through 6,930 (of 59,072 total)
According to this post https://www.sqlservercentral.com/blogs/what-is-%e2%80%93-dml-ddl-dcl-and-tcl-in-tsql
SELECT is classified under DML. However, when I check the SQL online documentation,
https://docs.microsoft.com/en-us/sql/t-sql/statements/statements?view=sql-server-ver15
SELECT is not listed under DML.
--Jeff Moden
Change is inevitable... Change for the better is not.
June 10, 2020 at 4:37 pm
Hi Guys ,
I have a very basic question regarding comparing 2 execution plans .
While comparing the execution plan i usually see Estimated sub tree cost of the left most...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 10, 2020 at 4:29 pm
@arvind.patil 98284,
Why are you asking the same basic question you asked on the other thread of yours? The answer hasn't changed just because you changed the problem from 3000 tables...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 10, 2020 at 2:53 pm
However, the most likely culprit here is not that you defragmented the index. The most likely culprit is that, as part of defragging the index, the statistics were updated.
I...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 10, 2020 at 2:50 pm
Paul, there's really no difference between "just a test server" and a production server. They are both "in the domain" and should be treated equally... especially when it comes to...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 10, 2020 at 2:46 pm
We created a linked server that connects to our ERP server, using sa user & password.
Really REALLY BAD IDEA! That also means that the "sa" user is still enabled...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 10, 2020 at 1:28 pm
Yes on keeping it on a separate assigned drive letter. I find that it's important to keep TempDB associated with a different drive letter than all the rest so that...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 10, 2020 at 12:57 pm
Heh... I wonder if some of the information that the fitness watch is telling you isn't a part of the reason for some of the restless nights 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
June 10, 2020 at 3:04 am
A part of the problem is doing the rounding inside the sum. I recommend that the rounding be done on the sum rather than inside it for both reasons of...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 8, 2020 at 10:05 pm
You've got a wad of things wrong with your code. Can you please tell us what the data types for the "observ_date" and "value" and "@p_site_code' columns are?
--Jeff Moden
Change is inevitable... Change for the better is not.
June 8, 2020 at 9:37 pm
We have something that works great! We don't do continuous deployments to prod! 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
June 8, 2020 at 8:02 pm
Ummm... why does KSA come first in #1 results?
--Jeff Moden
Change is inevitable... Change for the better is not.
June 8, 2020 at 8:00 pm
Just to set expectations, I never backup to the server I'm backing up from. I backup to a NAS. My 1TB database takes about 30 minutes and I'm not splitting...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 8, 2020 at 7:57 pm
If most of your indexes have a "0" (equivalent to a 100 Fill Factor) and you rebuilt or reorganized them and the tables don't have an "ever-increasing" key on all...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 8, 2020 at 5:36 pm
p.s. If you're doing any index maintenance because of logical fragmentation on any index that has a "0" Fill Factor, you're only making fragmentation worse and, in fact, perpetuating it. ...
--Jeff Moden
Change is inevitable... Change for the better is not.
June 8, 2020 at 4:15 pm
Viewing 15 posts - 6,916 through 6,930 (of 59,072 total)