Useful tips for everyday
Where are Docker config files stored? C:\ProgramData\Docker\config The preferred method for configuring the Docker Engine on Windows is using a configuration file. The configuration file…
Why do you need to know about code coverage? What is Code Coverage? code coverage is done by developers to measures the degree to which…
How do you delete multiple entries from a table? To remove one or more rows in a table: First, you specify the table name where…
How do I change database to archive mode? Enabling ARCHIVELOG mode Log in as user oracle and enter the following commands: $ export ORACLE_SID= To…
Is 0000 00 00 a valid date? The reason is, since version 5.7, MySQL enables SQL Strict Mode by default and does not permit ‘0000-00-00’…
How do I run 32-bit ODBC on 64-bit? If you build and then run an application as a 32-bit application on a 64-bit operating system,…
How can I tell how many tables are in a MySQL database? To check the count of tables. mysql> SELECT count(*) AS TOTALNUMBEROFTABLES -> FROM…
What is the synonym of transaction? synonyms for transaction affair. business. deal. enterprise. negotiation. purchase. sale. selling. What is the antonym for transactional? There are…
How do I stop database shrink? Open a query window, find the session id that the shrink is running from and KILL it. Shrinking causes…
How to split column value into two columns? I do not know how to split column value into two columns based on their value and…