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

Adding Key Value Pair To A Dictionary In Python

Sep 24, 2020 by Beaulin Twinkle
Adding Key Value Pair To A Dictionary In Python

How to add key value pair to a dictionary in Python? You can add key value pairs to an existing dictionary by couple of methods. Let us see them in detail.

Categories Python Tags Python 3.8.x, Python 3.x, Python Tips Leave a comment

List extend() vs append() in Python

Sep 17, 2020Sep 17, 2020 by Beaulin Twinkle
extend() vs append() in Python List

extend() vs append(): Pythons list or array methods extend() and append() appears similar, but they perform different operations on the list. Let’s see the differences between extend() and append() list methods.

Categories Python Tags Python 3.8.x, Python 3.x Leave a comment

Check if the list is empty in python

Sep 10, 2020 by Beaulin Twinkle
check if the list is empty in Python

Here is the simple method to check if the list is empty or not in python programming language.

Categories Python Tags Python 3.8.x, Python 3.x, Python Tips Leave a comment

How to compare contents of two files in Visual Studio Code?

Sep 4, 2020Sep 2, 2020 by Beaulin Twinkle
compare contents of two files in Visual Studio Code

Lately I got questions asking for a quick lightweight tool to compare code files. Even though there are several tools available in the market, I use Visual Studio Code to quickly compare contents of two files.

Categories .Net Tags Visual Studio Code 6 Comments

Killing all the active connections of an SQL Server database

Aug 22, 2020 by Beaulin Twinkle
SQL Error On Restoring Database

Now we will see about the simplest method for killing all the active connections of an SQL Server database.

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

How to get the data and log file sizes for a specific database in SQL Server?

Aug 13, 2020 by Beaulin Twinkle
How to get the data and log file sizes for a specific database in SQL Server?

Here are the queries I’m using to fetch the data and log file sizes separately for a specific database. These T-SQL queries return file sizes, used space and free space using DMVs.

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

T-SQL query to find deadlocks in SQL Server

Aug 9, 2020 by Beaulin Twinkle
T-SQL query to find deadlocks in SQL Server

Here is the quick query to find deadlocks which I have used for long time. This statement is based on the SYS.DM_EXEC_REQUESTS dynamic management view.

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

Getting database backup history in SQL Server

Aug 7, 2020 by Beaulin Twinkle
Getting database backup history in SQL Server

There are several ways to get the database backup history in SQL Server. Here I have listed two of the quickest ways to get the backup history. I use these methods pretty regularly.

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

Finding the active SQL connections in SQL Server

Aug 9, 2020Jul 30, 2020 by Beaulin Twinkle
Find Active SQL Connections using SYS.DM_EXEC_SESSIONS

There are several ways to find the active SQL connections is SQL Server. Let us see few of the simple methods which are using T-SQL queries.

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

Finding the DML Triggers created or modified during a date range in SQL Server

Jul 15, 2020 by Beaulin Twinkle
Finding the DML Triggers created or modified during a date range in SQL Server

About finding the DML Triggers which are modified or created during a given date range using the object catalog view sys.triggers .

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

Restore Database Backup to Docker SQL Server Image on macOS

Jul 11, 2020 by Beaulin Twinkle
Restore Database Backup to Docker SQL Server Image on macOS

In this article we will see how to restore a database backup file to Docker SQL Server Container Image on macOS.

Categories macOS, SQL Server Tags Docker Desktop, macOS Catalina, SQL Server 2019 Leave a comment

Clean way to uninstall Docker on macOS

Jul 6, 2020 by Beaulin Twinkle
Clean way to uninstall Docker on macOS

Just clicking the uninstall button will uninstall the Docker Desktop and some files, but leave traces of supporting files. I have followed these steps to cleanly uninstall Docker on macOS.

Categories macOS Tags Docker Desktop, MacBook Pro, macOS Catalina Leave a comment

Removing SQL Server container from Docker on macOS

Jul 6, 2020Jul 2, 2020 by Beaulin Twinkle
Removing SQL Server container from Docker in macOS

In this article we will see about a simple step for removing the SQL Server container from Docker Desktop on macOS.

Categories macOS, SQL Server Tags Docker Desktop, MacBook Pro, macOS Catalina, SQL Server 2019 Leave a comment

