Search this blog
The Current Book – Do Hard Things
MVP Award
Tags
- administration
- AI
- auditing
- Azure
- backup
- Backup/Recovery
- blogging
- business
- career
- career2
- car update
- Cloud Computing
- conferences
- containers
- continuous delivery
- continuous integration
- coping
- data
- data analysis
- database design
- databases
- Database Weekly
- data privacy
- dbatools
- DevOps
- disaster recovery
- DLM
- encryption
- Friday Poll
- GDPR
- Git
- goals
- hardware
- high availability
- Humor
- life
- Linux
- machine learning
- mcm
- Microsoft
- misc
- monitoring
- networking
- NoSQL
- PASS
- Performance
- powershell
- presentations
- Redgate
- republish
- sabbatical
- security
- software development
- software development
- speaking
- SQL Compare
- SQL in the City
- SQLNewBlogger
- SQL Prompt
- SQL Saturday
- sql server
- SQLServerCentral
- SSMS
- syndicated
- T-SQL
- T-SQL Tuesday
- Tesla
- testing
- travel
- tsqlt
- vacation
- version control
- webinar
- windows
- work
Search this blog
Steve’s Tweets
- Another crowded morning in the office https://t.co/aztmgEdSEs 2 hours ago
- Pre flight https://t.co/RndxQ6u6qE 3 hours ago
- RT @tjaybelt: anyone?? #sqlfamily 3 hours ago
- RT @bweissman: If anybody wants a second pair of eyes for their @PASSDataSummit abstracts - you know where to find me :) 3 hours ago
- @dgmelkin @SQLBek Safe travels 4 hours ago
- @codegumbo Congrats. Hope it goes well and we see you getting back to blogging. Maybe a new job series like @TracyBoggiano wrote 4 hours ago
- @danilo_dominici Mrs way0utwest would like that but when? I am considering finding a time in H2 to come let there somewhere. Maybe FLR 4 hours ago
- How Important is Zero Downtime? voiceofthedba.com/2023/03/24/how… 4 hours ago
- administration
- AI
- auditing
- Azure
- backup
- Backup/Recovery
- blogging
- business
- career
- career2
- car update
- Cloud Computing
- conferences
- containers
- continuous delivery
- continuous integration
- coping
- data
- data analysis
- database design
- databases
- Database Weekly
- data privacy
- dbatools
- DevOps
- disaster recovery
- DLM
- encryption
- Friday Poll
- GDPR
- Git
- goals
- hardware
- high availability
- Humor
- life
- Linux
- machine learning
- mcm
- Microsoft
- misc
- monitoring
- networking
- NoSQL
- PASS
- Performance
- powershell
- presentations
- Redgate
- republish
- sabbatical
- security
- software development
- software development
- speaking
- SQL Compare
- SQL in the City
- SQLNewBlogger
- SQL Prompt
- SQL Saturday
- sql server
- SQLServerCentral
- SSMS
- syndicated
- T-SQL
- T-SQL Tuesday
- Tesla
- testing
- travel
- tsqlt
- vacation
- version control
- webinar
- windows
- work
Older Posts
Meta
Tag Archives: T-SQL
An Update to Skipping the Leading Digit in T-SQL–#SQLNewBlogger
There was an interesting question in a forum, which I wrote about before. How do you skip the leading digit in a numeric value. I had looked at a UNION, but someone had a better suggestion, so I’m adding to … Continue reading
T-SQL Tuesday #155–Using Dynamic SQL for SQLCMD
It’s that time of month, and I’m the host this month. I wrote the invitation last week and now its’ time to answer. I’m actually using an example from the past that I was reminded of. That was the basis … Continue reading
Replacing NULLs in a Left Join–#SQLNewBlogger
I saw someone ask a question on how to replace NULL in a left join and decided to write a post. I realized this is one of those simple things that people new to SQL might not get. Another post … Continue reading
Posted in Blog
Tagged SQLNewBlogger, T-SQL
Comments Off on Replacing NULLs in a Left Join–#SQLNewBlogger
New in SQL Server 2022 – Generate_Series
One of the new language features added in SQL Server 2022 is the GENERATE_SERIES function. This allows you to generate a SELECT * FROM GENERATE_SERIES(start=1, stop=7) This gives me a simple sequence of numbers in a result set, with the … Continue reading
Posted in Blog
Tagged sql server, syndicated, T-SQL
Comments Off on New in SQL Server 2022 – Generate_Series