Hallo, I have the following select query which works fine.. However, when I try to create a view and copy this query I receive the following error;SQL syntax Errors Encountered The following errors were encountered while parsing the contents of the SQL pane:The OVER SQL construct or statement is not supported. Please find the code below- Thank you select prac_no,col_uid,audit_end,[status],stage,audit_start, sys_timefrom(select row_number() over (partition by prac_no order by sys_time desc) as rownum,*from(SELECT TOP (100) PERCENT dbo.QryColProcessing.prac_no, MAX(dbo.QryColProcessing.col_uid) AS col_uid, MAX(dbo.QryColProcessing.audit_end) AS audit_end, gprdsql.TblColProcessing.status, gprdsql.TblColProcessing.stage, MAX(dbo.QryColProcessing.audit_end + 1) AS audit_start, Max (gprdsql.TblColProcessing.system_time)as sys_timeFROM gprdsql.TblColProcessing INNER JOIN dbo.QryColProcessing ON gprdsql.TblColProcessing.col_uid = dbo.QryColProcessing.col_uidGROUP BY dbo.QryColProcessing.prac_no, gprdsql.TblColProcessing.status, gprdsql.TblColProcessing.stageHAVING (gprdsql.TblColProcessing.status = 'completed') AND (gprdsql.TblColProcessing.stage = 'cancelled') OR (gprdsql.TblColProcessing.status = 'completed') AND (gprdsql.TblColProcessing.stage = 'stage 8')) as dt) as dt2where rownum = 1