Learn how to manage cookies and custom headers, avoid TLS fingerprinting, recognize important HTTP headers, and implement exponential-backoff request retrying in #Pythonjacobpadilla.com/articles/ad…
Please don't use Asyncio.sleep(0.1) in #Python to yield control to the event loop. There's a method in the CPython source code specifically for asyncio.sleep(0)
In sys.indexes what does column "is_ignored_in_optimization" used and or set? Seeing this on Azure SQL Database #sqlhelp I was unable to find anything useful during searching.
Can someone please explain how table variable is estimating more than 1 row? There is no OPTION (Recompile), there is no TF 2453. There is a PK Clustered on ID. #sqlhelp
#centralsquare@CambridgePolice bike unit went thru 2 red lights, did not stop for pedestrians in crosswalk. Weaves thru traffic with out signaling ride on sidewalk to meet fellow police in front of city hall. Please have bike unit follow rule/law. #DoBetter#leadbyexample
Does any one have a quick explanation or link for what does "LOB_COMPACTION" does with reorganize? I am thinking it just consolidates data into fewer pages (no compression). How useful is this if you are not updating LOB data? #sqlhelp
I have a query like:
select TOP (1) a, b, c, d from table where a = 1 and b = 0 order by c desc, d desc
I have index as: a, b, c desc, d desc.
I get a seek but my logical reads change from 4 to 800. Why would cause the extra logical reads? Snapshot Isolation is on. #sqlhelp