Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 541175
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T10:19:00+00:00 2026-05-13T10:19:00+00:00

I want to insert about 50,000 mysql query for ‘insert’ in mysql db, for

  • 0

I want to insert about 50,000 mysql query for ‘insert’ in mysql db,
for this i have 2 options,

1- Directly import the (.sql) file:
Following error is occur
” You probably tried to upload too large file. Please refer to documentation for ways to workaround this limit. “

2- Use php code to insert these queries in form of different chunks from the (.sql) file.
here is my code:

<?php

// Configure DB
include "config.php";

// Get file data
$file = file('country.txt'); 

// Set pointers & position variables
$position = 0;
$eof = 0; 

while ($eof < sizeof($file))
{
    for ($i = $position; $i < ($position + 2); $i++)
    {
        if ($i < sizeof($file))
        {
            $flag = mysql_query($file[$i]);

            if (isset($flag))
            {
                echo "Insert Successfully<br />";
                $position++;
            }

            else
            {
                echo mysql_error() . "<br>\n";
            }
        }

        else
        {
            echo "<br />End of File";
            break;
        }
    }

    $eof++;
}

?>

But memory size error is occur however i have extend memory limit from 128M to 256M or even 512M.

Then i think that if i could be able to load a limited rows from (.sql) file like 1000 at a time and execute mysql query then it may be import all records from file to db.
But here i dont have any idea for how to handle file start location to end and how can i update the start and end location, so that it will not fetch the previously fetched rows from .sql file.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T10:19:01+00:00Added an answer on May 13, 2026 at 10:19 am

    Here is the code you need, now prettified! =D

    <?php
    
    include('config.php');
    
    $file = @fopen('country.txt', 'r');
    
    if ($file)
    {
        while (!feof($file))
        {
            $line = trim(fgets($file));
            $flag = mysql_query($line);
    
            if (isset($flag))
            {
                echo 'Insert Successfully<br />';
            }
    
            else
            {
                echo mysql_error() . '<br/>';
            }
    
            flush();
        }
    
        fclose($file);
    }
    
    echo '<br />End of File';
    
    ?>
    

    Basically it’s a less greedy version of your code, instead of opening the whole file in memory it reads and executes small chunks (one liners) of SQL statements.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have lists of about 20,000 items that I want to insert into a
I have roughly 100,000 Objects that I want to insert into the database. I
I have a question about combobox.I use visual c# and I want to insert
For SQL Server 2005, if I want to insert about 20 or 30 rows
I have read about hashtable and open adrdessing. If you want to insert the
I want to insert this XML data into SQL Server 2008 <rewriteMap name=OldStaticUrl> <add
I'm using MySQL. I want to insert 100.000 places who belong to a Nested
I want to insert this margin, but I don't know why... I want it
I want to insert a vector into a set like this: set<vector<prmEdge> > cammini;
I want to insert and delete some chars in the middle of a file.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.