Click here to Skip to main content
15,884,425 members
Home / Discussions / Database
   

Database

 
QuestionFatal error: Out of memory (allocated 408944640) (tried to allocate 805306376 bytes) Pin
Mahtabpi24-Nov-17 23:11
Mahtabpi24-Nov-17 23:11 
AnswerRe: Fatal error: Out of memory (allocated 408944640) (tried to allocate 805306376 bytes) Pin
Richard MacCutchan25-Nov-17 0:14
mveRichard MacCutchan25-Nov-17 0:14 
GeneralRe: Fatal error: Out of memory (allocated 408944640) (tried to allocate 805306376 bytes) Pin
Mahtabpi27-Nov-17 22:49
Mahtabpi27-Nov-17 22:49 
GeneralRe: Fatal error: Out of memory (allocated 408944640) (tried to allocate 805306376 bytes) Pin
Richard MacCutchan27-Nov-17 23:26
mveRichard MacCutchan27-Nov-17 23:26 
AnswerRe: Fatal error: Out of memory (allocated 408944640) (tried to allocate 805306376 bytes) Pin
jschell27-Nov-17 10:01
jschell27-Nov-17 10:01 
GeneralRe: Fatal error: Out of memory (allocated 408944640) (tried to allocate 805306376 bytes) Pin
Mahtabpi27-Nov-17 22:50
Mahtabpi27-Nov-17 22:50 
GeneralRe: Fatal error: Out of memory (allocated 408944640) (tried to allocate 805306376 bytes) Pin
jschell29-Nov-17 11:44
jschell29-Nov-17 11:44 
AnswerRe: Fatal error: Out of memory (allocated 408944640) (tried to allocate 805306376 bytes) Pin
Jochen Arndt27-Nov-17 23:25
professionalJochen Arndt27-Nov-17 23:25 
As already explained by others the error tells you that you ran out of memory because you have requested to return all data from a huge database.

Your program stops execution when $myArray is full while using already 408 MB of memory. Then the allocation of additional 805 MB failed (the already allocated 408 MB would be freed but that would occur after the content has been copied to the new memory).

You have to limit the number of returned data by using a search term
SQL
SELECT * FROM tablename WHERE <search condition>
or get the data in chuncks (page wise) using the LIMIT clause: PHP Limit Data Selections From MySQL[^].
QuestionI need to install Sql server to write some practice C# applications with small Database Pin
indian14324-Nov-17 6:02
indian14324-Nov-17 6:02 
AnswerRe: I need to install Sql server to write some practice C# applications with small Database Pin
Eddy Vluggen24-Nov-17 6:08
professionalEddy Vluggen24-Nov-17 6:08 
GeneralRe: I need to install Sql server to write some practice C# applications with small Database Pin
PIEBALDconsult24-Nov-17 6:51
mvePIEBALDconsult24-Nov-17 6:51 
AnswerRe: I need to install Sql server to write some practice C# applications with small Database Pin
Victor Nijegorodov24-Nov-17 10:18
Victor Nijegorodov24-Nov-17 10:18 
AnswerRe: I need to install Sql server to write some practice C# applications with small Database Pin
Richard Deeming28-Nov-17 2:42
mveRichard Deeming28-Nov-17 2:42 
QuestionTrggier not working with insert Pin
issam mansour22-Nov-17 22:39
issam mansour22-Nov-17 22:39 
AnswerRe: Trggier not working with insert Pin
Richard Deeming23-Nov-17 1:03
mveRichard Deeming23-Nov-17 1:03 
Questiondatabase log file configuration.. Pin
Member 1353603022-Nov-17 8:31
Member 1353603022-Nov-17 8:31 
AnswerRe: database log file configuration.. Pin
Richard MacCutchan22-Nov-17 21:46
mveRichard MacCutchan22-Nov-17 21:46 
GeneralRe: database log file configuration.. Pin
Member 1353603027-Nov-17 7:12
Member 1353603027-Nov-17 7:12 
AnswerRe: database log file configuration.. Pin
Eddy Vluggen23-Nov-17 1:35
professionalEddy Vluggen23-Nov-17 1:35 
GeneralRe: database log file configuration.. Pin
Member 1353603027-Nov-17 7:11
Member 1353603027-Nov-17 7:11 
GeneralRe: database log file configuration.. Pin
Eddy Vluggen27-Nov-17 7:55
professionalEddy Vluggen27-Nov-17 7:55 
GeneralRe: database log file configuration.. Pin
Member 1353603027-Nov-17 8:12
Member 1353603027-Nov-17 8:12 
GeneralRe: database log file configuration.. Pin
Eddy Vluggen27-Nov-17 9:54
professionalEddy Vluggen27-Nov-17 9:54 
AnswerRe: database log file configuration.. Pin
jschell27-Nov-17 10:10
jschell27-Nov-17 10:10 
QuestionEntity Framework VS Linq To SQL Pin
Kevin Marois15-Nov-17 12:29
professionalKevin Marois15-Nov-17 12:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.