IP 17 SQL Server Full Publish Performance Fixed in SS 16
Hi All,
Happy to report that the very severe performance issue that caused Tools Full Publish to run for days in SQL Server 2012 R2 have been fixed in SQL Server 2016. On the newer SQL Server version performance is on par with Oracle 12c for the hash joins issued during the full publish process.
Here is an example of the problem SQL that requires a hash join. As you can see now with workspaces Siebel creates inline views (ILVs) instead of just querying against the base tables.
FROM
(SELECT TBL1.* FROM (SELECT * FROM dbo.S_LIST_COLUMN WHERE ((WS_ID = '1-1765-4'))) TBL1 LEFT OUTER JOIN (SELECT * FROM dbo.S_LIST_COLUMN WHERE ((WS_ID = '1-1765-4'))) TBL2