Reading XML file with PHP
Here I’ve used the SimpleXML XML manipulation function of PHP for reading XML file from PHP code.
Here I’ve used the SimpleXML XML manipulation function of PHP for reading XML file from PHP code.
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.
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.
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.
Solution for VirtualBox error NS_ERROR_FAILURE (0x80004005) on macOS which won’t allow to launch the virtual machine after updating macOS.
Here we will see couple of methods to perform an IF…THEN Operation in SQL Server SELECT statement.
Developing an application with database, frequently you will need to provide option to update if a row exists else insert a row.
There is no straight forward way to update identity values. Here is a workaround I have followed to get the work done.
Here is one another simple way to calculate median using the PERCENTILE_CONT function introduced in SQL Server 2012.
In this article, we will see how to import data from JSON file to a table using OPENROWSET and OPENJSON T-SQL relational operators.
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.
Enable XP_CMDSHELL to fix the error “SQL Server blocked access to procedure ‘sys.xp_cmdshell’ of component because this component is turned off”
Here is a simple and quick query to list all the triggers with its associated table and schema names in an SQL Server database.
Here are a few techniques which I have used to troubleshoot IntelliSense In SSMS if it stops working for some reason.
Here, I will give you the step by step instructions for increasing the disk space of Windows in VirtualBox on macOS.
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.
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.
Comparition of INFORMATION_SCHEMA.TABLES Vs SYS.TABLES in SQL Server.
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.
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.