Posts
Showing posts from September, 2021
Digital Marketing
China-based SparkPool and Beepool recently suspended operations to comply with Beijing's new regulatory policy on crypto.
- Get link
- X
- Other Apps
High-interest savings ETFs primarily invest in high-interest deposit accounts with Canadian banks, credit unions or trust companies
- Get link
- X
- Other Apps
The main differences between tracepath and traceroute
- Get link
- X
- Other Apps
Crontab uses OR when both day of month and day of week specified
- Get link
- X
- Other Apps
When a crontab line contains both day of week and day of month cron uses OR for the date to run the command. The POSIX standard dictates at http://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html that: if either the month or day of month is specified as an element or list, and the day of week is also specified as an element or list, then any day matching either the month and day of month, or the day of week, shall be matched
MySQL – Ignore Tables from Backup in MySQLdump
- Get link
- X
- Other Apps
Use –ignore-table option with the mysqldump command to ignore table for backup. Using this option, you need to specify both the database and table names as showing in the below example. mysqldump --login-path=root -T /backup/mysql-files/ goyuninfo --ignore-table=goyuninfo.table_to_ignore1 --ignore-table=goyuninfo.table_to_ignore2 Or using --ignore-table and create an array of tables, with syntaxs like --ignore-table={db_test1.table8,db_test2.table6,db_test3.table5}