November 2025 (68)
October 2025 (94)
September 2025 (80)
August 2025 (59)
July 2025 (55)
Database_only.sql | RECENT |
Some database drivers and configurations use similar terminology to restrict access:
In the context of Akeeba Backup , is a specific backup profile option. database_only.sql
: It generates a standalone .sql file containing a dump of the site's database. : These files are generally designed to be
: Provides an option to restrict queries to read-only access (only SQL SELECT statements allowed), which is sometimes categorized under "database only" permissions to prevent structural changes. General SQL Usage
: These files are generally designed to be executed via a command-line interface or a database management tool (e.g., mysql -u user -p database < database_only.sql ). 3. Read-Only Access
: It specifically leaves out application-level code, web assets (HTML/CSS/JS), or server-side configurations.
: It is primarily intended for advanced users who wish to restore a database manually using tools like phpMyAdmin . 2. General SQL Usage