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

My Tec Bits!… Online Tools, Converters & Calculators

Nov 19, 2024May 16, 2012 by My Tec Bits.
My Tec Bits - Tools Section

Try our new online tools section. We have added cryptography tools like hash generators, Encoders & Decoders, Unit Converters, Medical & Health Calculators. Go to Tools Section.

Categories Others

Installing .NET SDK in Linux Mint and debugging C# code using VS Code

Jun 21, 2024 by Beaulin Twinkle
.NET solution in VS Code explorer panel

In this article, we will discuss about installing .NET SDK on Linux Mint workstation and debugging C# code in Visual Studio Code.

Categories .Net, Linux Tags .NET Framework, C# (C Sharp), Linux distribution, Linux Mint, Visual Studio Code Leave a comment

Generating random number in C# 

Jun 6, 2024 by Beaulin Twinkle
Generating random number in C# 

Generating random number in C# is required in several situations. Let’s see how to generate random numbers in C# with example.

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

How to calculate running total in SQL Server?

Apr 27, 2024 by Beaulin Twinkle
Calculate running total using window function

In SQL server, there are several ways available to calculate running total from within a SELECT statement. Let us see few of the common methods to calculate the running total.

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

How to import XML data into SQL Server using SELECT query?

Apr 10, 2024 by Beaulin Twinkle
Import XML data into SQL Server

There are several ways available in SQL Server to import XML data. Here we will see a simple method to import XML data into SQL Server using SELECT query.

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

How to prevent VS Code from replacing an already opened preview tab with a subsequently opened one?

Mar 13, 2024 by Beaulin Twinkle
prevent VS Code from replacing an already opened preview tab with a subsequently opened one

Let us see few simple ways to prevent VS Code from replacing an already opened preview tab with a subsequently opened one.

Categories .Net Tags Visual Studio Code Leave a comment

Separating letters and numbers from strings in SQL Server

Mar 6, 2024 by Beaulin Twinkle
Separating letters and numbers from strings in SQL Server

Here is a simple SQL Server user defined function for separating letters and numbers from a given string.

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

How to call or run another application from python code?

Feb 15, 2024 by Beaulin Twinkle
call or run another application from python code

There are several ways to call or run another application form within python code. In this article let us see few of the commonly used methods.

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

How to store images in SQL Server?

Jan 17, 2024 by Beaulin Twinkle
Storing image in FileTable

We can store images in SQL Server using few different data types and storage methods. Here we will see couple of common methods.

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

Error: A table that has FILESTREAM columns must have a nonnull unique column with the ROWGUIDCOL property.

Jan 8, 2024 by Beaulin Twinkle
Error: A table that has FILESTREAM columns must have a nonnull unique column with the ROWGUIDCOL property.

Solution for the error while creating a table that has FILESTREAM columns. The error was because of missing nonnull unique column with the ROWGUIDCOL property.

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

Fix for Error: “FILESTREAM feature is disabled” while adding FILESTREAM

Jan 4, 2024Jan 4, 2024 by Beaulin Twinkle
Error: FILESTREAM feature is disabled.

Here is the solution for the error “FILESTREAM feature is disabled” while adding FILESTREAM.

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

How to enable FILESTREAM in SQL Server? 

Jan 3, 2024 by Beaulin Twinkle
Enable FILESTREAM in SQL Server

By default the FILESTREAM option is disabled in SQL Server. If you want to use it, then you have to enable it first. Follow these steps to enable FILESTREAM.

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

How to convert month number to month name in SQL Server?

Dec 26, 2023 by Beaulin Twinkle
convert month number to month name in SQL Server

In SQL Server there are several ways to convert an integer month number to a month name. Let’s see a few of the methods with examples.

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 iterate through a dictionary in Python?

Dec 12, 2023 by Beaulin Twinkle
Iterate through a dictionary in Python with for loop and keys

In Python, you can iterate through a dictionary using its keys, values, or key-value pairs. Let us see them in detail.

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

Accessing the index while iterating a sequence with a for loop in Python

Nov 21, 2023 by Beaulin Twinkle
Accessing the index while iterating a sequence with a for loop in Python

There may be situations where you may need to access the index while iterating a sequence with a for loop along with the element of the sequence.

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

How to replace NULL with 0 in SQL Server?

Nov 4, 2023 by Beaulin Twinkle
Replace NULL with 0 in SQL Server using ISNULL

There are few different ways to replace NULL with 0 in SQL Server. Let us go through them with examples in this article.

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

How to get float or decimal result while dividing integers in SQL Server?

Oct 25, 2023 by Beaulin Twinkle
Dividing integers in SQL Server gives integer result.

In SQL Server when you divide and integer with another integer, the result will always be an integer. So, what to do to get float or decimal result while dividing integers in SQL Server?

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

How to format a number with commas in SQL Server?

Oct 18, 2023 by Beaulin Twinkle
Format a number with commas using FORMAT function

There are couple of different ways to format a number with commas in SQL Server. Let see them in detail.

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

How to calculate percentage in an SQL statement?

Oct 15, 2023 by Beaulin Twinkle
Calculate percentage with a SQL statement.

To calculate the percentage in an Sql statement, we can use the basic percentage arithmetic formula along with some basic SQL Server functions

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

How to delete a file or folder in Python?

Sep 21, 2023 by Beaulin Twinkle
Delete a file or folder in Python

There are multiple ways to delete a file or folder in Python programming. You can use the os module or the shuttle module.

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

How to create a directory, and any missing parent directories in Python?

Sep 20, 2023 by Beaulin Twinkle
Create a directory, and any missing parent directories

To create a directory in Python, including any missing parent directories, you can use the os module or the Path class from the pathlib module.

Categories Python Tags Python 2.x, Python 3.10.x, Python 3.4.x, Python 3.x Leave a comment
Older posts
Page1 Page2 … 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
  • How to store images in SQL Server?
  • RDP Error: The identity of the remote computer cannot be verified
  • Clean way to uninstall Docker on macOS
  • Auto Generate INSERT Statements for a Table 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.