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

Reading XML file with PHP

May 5, 2022 by Beaulin Twinkle
Reading XML File With PHP

Here I’ve used the SimpleXML XML manipulation function of PHP for reading XML file from PHP code.

Categories PHP Tags PHP 7.x, Visual Studio Code 1 Comment

How to launch a PHP website on macOS?

May 5, 2022May 5, 2022 by Beaulin Twinkle
Start the PHP server on macOS

A simple way to launch a PHP website on macOS using its in-built PHP server. This may not be a solution for someone to develop and debug PHP website.

Categories macOS, PHP Tags macOS Big Sur, PHP 7.x Leave a comment

How to import a JSON file to a variable in Python?

Apr 21, 2022 by Beaulin Twinkle
Import A JSON File To A Variable In Python

There are several packages available for Python to import JSON files. I prefer using the pandas. Here is an example to import a JSON file to a variable.

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

How to import a CSV file to a variable in Python?

Apr 8, 2022 by Beaulin Twinkle
import a csv file to a variable in Python

There are several packages available for Python to import CSV files. I prefer using the pandas. Here is an example to import a csv file to a variable.

Categories Python Tags macOS Big Sur, Python 3.10.x, Python 3.x, Python Tips, Visual Studio Code Leave a comment

VirtualBox error NS_ERROR_FAILURE (0x80004005) on macOS

Aug 6, 2022Mar 24, 2022 by Beaulin Twinkle
VirtualBox Error NS_ERROR_FAILURE (0x80004005) On MacOS

Solution for VirtualBox error NS_ERROR_FAILURE (0x80004005) on macOS which won’t allow to launch the virtual machine after updating macOS.

Categories macOS Tags macOS Big Sur, VirtualBox, VirtualBox 6.1 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

Increasing Disk Space of Windows Guest OS in VirtualBox on Mac

Nov 28, 2021 by Beaulin Twinkle
Checking disk space in VirtualBox VM

Here, I will give you the step by step instructions for increasing the disk space of Windows in VirtualBox on macOS.

Categories macOS, Windows Tags macOS Big Sur, VirtualBox, VirtualBox 6.1, Windows 10 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

LIKE vs CONTAINS in SQL Server

Nov 11, 2021 by Beaulin Twinkle
Like vs Contains Performance

Though LIKE and CONTAINS can be used interchangeably in several use cases, there are several differences between them. Now let us compare LIKE vs CONTAINS.

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

INFORMATION_SCHEMA.TABLES vs SYS.TABLES in SQL Server

Oct 28, 2021 by Beaulin Twinkle
INFORMATION_SCHEMA.TABLES Vs SYS.TABLES

Comparition of INFORMATION_SCHEMA.TABLES Vs SYS.TABLES in SQL Server.

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

Get the list of all tables in a database using TSQL in SQL Server

Oct 13, 2021 by Beaulin Twinkle
List Of All Tables In A Database using SYS.TABLES

Today we will see a simple tip on how to get the list of all tables in a SQL Server database using TSQL metadata catalogs.

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

Getting accurate execution time in SQL Server SSMS

May 29, 2022Oct 8, 2021 by Beaulin Twinkle
Getting Accurate Execution Time using Client Statistics option

Status bar of SSMS won’t show the execution time in milliseconds. To get the accurate execution time in milliseconds, use the different options explained in this article.

Categories SQL Server Tags SQL Server 2019, SQL Tips, Transact-SQL (T-SQL) Leave a comment
Older posts
Newer posts
← Previous Page1 … Page3 Page4 Page5 … 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?
  • How to exit from single-user mode in SQL Server database?
  • RDP Error: The identity of the remote computer cannot be verified
  • 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.