#tsql2sday time
I managed to write a blog post again, for the first time in nearly half a year
https://nocolumnname.blog/2024/02/13/tsql2sday-171-describe-the-most-recent-issue-you-closed/
#tsql2sday time
I managed to write a blog post again, for the first time in nearly half a year
https://nocolumnname.blog/2024/02/13/tsql2sday-171-describe-the-most-recent-issue-you-closed/
A quick little post about using DATEDIFF... #sqlblog
https://debthedba.wordpress.com/2023/08/21/fun-with-datediff-how-long-did-that-process-run-for/
My #tsql2sday post is up just before the deadline:
https://nocolumnname.blog/2023/07/11/t-sql-tuesday-164-code-that-made-you-feel-a-way/
I've been using Azure SQL Database for quite some while and have set up it in many various ways to run Ola's Index Optimize and Statistics Updates on them. All of these have seemed way too complicated probably because I was setting them up once, not again for several more months or a year. Well
#SQLBlog #SQLServer Using the new CETAS functionality (Generally available!) to export data from my Managed Instance to Parquet files in Azure Blob Storage. You can do folder paths, partition on dates, etc. This is freaking fantastic! I wrote python scripts using Apache Arrow to do this, and I already prefer this.
https://thebakingdba.blogspot.com/2023/04/azure-managed-instance-to-parquet-using.html
#tsql2sday 161 Having Fun with SQL
Thanks @2meterdba
https://nocolumnname.blog/2023/04/11/t-sql-tuesday-161-having-fun-with-sql/
#SQLBlog abusing DECLARE @VAR=VARCHAR for fun. https://www.blogger.com/u/1/blog/posts/1434113132981005034 #SQLServer
oooh, Mastodon has a longer limit!
Run this. Do you get what you expected? I certainly didn't.
DECLARE @blah VARCHAR
SET @blah = '123456'
SELECT @blah
DECLARE @date DATETIME=getdate()
SELECT CONVERT(VARCHAR, @date, 112)
SELECT @blah = CONVERT(VARCHAR, @date, 112)
SELECT @blah