Skip to content
  • Facebook
  • GitHub
  • YouTube
  • Pinterest
My Tec Bits
  • Home
  • Microsoft
    • .Net
      • ASP.NET
      • MVC
      • Visual Studio
    • IIS
    • SQL Server
      • SQL Server 2019
      • SQL Server 2017
      • SQL Server 2016
      • SQL Server 2014
      • SQL Server 2012
      • SQL Server 2008
    • Windows OS
  • Web Development
    • Java Script
    • Jquery
    • Python
    • Bootstrap
    • Zurb Foundation
    • Web Security
  • More
    • macOS
    • Reviews
  • Online Tools
    • Fitness Calculators
    • Encoders & Decoders
    • Cryptography
    • Unit Converters
    • Math. Calculators
    • Date & Time Calculators
    • Finance Calculators

SQL Server 2017

IIF vs CHOOSE in SQL Server

Mar 2, 2023 by Beaulin Twinkle
IIF vs CHOOSE in SQL Server

IIF and CHOOSE are two logical functions in SQL Server used for different purposes. Here we will see the competition of IIF vs CHOOSE.

Categories SQL Server Tags SQL Server 2012, SQL Server 2014, SQL Server 2016, SQL Server 2017, SQL Server 2019, Transact-SQL (T-SQL) Leave a comment

How to calculate median in SQL Server?

Jul 14, 2022Feb 20, 2022 by Beaulin Twinkle
Calculate Median In SQL Server

Here is one another simple way to calculate median using the PERCENTILE_CONT function introduced in SQL Server 2012.

Categories SQL Server Tags SQL Server 2012, SQL Server 2014, SQL Server 2016, SQL Server 2017, SQL Server 2019, Transact-SQL (T-SQL) Leave a comment

Convert UTC DateTime to different time zones in SQL Server

Aug 20, 2021 by Beaulin Twinkle
Using UTC DateTime - DATETIMEOFFSET

Handling UTC DateTime in SQL Server database is very important for multi time zone applications. Here, you will learn about ways for storing the date time in UTC and converting the UTC DateTime to another time zone.

Categories SQL Server Tags SQL, SQL Server 2016, SQL Server 2017, SQL Server 2019, Transact-SQL (T-SQL) Leave a comment

SHA-2 Hashing in SQL Server

Jul 16, 2021 by Beaulin Twinkle
SHA-2 Hashing In SQL Server

Here in this article we will see the various types of SHA-2 hashing has algorithms and the algorithms supported by SQL Server with examples.

Categories SQL Server Tags Security, SQL, SQL Server 2016, SQL Server 2017, SQL Server 2019, Transact-SQL (T-SQL) Leave a comment

Altering existing tables with data to system-versioned temporal table

Apr 2, 2020 by Beaulin Twinkle
Altering existing tables to system-versioned temporal table with data

Here are the simple steps with example for altering existing version tables with data to system-versioned temporal table.

Categories SQL Server Tags SQL, SQL Server 2016, SQL Server 2017, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

Get the list of temporal tables in SQL Server DB

Mar 25, 2020 by Beaulin Twinkle
list of temporal tables in SQL Server DB

Using simple sql technique, here we will see how to get the list of temporal tables in a database.

Categories SQL Server Tags SQL, SQL Server 2016, SQL Server 2017, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

Check and drop system-versioned temporal table if exists

Mar 19, 2020 by Beaulin Twinkle
Check and drop system versioned temporal table if exists

How to check and drop a system-versioned temporal table if it exists in the database as temporal tables are different from regular tables?

Categories SQL Server Tags SQL, SQL Server 2016, SQL Server 2017, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

How to find the history table of a temporal table?

Mar 18, 2020 by Beaulin Twinkle
find the history table of a temporal table

Here a simple trick to find the name of the history table of a system versioned temporal table using SQL select statement.

Categories SQL Server Tags SQL, SQL Server 2016, SQL Server 2017, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

Find if system versioned temporal table exists

Mar 18, 2020Mar 18, 2020 by Beaulin Twinkle
Find if temporal table exists

Let us see how to check if a specific table is system versioned temporal or not using SQL script. SQL tips to check if temporal table exists.

Categories SQL Server Tags SQL, SQL Server 2016, SQL Server 2017, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment

Creating and using temporal table (system-versioned table) in SQL Server.

Mar 18, 2020Mar 13, 2020 by Beaulin Twinkle
How to create temporal table (system-versioned table) in SQL Server?

Temporal table otherwise called as system-versioned table helps you to maintain the version history of the data in the table in a automated way.

Categories SQL Server Tags ANSI SQL, SQL, SQL Server 2016, SQL Server 2017, SQL Server 2019 Leave a comment

How To Drop Temporary Table If Exists In SQL Server?

Jun 28, 2019 by Beaulin Twinkle
Drop Temporary Table Only If Exists

Here is a simple tip on how to drop a temporary or temp table if it exists using the DIY in 2016 or higher versions of SQL Server.

Categories SQL Server Tags SQL Server 2008, SQL Server 2012, SQL Server 2014, SQL Server 2016, SQL Server 2017, SQL Tips, Transact-SQL (T-SQL) Leave a comment

How To Reset Identity Seed In SQL Server?

Jun 28, 2019 by Beaulin Twinkle
Reset Identity Seed In SQL Server

Here is a simple tip to reset identity seed of an auto incremented identity column after deleting records from the table in SQL Server.

Categories SQL Server Tags SQL Server 2017, SQL Tips, Transact-SQL (T-SQL) Leave a comment

