Archivio Posts |
Anno 2015
Anno 2014
Anno 2013
Anno 2012
Anno 2011
Anno 2010
Anno 2009
Anno 2008
Anno 2007
|
|
SQL Rebuild Indexing Effects
The above TSQL commands should run very fast (in one second) and may have the same effect as rebuilding the index if the slowdown is due to a problem with the query plan cache in SQL Server.
use mastergo
DBCC FREEPROCCACHEgo
DBCC FREESYSTEMCACHE ('TokenAndPermUserStore') go
Leggi tutto il post...
giovedì, 17 apr 2008 Ore. 09.39
SQL Index Hinting Disabling (for NAV 4.0 SP3)
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)goGRANT SELECT ON dbo.[$ndo$dbconfig] TO publicgo
INSERT INTO dbo.[$ndo$dbconfig] VALUES('IndexHint=No')go
Test
use <your NAV database name goes here>go
select * from dbo.[$ndo Leggi tutto il post...
lunedì, 14 apr 2008 Ore. 09.38
|
Statistiche |
- Views Home Page: 468.918
- Views Posts: 885.791
- Views Gallerie: 0
- n° Posts: 343
- n° Commenti: 0
|
|