Information link execution may fail with the error message "Incorrect syntax near '<'" if it has more than one '<conditions>' in the modified Information Link SQL.The following is one example where you might need multiple <conditions>. In this example there is a modified SQL of an Information Link with a UNION of multiple SELECT statements, each with a WHERE
<conditions> clause in order to limit both SELECT statement results.
SELECT
e1."id" AS "ID",
FROM
"master"."dbo"."emp" e1
WHERE
<conditions>
UNION
SELECT
e1."id" AS "ID",
FROM
"master"."dbo"."emp1" e1
WHERE
<conditions>
See the sql.log file in <Spotfire Server Installation Directory>/tomcat/logs for the actual run-time query sent to the database.