close Warning: Can't synchronize with repository "(default)" (/var/svn/tolp does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Initial Version and Version 1 of Ticket #961


Ignore:
Timestamp:
Aug 3, 2010, 11:01:55 PM (15 years ago)
Author:
Víctor de Buen Remiro
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #961

    • Property Status changed from new to accepted
  • Ticket #961 – Description

    initial v1  
    1 
    21Estou com o seguinte problema, tento gravar um Set de 700.000 linhas (um exemplo pode ser gerado pelo código abaixo):
    3 
     2{{{
    43Set segmentos = [[ [["co_cliente";"id_cluster";"dt_inicio";"dt_fim"]] ]]<<
    54   For(1, 700000, Set(Real x){
    65     [[IntText(x), IntText(x), IntText(x), IntText(x)]]
    76   })
    8 
     7}}}
    98Se eu tento gravar usando BDTFile, um set com a mesma quantidade de linhas me é retornado, mas nenhum arquivo é gravado.
    109
    1110Se eu tento com o código abaixo, após um tempo o tol cai.
    12 
     11{{{
    1312Text tempFile = "C:/TempFileCluster.txt";
    1413Text WriteFile(tempFile, "co_cliente;id_cluster;dt_inicio;dt_fim"+NL);
     
    1615  AppendFile(tempFile, TxtListItem(line, ";")+NL)
    1716});
    18 
     17}}}