Viewing 15 posts - 151 through 165 (of 59,063 total)
The error message is...
Msg 8114, Level 16, State 5, Line 12
Error converting data type varchar to numeric.
... and I'm surprised that this doesn't fail in Sybase but I don't...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 17, 2025 at 12:22 am
One of the first things you should do is to download Brent Ozar's first responder kit and run it.
Here's where you can get the kit...
https://www.brentozar.com/first-aid/
Here's where you can learn to...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 16, 2025 at 6:12 am
Heh... it's funny how timely this article is, Grant.
One of the companies that I do a little work for has customers that must be responsible for the following meme...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 16, 2025 at 2:20 am
I'm a retired IT guy in his 80s fighting boredom by trying to learn new things. SQL is the newest topic.
Am I in the right place or do you...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 12, 2025 at 11:54 pm
How to rewrite a query in MS SQL:
WHERE a.ROWID IN (SELECT rid
FROM ( SELECT ROWID rid,
row_number() OVER (PARTITION BY c.id ORDER BY c.id) rn
FROM details c
WHERE a.id = c.id
AND...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 12, 2025 at 11:42 pm
The "JOIN" in the second query is in the WHERE clause as...
and (DFR.transaction_header_guid = ICT.transaction_header_guid)
It's also referred to as an "old style" or "Non-SANSI" "Equi-Join"
--Jeff Moden
Change is inevitable... Change for the better is not.
February 9, 2025 at 10:01 pm
Jeff Moden called it a Consensus Engine, which I thought was a brilliant description.
It's pretty much at peak hype in the hype cycle. It is genuinely useful, just not...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 9, 2025 at 5:09 am
For Perplexity.ai, it came so VERY close and, yet, it still failed. It did write corrected to go after this bit of narrative, though.
It's important to note that the...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 9, 2025 at 4:51 am
Regarding "unreliable narration", that just makes LLMs more human.
+1000! I've said that it has the "being human" part pretty much down pat. I very confidently provides the wrong answer...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 9, 2025 at 4:37 am
Yes... that can be done and the methods have been available for quite a while. The problem is that it's arduous for the server to record information every time a...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 8, 2025 at 11:42 pm
Hi Johan,
This issue has been resolved by enabling TraceFlag 3057 on secondary logshipping server and reconfiguring the logshipping for each databases, now I can see all databases are in...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 5, 2025 at 5:19 am
Good article. Thanks for taking the time to write it.
I wonder when people will really reconsider what they've done. I was both shocked and tickled when I saw the articles...
--Jeff Moden
Change is inevitable... Change for the better is not.
February 1, 2025 at 2:07 am
the best, and probably correct, way is to use your visual studio (or vs code) solution (you do have one don't you!!!) and its schema compare.
while there are 2...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 30, 2025 at 11:57 pm
This does not show database sizes but rather individual database file sizes. To do what I think you want it to do - show total space used per database, change...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 30, 2025 at 11:54 pm
You will need to do the rename the column inside of every coded object, as well. The textual content is located in sys.sql_modules by object ID. Obviously, you're going to...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 30, 2025 at 10:00 pm
Viewing 15 posts - 151 through 165 (of 59,063 total)