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

Beaulin Twinkle

How to exit from single-user mode in SQL Server database?

Sep 14, 2023 by Beaulin Twinkle
exit from single-user mode

Exiting from single-user mode in SQL Server involves resetting the database to multi-user mode. Here’s how to exit single-user mode.

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

How to group by datetime column without considering time?

Aug 31, 2023 by Beaulin Twinkle
Group by datetime column without considering time

Learn how to group datetime data by date without considering the time component in SQL. Discover practical SQL queries using CAST or CONVERT functions for effective data aggregation.

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

Returning multiple values from a function in Python

Aug 10, 2023 by Beaulin Twinkle
Returning multiple values from a function in Python

Efficiently returning multiple values from a single function in Python using various methods. Learn how to return objects, tuples, lists, and dictionaries, enhancing your code’s readability and organization. Master the art of extracting and utilizing multiple values seamlessly.

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

How to decode ASCII to text in C#?

Aug 3, 2023 by Beaulin Twinkle
Decode ASCII to text in C#

Learn how to decode ASCII to text in C# with an example. Understand the process of converting ASCII-encoded data back into readable text using the Encoding.ASCII.GetString() method.

Categories .Net Tags C# (C Sharp), C# 7.0 (C Sharp) Leave a comment

How to encode a string to ASCII in C#?

Aug 10, 2023Jul 19, 2023 by Beaulin Twinkle
Encode a string to ASCII in C#

In C#, developers have access to a wide range of encoding options, including the popular American Standard Code for Information Interchange (ASCII). In this article, we will see how to encode a string to ASCII in C#.

Categories .Net Tags C# (C Sharp), C# 7.0 (C Sharp) Leave a comment

Advantages and disadvantages of cursors in SQL Server

Jul 15, 2023 by Beaulin Twinkle
Advantages and disadvantages of cursors in SQL Server

While cursors can be useful in certain scenarios, they also come with both advantages and disadvantages. Let’s explore the advantages and disadvantages of cursors.

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

In SQL Server how to backup the database to a SQL script file?

Jul 4, 2023 by Beaulin Twinkle
Backup SQL Server database to a SQL script file

To backup a SQL Server database to a SQL script file, you can use the SQL Server Management Studio (SSMS). Here is the step-by-step instructions.

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

Upgrading all Python packages with pip in single step

Jul 4, 2023 by Beaulin Twinkle
Upgrading all Python packages with pip in single step

Upgrade all Python packages in a single step using pip. Learn how to effortlessly update all installed packages in your Python environment with a simple command.

Categories Python Tags Python 2.x, Python 3.10.x, Python 3.x Leave a comment

How to find the index of an item in a list in Python?

Mar 19, 2023 by Beaulin Twinkle
How to find the index of an item in a list in Python?

In Python programming, there are several ways to find the index of an item in a list. Let us go through some of the commonly used methods.

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

How to check if the given string is a number in python?

Mar 10, 2023 by Beaulin Twinkle
Check If The Given String Is A Number In Python

Python provides many built-in functions that simplify the task of performing various operations. One of these operations is to check if a given string is a number or not.

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

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 reset user settings in Visual Studio Code?

Feb 8, 2023 by Beaulin Twinkle
How to reset user settings in Visual Studio Code?

Follow these simple steps to reset user settings in Visual Studio Code. Reset VS Code user settings in few steps.

Categories Others Tags Visual Studio Code Leave a comment

How to launch Visual Studio Code from macOS terminal?

Feb 8, 2023Feb 3, 2023 by Beaulin Twinkle
Launch Visual Studio Code from macOS terminal

Here, let us see how to run or launch Visual Studio Code from macOS terminal. This will be helpful if you are an avid terminal user.

Categories macOS Tags Visual Studio Code 1 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 make a PHP script to sleep?

Dec 30, 2022 by Beaulin Twinkle
PHP script to sleep in seconds

PHP provides several inbuilt functions to make a PHP script to sleep or pause for some time. Let’s see them with examples.

Categories PHP Tags PHP 7.x Leave a comment

Merging two dictionaries in Python

Dec 29, 2022 by Beaulin Twinkle
Merging two dictionaries in Python

Here you will see three simple and commonly used methods in Python programming on merging two dictionaries.

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

merge two lists using unpacking method in Python

Dec 30, 2022Dec 12, 2022 by Beaulin Twinkle
Merge two lists using unpacking method in Python

In this article, let us see how to merge two lists using the iterable unpacking method and the sum() method.

Categories Python Tags Python 3.10.x, Python 3.x Leave a comment
Older posts
Newer posts
← Previous Page1 Page2 Page3 … Page21 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
  • RDP Error: The identity of the remote computer cannot be verified
  • Where is SQL Server Configuration Manager?
  • Auto Generate INSERT Statements for a Table in SQL Server
  • Convert UTC DateTime to different time zones in SQL Server
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.