Skip to content

60 Second Dev

60 second software development tutorials and demos, and short blog posts.

  • Blog

60 Second Dev

60 second software development tutorials and demos, and short blog posts.

  • Blog

60 Second Dev

60 second software development tutorials and demos, and short blog posts.

Tag: sql server

2021-06-232022-01-14sql server

SQL Server Flatten and Unflatten

Assuming you have a table type named SingleColumnText which contains (obviously) a […]

2021-06-232022-01-14.net

Read/write large blob to SQL Server from C#

Rather than try to make it happen in one big command, here’s […]

2021-06-062022-01-12sql server

Select large text blocks in SSMS

If you have a large string, possibly with line breaks, it may […]

2021-05-202022-01-10azure

Super cheap Azure SQL Database

If you’re looking for a super simple, super cheap SQL Server database, […]

2021-05-202022-01-10sql server

SQL Server Date/Time Formatting

Here are my favorite date formats in SQL Server. These work with […]

2021-05-132022-01-09sql server

SQL XML Nested Types

declare @people table (id int, name varchar(50));insert @people values (1, ‘John’);insert @people […]

2021-05-132022-01-09.net

SQL Table Valued Parameters in .NET

private static SqlDataRecord CreatePersonRecord(int id, string name) { var metaData = new[] […]

2021-05-132022-01-09sql server

Demonstrating a SQL deadlock with .NET

  var conn1 = new SqlConnection(cs); conn1.Open(); var comm1 = conn1.CreateCommand(); comm1.CommandText […]

2021-05-122022-01-09sql server

SQL Server Identity Info

WITH cte AS ( SELECT s.name + ‘.’ + t.name AS TableName, […]

2021-05-122022-01-09sql server

SQL Server basic maintenance

Refresh Views: create procedure util.RefreshViewsasbegin declare @msg nvarchar(1000); set @msg = ‘————- […]

Posts navigation

Previous 1 2 3 4 … 6 Next
  • RSS Feed
  • GitHub
  • LinkedIn
  • Twitter
  • YouTube

.net asp.net async audio aws azure batch brotli browser c# cloud config cryptography css csv dependency injection email entity framework git guid gzip handlebars html images javascript jquery json jsonp linq linux mercurial mvc nodejs pdf records scss serialization sqlite sql server temporal tables tfs typescript windows wsl xml

If you learned something today

Buy Me a Coffee

© 2022 60 Second Dev. Proudly powered by Sydney