Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

211
Views
¿Cómo persistir el conjunto de resultados en el Procedimiento almacenado de Snowflake escrito en Javascript?

Tengo un procedimiento almacenado que ejecuta un comando sql y luego se ejecuta varias veces para llamarlo varias veces. ¿Hay alguna manera de conservar el conjunto de resultados para no ejecutar la consulta de copo de nieve varias veces?

Corrientemente

 var my_sql_query = ` select * from table`; var results = snowflake.execute({sqlText: my_sql_query}); while (results.next()) { script += results.getColumnValue(1); } ... other script additions ... // Second Run of the same script var results = snowflake.execute({sqlText: my_sql_query}); while (results.next()) { script += results.getColumnValue(1); }

Salida deseada (lo mejor que puedo describir)

 var my_sql_query = ` select * from table`; var results = snowflake.execute({sqlText: my_sql_query}); while (results.next()) { script += results.getColumnValue(1); } // Second read of results while (results.next()) { script += results.getColumnValue(1); }
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!