Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: RE : Re: RE : MSSQL results

From: doug:vos:eds at: 2-Oct-2002 8:40

So what about another approach where you set up two ports: sql-A: {select top 1 * from customers} sql-B: {select count(*) nb from customers} insert dbport-1 sql-A insert dbport-2 sql-B result-rows-A: copy dbport-1 result-rows-B: copy dbport-2 This seems like it would work OK. Not familiar with your situation... What do you lose from this approach? -DV