Index Hinting disabling (for Nav 4.0 SP3)
Alcuni build esistenti NAV 4.0 SP3 hanno problemi ad utilizzare gli indici cluster, è necessario disabilitare l'index hinting per risolvere il problema.
use <your NAV database name goes here>
go
CREATE TABLE dbo.[$ndo$dbconfig] (config VARCHAR(512) NOT NULL)
go
GRANT SELECT ON dbo.[$ndo$dbconfig] TO public
go
INSERT INTO dbo.[$ndo$dbconfig] VALUES
('IndexHint=No')
go
Test
use <your NAV database name goes here>
go
select * from dbo.[$ndo$dbconfig]