type backup useful

Table Backup In Mysql

mysqlshow tables;

+——————————-+

| Tables_in_test |

+——————————-+

1 row in set (0.00 sec)

mysqlcreate table test (id int, name varchar(50));

Query OK, 0 rows affected (0.01 sec)

mysqlinsert into test values (1, “Amit”), (2, “Bala”), (3, “Chandra”);

Query OK, 3 rows affected (0.01 sec)

mysqlselect * from test;

+——-+———+

| id | name |

+——-+———+

| 1 | Amit |

| 2 | Bala |

| 3 | Chandra |

+——-+———+

3 rows in set (0.00 …

Active Directory System State Backup

Active Directory is a directory service created by Microsoft for Windows domain networks. It is included in the Windows Server operating system. Active Directory stores information about objects on the network and provides a central location for management and administration of those objects.

Active Directory is essential for the proper functioning of a Windows network and must be backed up regularly to ensure its continued availability. The Active Directory System State backup includes the Active Directory database, the SYSVOL folder, …