As a database designer, I often create on database tables the primary key as identity autoincrement and sometimes I needed to find missing or deleted IDs thet interrupt the sequence…
As a database designer, I often create on database tables the primary key as identity autoincrement and sometimes I needed to find missing or deleted IDs thet interrupt the sequence…
Recently I needed to find in all files version history of a TFS 2010 project with Visual Studio 2010. Searching on Google I found Visual Studio 2010 and 2012 extensions,…
For different needs, often I had needs to send a list of values to a Stored Procedure. To achieve this goal it is possible to use a workaround with…
Quando si sviluppa un Event Receiver su una generica lista Sharepoint non è possibile ottenere l'istanza di SPWeb dal contesto corrente mediante l'istruzione seguente: SPWeb web = SPContext.Current.Web; poichè viene…
Lavorando su Microsoft Visio 2010 mi è capitato spesso di ricevere il seguente errore: Microsoft Visio 2007-2010 has stopped working.. Ho dovuto cercare su vari forum prima che riuscissi a…
Visual Studio Database Edition 2008 e Visual Studio Team System 2008 presentano un piccolo bug nella visualizzazione dei menu, in particolare per la voce di menu "Data". Infatti le voci…
Se cercate un discreto Syntax Higlighter per i vostri source code snipppet sono lieto di consigliarvi SyntaxHighlighter Evolved
Impossibile troncare una tabella quando vi è un vincolo di integrità referenziale Spesso vi sarà capitato di ottenere il seguente messaggio di errore in SQL Server 2005 / 2008 Cannot…
T-SQL: Alcuni accorgimenti per migliorare le prestazioni delle interrogazioni al database Spesso scriviamo query senza badare tanto alle performance, non tanto in termini di query (che è comunque importante), ma…
Oggi vediamo come utilizzare la funzione di sistema ROW_NUMBER() disponibile dalla versione di SQL 2005 in poi per effettuare delle quary che prendono il nome di Skip and Take. Questa…