You can limit the number of rows that the SQL transformation returns for SELECT queries. Configure the
Max Output Row Count
property to limit number of rows. When a query contains multiple SELECT statements, the SQL transformation limits total rows from all the SELECT statements.
For example, you set
Max Output Row Count
to 100. The query contains two SELECT statements:
SELECT * FROM table1; SELECT * FROM table2;
If the first SELECT statement returns 200 rows, and the second SELECT statement returns 50 rows, the SQL transformation returns 100 rows from the first SELECT statement. The SQL transformation returns no rows from the second statement.