Viewing 15 posts - 1,141 through 1,155 (of 22,184 total)
It sounds like you didn't actually do an upgrade. By default, assuming no instance names, running the install against an existing instance, it will replace it. You should go back...
September 24, 2021 at 12:09 pm
Without execution plans, I'm guessing here.
Changes in statistics caused a change in execution plans. Changes in data caused a change in behavior (as data changes, row counts change, which causes...
September 24, 2021 at 12:07 pm
AH!!!
Sorry. I really did misunderstand.
So, Ken is right. Don't do that. That is two, distinct queries. While yes, there are ways to force them into a single procedure or batch,...
September 23, 2021 at 1:20 pm
It's just a loop that's needed. Try using the SELECT statement above and create a cursor. Then execute an a dynamic statement with the kill and the session_id value.
September 23, 2021 at 1:05 pm
Ah, and another clarification. I was wrong about the numbers being statements. It's count of lines of code that the tool thinks may have problems. That's why one tab has...
September 23, 2021 at 12:37 pm
I did a little more research and testing and I've got it. "M" in this case means that you've got a script that's in source control. You've made changes to...
September 23, 2021 at 12:34 pm
I think I've got it. The M, not sure why M, appeared when I had an uncommitted change in source control. I staged it and then committed it, and the...
September 23, 2021 at 12:19 pm
The number I have. It's the number of statements that have perceived problems.
Those three tabs have exactly that number of SQL statements in each that looked wrong...
September 23, 2021 at 12:13 pm
I'm leaning toward what Scott says. Check the model database.
September 23, 2021 at 12:09 pm
You'll want to reference sys.dm_exec_requests. That's the DMV that shows actively running queries. Combine it with sys.dm_exec_sql_text to search for a string that's currently running something like this:
September 23, 2021 at 12:07 pm
You can't substitute "IS NOT NULL" for a parameter value. Now, if you mean that you want to toss, entirely, IS NOT NULL, then you simply would put:
... OR items.UserNumber_02...
September 23, 2021 at 11:57 am
Well, for a data collection mechanism like this, I might consider skipping relational data entirely. Instead, look at CosmosDB and use MongoDB to do it.
However, if push came to shove...
September 23, 2021 at 11:53 am
I'm looking at what you have shown here, but I don't see any other association between the two data sets except for the first name, SaleAgent in the Revenue data...
September 23, 2021 at 11:50 am
Almost sounds like they may be already attached.
September 22, 2021 at 2:33 pm
100% agreement with Jeffrey on this. I will add though, 2016 to 2019, for most people, most of the time, there's little to no issues on the upgrade. Still, testing...
September 20, 2021 at 6:30 pm
Viewing 15 posts - 1,141 through 1,155 (of 22,184 total)