How to convert to Base64 and backwards via T-SQL
I want to share my way to convert a string to Base64 and back. Let me note that presented method is not the fastest, but it has one important...
2015-09-30
23 reads
I want to share my way to convert a string to Base64 and back. Let me note that presented method is not the fastest, but it has one important...
2015-09-30
23 reads
I want to share my way to convert a string to Base64 and back. Let me note that presented method is not the fastest, but it has one important...
2015-09-30
28 reads
I want to share my way to convert a string to Base64 and back. Let me note that presented method...
2015-09-30
1,939 reads
Niche tool of the day
If you know what a deployment contributor is and have wanted to see what steps were...
2015-09-30
930 reads
Niche tool of the day If you know what a deployment contributor is and have wanted to see what steps...
2015-09-30
207 reads
Niche tool of the day If you know what a deployment contributor is and have wanted to see what steps...
2015-09-30
215 reads
I learned a new trick with SQL Data Generator that I wasn’t aware of previously. I think this is a...
2015-09-30
1,005 reads
I learned a new trick with SQL Data Generator that I wasn’t aware of previously. I think this is a...
2015-10-13 (first published: 2015-09-30)
4,169 reads
Niche tool of the day If you know what a deployment contributor is and have wanted to see what steps were in a plan and have got bored setting...
2015-09-30
11 reads
Knowing how to access the deployed session metadata and the event metadata attached to that session, I will now begin the dive into how to find the same relevant...
2015-09-30
13 reads
A RAG pipeline that answers questions in the demo is not the same thing...
By Steve Jones
“A multitude of bad ideas is necessary for one good idea” – from Excellent...
Yesterday I gave a talk for MSSQLTips called “Building a DBA Agent for Your...
Comments posted to this topic are about the item Adding new column with DEFAULT
I've got a web application for my side business. I've added a SQL Server...
Comments posted to this topic are about the item Looking for New Blood
Which number will the COUNT() return after executing the following statements:
DROP TABLE IF EXISTS #test; CREATE TABLE #test (id INT) INSERT INTO #test (id) SELECT * FROM GENERATE_SERIES(1, 3) AS gs ; ALTER TABLE #test ADD flag BIT CONSTRAINT DF_#test_flag DEFAULT 0; go UPDATE #test SET flag = 0 WHERE id = 1 UPDATE #test SET flag = 1 WHERE id = 2 INSERT INTO #test (id) VALUES (4) SELECT COUNT(*) FROM #test AS t WHERE flag = 0See possible answers