Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Then we can launch Carte or the Data Integration Server to execute a query against that new virtual database table:

Code Block
SELECT     dealsize, sum(sales) as total_sales, count\(*) AS nr
FROM         gst
GROUP BY dealsize
HAVING     count\(*) > 20
ORDER BY sum(sales) DESC

...