Hi all,
I am defining array of structure like that : STRUCT_NAME array[1024].
I am fetching some records from EMP table and copying into that array one by one using while loop.
But it will work only 1024 records if records will be greater than 1024 then it will not work.
If I increase the size as 1030 then it will work for 1030 records.
But If I increase the size as 1031 or 1100 then it will show “application error”.
Could you please let me know that how can I resolve this prob???
How can I define this array.??
Thnks in advance,
Sharique
I am defining array of structure like that : STRUCT_NAME array[1024].
I am fetching some records from EMP table and copying into that array one by one using while loop.
But it will work only 1024 records if records will be greater than 1024 then it will not work.
If I increase the size as 1030 then it will work for 1030 records.
But If I increase the size as 1031 or 1100 then it will show “application error”.
Could you please let me know that how can I resolve this prob???
How can I define this array.??
Thnks in advance,
Sharique
Comment