Archivio Posts |
Anno 2015
Anno 2014
Anno 2013
Anno 2012
Anno 2011
Anno 2010
Anno 2009
Anno 2008
Anno 2007
|
|
4616: Abilitare Trace Flag Sql Server 2005 per Dynamics NAV 5.0
Per accedere a Microsoft Dynamics NAV con SQL Server 2005 è necessario abilitare il trace flag SQL 4616 (flag a standard spento)
Come si fa:I flag di traccia si aggiungono tra i parametri di startup del servizio. Accedere a SQL Server Configuration Manager (SCM) e nella lista dei servizi accedere alle proprietà del servizio SQL Server.
Nel tab Advanced, nella sezione Startup Parameters, aggiungere il flag di traccia -4616 facendo attenzione a non rimuovere i parametri esistenti
(esistono gi Leggi tutto il post...
giovedì, 17 mag 2007 Ore. 10.23
Criptare i dati con Sql Server 2005
Per criptare i nostri dati possiamo utilizzare chiavi simmetriche (SYMMETRIC KEYS).
Una chiave di questo tipo assicura una protezione molto più elevata rispetto a quella fornita dalle funzioni di T-SQL (come EncryptByPassPhrase).
Ecco cosa possiamo utilizzare per rendere più sicuri i nostri dati (tramitre l’algoritmo TRIPLE DES):
-- Creare una chiave simmetrica-----------------------------------------------------------------------CREATE SYMMETRIC KEY TestKey
WITH ALGORITHM = TRIPLE_DESENCRYP Leggi tutto il post...
giovedì, 17 mag 2007 Ore. 08.57
DBCC CheckDB
DBCC CheckDB (verifica e corregge errori sul db)
prerequisiti: attivare DB in SINGLE USER
// opzioni di recuperoREPAIR_ALLOW_DATA_LOSS (recupero avanzanto)REPAIR_FASTREPAIR_REBUILD ES:DBCC CHECKDB ('MSDB', REPAIR_ALLOW_DATA_LOSS)
// utilizzo tramite ISQL (script sql da lanciare a mano o schedulare tramite script batch)es: Repair MSDBISQL -S <SERVER> -U <USER> -P <PASSWORD>-Q "DBCC CHECKDB ('MSDB', REPAIR_ALLOW_DATA_LOSS)" Leggi tutto il post...
mercoledì, 16 mag 2007 Ore. 11.23
Funzione Sql IsZero --> Converte 0 in altro numero
Funzione che converte 0 in altro numero, utile in viste o stored procedures.
CREATE FUNCTION IsZero (@Number FLOAT,@IsZeroNumber FLOAT)RETURNS FLOATAS BEGIN IF (@Number = 0) BEGIN SET @Number = @IsZeroNumber ENDRETURN (@Number) END
es: isZero(<campo>; 1) --> converte o in 1 Leggi tutto il post...
lunedì, 14 mag 2007 Ore. 12.00
Syncronize Users with Dynamics NAV
When is necessary to run it ?
WHEN:
1. modify something in permission settings (permissions, roles, users) 2. add new table 3. change something connected to some SIFT settings (new SumIndexField added etc.)
4. add new users Leggi tutto il post...
venerdì, 11 mag 2007 Ore. 01.31
SQL Server Storage Best Practice Top 10
SQL Server Best Practice Top 10 at: http://www.microsoft.com/technet/prodtechnol/sql/bestpractice/storage-top-10.mspx
Storage Top 10 Best Practices
Proper configuration of IO subsystems is critical to the optimal performance and operation of SQL Server systems. Below are some of the most common best practices that the SQL Server team recommends with respect to storage configuration for SQL Server.
Understand the IO characteristics of SQL Server and the specific IO requ Leggi tutto il post...
giovedì, 10 mag 2007 Ore. 20.28
Lost Windows roles during syncronization process - NAV 4.0 SP3
Case:
using NAVISION 4.0 SP3 with SQL database and using windows autentication for db access.
I enter windows group and assign roles, then I enter windows user, but I don't enter roles, because they are assigned automatically to user, then I run synchronization, but in my test the user doesn't receive group's roles.
Solution:
1. Do not forgot, that the user must be directly member of the win group used.
2. Also, you may want to consider switching back to the 'Standard' security mode Leggi tutto il post...
giovedì, 10 mag 2007 Ore. 20.20
Maintenance checks for SQL Server
DATABASE ADMINISTRATOR : Maintenance checks for SQL Server
(article by Kevin Kline and Baya Pavliashvili)
All about Sql data Check, reindex, repair
http://searchsqlserver.techtarget.com/tip/1,289483,sid87_gci1112905_tax301327,00.html?adg=301324&bucket=ETA Leggi tutto il post...
lunedì, 07 mag 2007 Ore. 11.47
|
Statistiche |
- Views Home Page: 468.740
- Views Posts: 885.461
- Views Gallerie: 0
- n° Posts: 343
- n° Commenti: 0
|
|