Error writing data to the connection (2.5.1)
--------------------------------------------

                 Key: CORE-3550
                 URL: http://tracker.firebirdsql.org/browse/CORE-3550
             Project: Firebird Core
          Issue Type: Bug
          Components: Engine
    Affects Versions: 2.5.1
         Environment: Windows 32bits superserver
            Reporter: alainsegura


 the connection to the database is lost with error "error writing data to the 
connection" while running this piece of code:


execute block as 
declare variable i integer;
declare variable j integer;

begin
 i=0;
 while (i<500) do begin
  execute statement 'recreate global temporary table test (x varchar(20) not 
null, y varchar(20) not null) on commit preserve rows';
  execute statement 'create unique index xtest on test (x,y)';
  execute statement 'grant all on test to FMUSER';

  j=0;
  while (j<10000) do begin
    in autonomous transaction do execute statement 'insert into test (x,y) 
values ( ' || cast(i as varchar(20)) || ', ' || cast( j as varchar(20)) || ')';
   j=j+1;
  end

  i=i+1;
 end
end

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

------------------------------------------------------------------------------
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security 
threats, fraudulent activity, and more. Splunk takes this data and makes 
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2d-c2
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel

Reply via email to