Setting up SQL Server on macOS using Docker

Aug 5, 2020Jun 28, 2020 by Beaulin Twinkle
Setting up SQL Server in macOS using Docker

SQL Server on a Mac system: Here are the steps I have followed for setting up SQL Server on macOS using Docker Desktop community edition.

Categories macOS, SQL Server Tags Azure Data Studio, Docker Desktop, MacBook Pro, macOS Catalina, SQL Server 2019 5 Comments

Finding the stored procedures created or modified in a given date range in SQL Server

Jun 26, 2020 by Beaulin Twinkle
Finding the stored procedures created or modified during a given date range in SQL Server

Here we will see about finding the stored procedures which are modified or created during a given date range.

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

Get the list of all indexes and index columns in a database

Jun 19, 2020 by Beaulin Twinkle
Get the list of all indexes and index columns in a Database

Here I have given you a simple script to get the list of all indexes and index columns in a SQL Server database.

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

Getting the list of all stored procedures in SQL Server DB

Jun 13, 2020 by Beaulin Twinkle
List of all stored procedures using ROUTINES

Here are couple of simple methods to get the list of all stored procedures created by the developers from a specific database in SQL Server.

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

Convert Image to base64 in Visual Studio Code on macOS

Jun 4, 2020 by Beaulin Twinkle
Convert Image to base64 in Visual Studio Code on macOS

Simple tip for converting Image to base64 encoded text in Visual Studio Code editor on macOS.

Categories macOS Tags macOS Catalina, Visual Studio Code Leave a comment

Solution for Msg 8134 Divide by zero error encountered

May 21, 2020 by Beaulin Twinkle
Msg 8134 Divide by zero error encountered

Solution for the error message “Msg 8134, Level 16, State 1, Line 7 Divide by zero error encountered” when performing division operation in SQL Server.

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

Getting MAX of multiple columns in SQL Server

May 20, 2020 by Beaulin Twinkle
Getting MAX of multiple columns in SQL Server

Here is simple method to find the MAX of multiple columns in SQL Server. Getting smallest or highest values from multiple columns.

Categories SQL Server Tags SQL, SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) 1 Comment
Older posts
Newer posts
← Previous Page1 … Page5 Page6 Page7 … Page23 Next →

Article Categories

  • Android (2)
  • Apple (22)
    • macOS (22)
  • Internet & Web Dev. (152)
    • DNN (4)
    • Java Script (10)
    • Jquery (8)
    • PHP (7)
    • Python (83)
    • Twitter Bootstrap (25)
    • Web Security (11)
    • Zurb Foundation (6)
  • Linux (4)
  • Microsoft (318)
    • .Net (69)
    • IIS (10)
    • Internet Explorer (3)
    • Office (2)
    • SQL Server (225)
    • Windows (24)
  • Networks And Distributed Systems (2)
  • Oracle (7)
    • Java (2)
    • Oracle Database (5)
  • Others (6)
  • Reviews (10)

Recent Articles

  • Installing .NET SDK in Linux Mint and debugging C# code using VS Code Jun 21, 2024
  • Generating random number in C#  Jun 6, 2024
  • How to calculate running total in SQL Server? Apr 27, 2024
  • How to import XML data into SQL Server using SELECT query? Apr 10, 2024
  • How to prevent VS Code from replacing an already opened preview tab with a subsequently opened one? Mar 13, 2024
  • Separating letters and numbers from strings in SQL Server Mar 6, 2024
  • How to call or run another application from python code? Feb 15, 2024
  • How to store images in SQL Server? Jan 17, 2024
  • Error: A table that has FILESTREAM columns must have a nonnull unique column with the ROWGUIDCOL property. Jan 8, 2024
  • Fix for Error: “FILESTREAM feature is disabled” while adding FILESTREAM Jan 4, 2024

Subscribe MyTecBits.com

Online Tools

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

Popular Articles

  • Joining Tables from Databases on Different SQL Servers
  • Where is SQL Server Configuration Manager?
  • Convert UTC DateTime to different time zones in SQL Server
  • RDP Error: The identity of the remote computer cannot be verified
  • Formatting SQL statements in SSMS
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 - 2025 My Tec Bits. All Rights Reserved.