Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. freewholly

    SQL question

    Why not just add a display_date column to the comic_issues table in the database, reference that in your initial query and forget current_online? And create a unique index on the display_date column so you can't have two comics interfering with each other. SELECT max(issue_id), issue_title...
  2. freewholly

    Allowed Memory Size Exhausted

    I should have mentioned I am using fopen() to open an FTP session and read the file. This is NOT a time issue, as I am resetting the time value each pass. It is strictly a size issue, and because the server allows only about 8Mb of data, I'm getting only 2/3 of the file read and parsed. So, the...
  3. freewholly

    Allowed Memory Size Exhausted

    I have a 12Mb delimited text file I need to read, parse and load into a MySQL database. The server is set to allow 8388608 bytes before it runs out. Any suggestions on how I can bypass the memory size limit? For example, can I grab just half the file at a time, or does PHP have a command to...

Part and Inventory Search

Back
Top