My Tec Bits!… Online Tools, Converters & Calculators
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.
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.
In this article, we will discuss about installing .NET SDK on Linux Mint workstation and debugging C# code in Visual Studio Code.
Generating random number in C# is required in several situations. Let’s see how to generate random numbers in C# with example.
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.
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.
Let us see few simple ways to prevent VS Code from replacing an already opened preview tab with a subsequently opened one.
Here is a simple SQL Server user defined function for separating letters and numbers from a given string.
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.
We can store images in SQL Server using few different data types and storage methods. Here we will see couple of common methods.
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.
Here is the solution for the error “FILESTREAM feature is disabled” while adding FILESTREAM.
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.
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.
In Python, you can iterate through a dictionary using its keys, values, or key-value pairs. Let us see them in detail.
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.
There are few different ways to replace NULL with 0 in SQL Server. Let us go through them with examples in this article.
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?
There are couple of different ways to format a number with commas in SQL Server. Let see them in detail.
To calculate the percentage in an Sql statement, we can use the basic percentage arithmetic formula along with some basic SQL Server functions
There are multiple ways to delete a file or folder in Python programming. You can use the os module or the shuttle module.
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.