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

Articles related to SQL Server, SQL Queries, Stored procedures, databases, etc..

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 insert multiple records with a single SQL query?

Feb 25, 2023 by Beaulin Twinkle
How to insert multiple records with a single SQL query?

Here is a simple tip to insert multiple records in an SQL Server database table with a single SQL insert query.

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

How to drop all the tables from a database in SQL Server?

Feb 25, 2023 by Beaulin Twinkle
How to drop all the tables from a database in SQL Server?

In rare situations like database level permission issues, you may need to drop all the tables from a SQL Server database and recreate them.

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

How to use CHOOSE in SQL Server

Jan 28, 2023 by Beaulin Twinkle
How to use CHOOSE in SQL Server

CHOOSE is a Transact-SQL function used to return a single value form a list based on the specific index. Let’s see how to use CHOOSE function.

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

How to make SQL script to sleep?

Jan 13, 2023 by Beaulin Twinkle
Make SQL script to sleep

In this article, we will see how to make an SQL Script to sleep for some time with examples.

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

How to prevent connection pool problems between ASP.NET and SQL Server?

Oct 27, 2022 by Beaulin Twinkle
Prevent connection pool problems between ASP.NET and SQL Server

If you are not taking precautions while using connection pooling, you may encounter errors. Here are a few of the common errors and ways to prevent connection pool problems.

Categories .Net, SQL Server Tags ASP.NET, ASP.NET Core, ASP.NET Web Forms Leave a comment

What is SQL, and why is it important to learn it?

Aug 21, 2022Aug 21, 2022 by My Tec Bits.
SQL

What is SQL, and why is SQL important? let’s figure it out. All valuable information is organized and entered into databases managed by database management systems and the SQL language.

Categories Oracle Database, SQL Server Tags ANSI SQL, SQL Leave a comment

How to calculate statistical mode in SQL Server?

Jul 8, 2022 by Beaulin Twinkle
Get old the modes

Let us see with example on how to calculate the mathematical statistical mode in SQL Server.

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

How to calculate mean in SQL Server?

Jul 20, 2022Jun 9, 2022 by Beaulin Twinkle
calculate mean in SQL Server

Here you will see with a simple example on using an existing TSQL function to calculate the mean in SQL Server.

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

How to get execution time in milliseconds in SSMS?

May 28, 2022May 28, 2022 by Beaulin Twinkle
How to get execution time in milliseconds in SQL Server Management Studio?

One another simple method to get the execution time in milliseconds in SQL Server Management Studio (SSMS)

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

How to perform an IF…THEN operation in SQL SELECT statement?

Mar 18, 2022 by Beaulin Twinkle
IF…THEN Operation In SELECT Statement

Here we will see couple of methods to perform an IF…THEN Operation in SQL Server SELECT statement.

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

How to update if row exists else insert in SQL Server

Mar 13, 2022 by Beaulin Twinkle
Update If Row Exists Else Insert In SQL Server

Developing an application with database, frequently you will need to provide option to update if a row exists else insert a row.

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

How to update values in identity column in SQL Server?

Mar 6, 2022 by Beaulin Twinkle
How To Update Values In Identity Column

There is no straight forward way to update identity values. Here is a workaround I have followed to get the work done.

Categories SQL Server Tags 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

How to import data from JSON file to SQL Server DB?

Feb 3, 2022 by Beaulin Twinkle
Import Data From JSON File To SQL Server

In this article, we will see how to import data from JSON file to a table using OPENROWSET and OPENJSON T-SQL relational operators.

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

How to export a table to JSON file in SQL Server?

Jan 12, 2022 by Beaulin Twinkle

To export a table to JSON file, I have used FOR JSON clause to format the retrieved data as JSON and ran the BCP command through XP_CMSSHELL.

Categories SQL Server Tags SQL Server 2019, SQL Sever Management Studio (SSMS), Transact-SQL (T-SQL) 1 Comment

How to enable XP_CMDSHELL in SQL Server?

Jan 7, 2022 by Beaulin Twinkle
Enable XP_CMDSHELL In SQL Server

Enable XP_CMDSHELL to fix the error “SQL Server blocked access to procedure ‘sys.xp_cmdshell’ of component because this component is turned off”

Categories SQL Server Tags Azure Data Studio, SQL Server 2019, SQL Sever Management Studio (SSMS), Transact-SQL (T-SQL) Leave a comment

How to list all the triggers with table name and schema In SQL Server DB?

Dec 23, 2021 by Beaulin Twinkle
List All The Triggers With Table Name And Schema

Here is a simple and quick query to list all the triggers with its associated table and schema names in an SQL Server database.

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

How To Troubleshoot IntelliSense in SSMS

Dec 17, 2021 by Beaulin Twinkle
Troubleshoot IntelliSense - Enable In Settings

Here are a few techniques which I have used to troubleshoot IntelliSense In SSMS if it stops working for some reason.

Categories SQL Server Tags SQL Server 2019, SQL Sever Management Studio (SSMS) Leave a comment

Full-Text Search is not installed, or a full-text component cannot be loaded.

Nov 22, 2021Nov 17, 2021 by Beaulin Twinkle
Full-Text Search Is Not Installed error message

How to fix the error “Full-Text Search Is Not Installed, Or A Full-Text Component Cannot Be Loaded.” when trying to create a full-text index on a column.

Categories SQL Server Tags SQL Server 2019 Leave a comment
Older posts
Page1 Page2 … Page11 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.