RS First Dynamics NAV Blog


...from NAV 3.60 to NAV 2013
Archivio Posts
Anno 2015

Anno 2014

Anno 2013

Anno 2012

Anno 2011

Anno 2010

Anno 2009

Anno 2008

Anno 2007

Workshop UGISS - Torino 16 Giugno

Workshop UGISS - Torino  16 Giugno Torino Agenda argomenti principali:Meccanismi di Auditing con SQL Server 2005 e 2008SQL Server implementa un’architettura di sicurezza basata su tre livelli di protezione, l’Auditing rappresenta proprio il terzo livello di questa architettura. Nel corso della sessione si vedrà come implementare una traccia di auditing su SQL Server 2005 e come si colloca l’Auditing su SQL Server 2008.Ottimizzare SQL Server 2008 per ambienti VirtualiQuesta sessione perme 
Leggi tutto il post...
Categoria: News Events
giovedì, 14 mag 2009 Ore. 11.16

Utilizzo funzione ROUND Sql

Esempio utilizzo funzione ROUND per arrotondamento o troncamento SELECT ROUND(123.4545, 2); -> 123,45 SELECT ROUND(123.4545, -2);  -> 100,00  Nell'esempio seguente vengono utilizzate due istruzioni SELECT per illustrare la differenza tra l'arrotondamento e il troncamento. La prima istruzione arrotonda il risultato, la seconda lo tronca. SELECT ROUND(150.75, 0); -> 151,00 SELECT ROUND(150.75, 0, 1); -> 150,00  
Leggi tutto il post...
Categoria: Sql Server ALL
giovedì, 14 mag 2009 Ore. 11.12

SET SQL SERVER 2005 SINGLE USER MODE and recover SA Password

Disaster Recovery: What to do when the SA account password is lost in SQL Server 2005You may have faced the issue of losing the SQL Server SA password. Perhaps you followed the security best-practice of removing the builtin\Administrators from the sysadmin server role,  and no one  you can find is in the sysadmin role.   At this point you may think that your only options are to reinstall SQL Server and attach the databases, or to  directly access the master database file 
Leggi tutto il post...
Categoria: Sql Server ALL
martedì, 12 mag 2009 Ore. 12.32

RESTORE MASTER DB FROM FILE

Example The following example restores the master database on the default server instance.The example assumes that the server instance is already running in single-user mode. The example starts sqlcmd and executes a RESTORE DATABASE statement that restores a full database backup of master from a disk device: Z:\SQLServerBackups\master.bak. Note for NAMED ISTANCEFor a named instance, the sqlcmd command must specify the -S<ComputerName>\<InstanceName> option. PROCEDURE:C:\> sqlc 
Leggi tutto il post...
Categoria: Sql Server ALL
martedì, 12 mag 2009 Ore. 12.29

DBCC SHRINKFILE error dopo spostamento tabelle in filegropus

Se DBCC SHRINKFILE   va in errore occorre aumentare la dimensione del files anche di pochi bytepoi fare nuovamente lo shrink (inganna il catalogo) SOLUZIONE: USE DEMODBGO DBCC SHRINKFILE('DemoDB_1_Data') "error ID 8 not  found .... etc." sp_helpfile --> se file DemoDB_1_Data = 19067968KB MODIFICARE CON: ALTER DATABASE DEMODBMODIFY FILE( NAME = DEMODB_1_Data, SIZE = 19067975KB) DBCC SHRINKFILE('DemoDB_1_Data') --> ora dovrebbe funzionare !   
Leggi tutto il post...
Categoria: Sql Server ALL
lunedì, 11 mag 2009 Ore. 18.31
Statistiche
  • Views Home Page: 450.923
  • Views Posts: 863.241
  • Views Gallerie: 0
  • n° Posts: 343
  • n° Commenti: 0
Copyright © 2002-2007 - Blogs 2.0
dotNetHell.it | Home Page Blogs
ASP.NET 2.0 Windows 2003