Database backup with custom code in laravel 5 and get the data upto 10 rows from per table in database

user5633496

IN Php I want to get the 20 record from each table in the database using the php code or mysql store procedure .

Any one help..

Thanks

Alex

I've managed to achieve something.

First of all you have to add the file privilege to the user. So you have to login to mysql as root and run this command:

GRANT FILE ON *.* TO youruser@localhost;

And here's the code that will export each table in a separate file:

$tables = ['specs', 'devices', 'categories'];
foreach($tables as $table)
{
    $file = '/home/chromespecs/public/sql/' . $table . '.sql';
    DB::statement("select * into outfile '$file' FROM $table");
}

I've just tested it and it works.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

laravel 5 and Ajax get data from database:

From Dev

get only selected column from database table laravel 5 eloqouent

From Dev

How to get data transfer from the form into database Laravel 5

From Java

Backup a single table with its data from a database in sql server 2008

From Dev

SQL to find the number of rows per table in a database

From Dev

Retrieve Data from Database Showing Records per User - Laravel

From Dev

get data from my database table

From Dev

laravel error to get data from database

From Dev

how to get data from database in laravel with json?

From Dev

Laravel 5 database query retrieve first table data but not in other table

From Dev

Laravel 5 Routes - Group Domains from Rows in Database

From Dev

Save multiple rows to database from dynamic forms in Laravel 5

From Dev

Use one Laravel migrations table per database

From Dev

How to get the latest backup of a database from a folder?

From Dev

Laravel 4.2 - can't get random rows from database

From Dev

Database Backup failing in Laravel

From Dev

Perl 5 Get input from user and delete from table in database

From Dev

Insert data into Wordpress database table from a custom form

From Dev

Laravel 5 extend auth::user() with information from other database table

From Dev

Save data into database in Laravel 5

From Dev

How to get the last 5-10 message from a database?

From Dev

Ways to backup database data

From Dev

Ways to backup database data

From Dev

laravel 5.3 - multiple rows insert to database table

From Dev

How to get last 5 mins record from SQL database table?

From Dev

How to get last 5 mins record from SQL database table?

From Dev

How to get Date & Time from Database table column in laravel?

From Dev

restore database from backup

From Dev

How to get data from the database and show them in a custom pdf file

Related Related

  1. 1

    laravel 5 and Ajax get data from database:

  2. 2

    get only selected column from database table laravel 5 eloqouent

  3. 3

    How to get data transfer from the form into database Laravel 5

  4. 4

    Backup a single table with its data from a database in sql server 2008

  5. 5

    SQL to find the number of rows per table in a database

  6. 6

    Retrieve Data from Database Showing Records per User - Laravel

  7. 7

    get data from my database table

  8. 8

    laravel error to get data from database

  9. 9

    how to get data from database in laravel with json?

  10. 10

    Laravel 5 database query retrieve first table data but not in other table

  11. 11

    Laravel 5 Routes - Group Domains from Rows in Database

  12. 12

    Save multiple rows to database from dynamic forms in Laravel 5

  13. 13

    Use one Laravel migrations table per database

  14. 14

    How to get the latest backup of a database from a folder?

  15. 15

    Laravel 4.2 - can't get random rows from database

  16. 16

    Database Backup failing in Laravel

  17. 17

    Perl 5 Get input from user and delete from table in database

  18. 18

    Insert data into Wordpress database table from a custom form

  19. 19

    Laravel 5 extend auth::user() with information from other database table

  20. 20

    Save data into database in Laravel 5

  21. 21

    How to get the last 5-10 message from a database?

  22. 22

    Ways to backup database data

  23. 23

    Ways to backup database data

  24. 24

    laravel 5.3 - multiple rows insert to database table

  25. 25

    How to get last 5 mins record from SQL database table?

  26. 26

    How to get last 5 mins record from SQL database table?

  27. 27

    How to get Date & Time from Database table column in laravel?

  28. 28

    restore database from backup

  29. 29

    How to get data from the database and show them in a custom pdf file

HotTag

Archive