If
returns data (1700 records) in 6 seconds (longer than I would like, but another inherited system that is doing way too much). and this code
returns data (15 records) in 45 seconds, is there anything that I can do short of recreating all affected views with schema binding so that I can create indexes on the appropriate columns?
Thanks,
Willie
Code:
SELECT *
FROM view_NEWAEROQCCellInterfacesFASTER
returns data (1700 records) in 6 seconds (longer than I would like, but another inherited system that is doing way too much). and this code
Code:
SELECT *
FROM view_NEWAEROQCCellInterfacesFASTER
Where upper([STOCK_CODE]) = '787 LANTAL MAIN CARPET'
returns data (15 records) in 45 seconds, is there anything that I can do short of recreating all affected views with schema binding so that I can create indexes on the appropriate columns?
Thanks,
Willie