Viewing 15 posts - 1 through 15 (of 43 total)
To be honest, I'm not really sure if there is a performance difference. The query method tends to be simpler and easier to read for many folks, but I think...
March 25, 2021 at 1:41 am
Thanks for the question, Steve!
The next question would be, what is the best way to write this for readability? Should we be using "NOT" or flip the operator to use...
November 2, 2020 at 2:46 pm
https://www.tutorialgateway.org/python-count-list-items/
suggests:
list_name.count(list_item)
This method is slightly different. It is intended to count occurrences of an item within a list. For example, if I needed to count how many times the element...
October 28, 2020 at 3:03 pm
Just a heads up, it looks like one of the answer options didn't populate in the textbox correctly.
Here's the exception for the question option, if it's not too late:
This will...
October 7, 2020 at 12:09 am
Thanks for the added documentation on this!
It's important to note, this behavior is similar with normal variables as well.
DECLARE @Amount int = 0;
BEGIN TRANSACTION;
SET @Amount...
September 21, 2020 at 6:54 pm
Thanks for the feedback!
I think this is a bad solution, because you re-set the whole entry for key 1 again. Why not use the following?
people[1]['last_name'] = 'Dactill'
I agree, it...
September 16, 2020 at 1:34 pm
I probably let this annoy me much more than I should.
Outlook Message Backgrounds. I consistently receive emails from a select few people that have applied default backgrounds which make it...
June 26, 2020 at 4:28 pm
It's possible to use the PARSENAME function to split these values to octets. If you're only trying to identify these values with three octets, you could possibly use something...
May 19, 2020 at 8:58 pm
Please take a look at the following article: Parse and Transform JSON Data with OPENJSON (SQL Server)
If you're attempting this in SSMS, please try the following.
DECLARE...
May 7, 2020 at 3:40 pm
Hi there. Interesting question. Here are some notes:
Latin1_General_100_CI_AS_CS
collation. Those last...April 23, 2020 at 12:34 pm
You could use the undocumented sp_MSforeachdb procedure to iterate over each database. There are some potential bugs and quirks with this, so I would encourage you to read into it...
April 11, 2020 at 5:07 pm
I've never much enjoyed building out these complex expressions in SSIS.
What have you tried so far? I imagine if you replace the "th ", "nd " or "st "...
April 10, 2020 at 3:24 pm
You're welcome.
This was posted in the SQL Server 2014 forum. Extended Events were introduced in SQL Server 2008, but is more difficult to setup as there isn't a GUI in...
April 10, 2020 at 2:50 pm
So you're iterating over each database to identify the procedures in each database to compare to your findings in sys.dm_exec_procedure_stats? I think setting this up as a job to persist...
April 10, 2020 at 12:30 am
I'm glad I could help! I've been down that road before myself.
You're welcome!
April 9, 2020 at 9:44 pm
Viewing 15 posts - 1 through 15 (of 43 total)