Convert DateTime To YYYY-MM-DD Format In SQL Server

Dec 20, 2019Jun 27, 2019 by Beaulin Twinkle
Convert DateTime To YYYY-MM-DD Format

Here is a simple tip to convert the datetime value to a specific formatted date like YYYY-MM-DD in SQL Server 2012 and higher.

Categories SQL Server Tags SQL Server 2012, SQL Server 2017, SQL Tips, Transact-SQL (T-SQL) 3 Comments

How To Get Only The Date Part Of GetDate() In SQL Server?

Jun 20, 2019 by Beaulin Twinkle
Get Only The Date Part Of GetDate()

Here is the simple technique to get only the date part of GetDate() in SQL Server.

Categories SQL Server Tags SQL Server 2008, SQL Server 2012, SQL Server 2014, SQL Server 2016, SQL Server 2017, SQL Tips, Transact-SQL (T-SQL) Leave a comment

How To Find The First Day Of The Month In SQL Server?

Jun 14, 2019Jun 14, 2019 by Beaulin Twinkle
Find The First Day Of The Month

Here is a simple script to find the first day of the month in SQL Server without using varchar conversion. This method returns the result in datetime format.

Categories SQL Server Tags SQL Server 2012, SQL Server 2014, SQL Server 2016, SQL Server 2017, SQL Tips, Transact-SQL (T-SQL) Leave a comment

How To Get The Week Number Of Month In SQL Server?

Jun 14, 2019 by Beaulin Twinkle
Get The Week Number Of Month

Here is a simple SQL Server tip on getting the week number of month using DATEPART, DATEADD and EOMONTH functions.

Categories SQL Server Tags SQL Server 2012, SQL Server 2014, SQL Server 2016, SQL Server 2017, SQL Tips, Transact-SQL (T-SQL) 2 Comments

How To Get The Week Number Of Year In SQL Server?

Jun 13, 2019 by Beaulin Twinkle
Get The Week Number Of Year

Here is the simple tip to get the week number of the year In SQL Server using an in-built function.

Categories SQL Server Tags SQL, SQL Server 2017, SQL Tips, Transact-SQL (T-SQL) 1 Comment

How To Get Name of Month In SQL Server?

Jun 12, 2019 by Beaulin Twinkle
Get the name of month in SQL Server

Quick tip for getting the name of month In SQL Server for a specific date or current date.

Categories SQL Server Tags SQL, SQL Server 2017, SQL Tips Leave a comment

IIF vs CASE in SQL Server

Jun 7, 2019 by Beaulin Twinkle
IIF vs CASE

Let us see the major differences between IIF vs CASE. IIF is a logical function and CASE is a language expression.

Categories SQL Server Tags SQL, SQL Server 2008, SQL Server 2012, SQL Server 2017, Transact-SQL (T-SQL) 2 Comments

Trace Errors And Exceptions Using Profiler

Oct 24, 2018 by Beaulin Twinkle
Trace Errors And Exceptions Using Profiler

How to trace errors and exceptions using profiler in SQL Server? Using SQL Server profiler is the easiest way to capture the errors and exceptions occurring in the SQL Server database.

Categories SQL Server Tags SQL Server 2008, SQL Server 2012, SQL Server 2014, SQL Server 2016, SQL Server 2017, SQL Server Profiler, SQL Tips Leave a comment
Older posts
Page1 Page2 Page3 Next →

Article Categories

  • Android (2)
  • Apple (21)
    • macOS (21)
  • Internet & Web Dev. (144)
    • DNN (4)
    • Java Script (10)
    • Jquery (8)
    • PHP (7)
    • Python (75)
    • Twitter Bootstrap (25)
    • Web Security (11)
    • Zurb Foundation (6)
  • Linux (2)
  • Microsoft (296)
    • .Net (64)
    • IIS (10)
    • Internet Explorer (3)
    • Office (2)
    • SQL Server (209)
    • Windows (23)
  • Networks And Distributed Systems (2)
  • Oracle (7)
    • Java (2)
    • Oracle Database (5)
  • Others (5)
  • Reviews (10)

Recent Articles

  • How to find the index of an item in a list in Python? Mar 19, 2023
  • How to check if the given string is a number in python? Mar 10, 2023
  • IIF vs CHOOSE in SQL Server Mar 2, 2023
  • How to insert multiple records with a single SQL query? Feb 25, 2023
  • How to drop all the tables from a database in SQL Server? Feb 25, 2023
  • How to reset user settings in Visual Studio Code? Feb 8, 2023
  • How to launch Visual Studio Code from macOS terminal? Feb 3, 2023
  • How to use CHOOSE in SQL Server Jan 28, 2023
  • How to make SQL script to sleep? Jan 13, 2023
  • How to make a PHP script to sleep? Dec 30, 2022

Subscribe MyTecBits.com

Online Tools

  • Fitness Calculators
  • Encoders & Decoders
  • Cryptography
  • Unit Converters
  • Math. Calculators
  • Date & Time Calculators
  • Finance Calculators

Popular Articles

  • SQL Server: Concatenate Multiple Rows Into Single String
  • How to compare contents of two files in Visual Studio Code?
  • How To Get Day Of Week In SQL Server?
  • Getting The List Of Column Names Of A Table In SQL Server
  • SQL Server: Search and Find Table by Name
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use. Learn more...
  • Home
  • About Us
  • Contact Us
  • Site Map
  • Terms Of Use
  • Privacy Policy
© 2012 - 2023 My Tec Bits. All Rights Reserved.