Community Meeting - SQL Server 2008: Le novità

by Andrea 20 November 2008 11:26

Venerdì 21 Novembre si terrà il XeDotNet community meeting dal titolo SQL Server 2008: Le novità e tenuto da Simone Corsini.

Ecco l'abstract:

Una rapida carrellata su le principali novità di SQL Server 2008. Toccando punti come sicurezza, gestione, business inteligence, reportistica. E ovviamente toccando anche punti un po' più interessanti anche per gli sviluppatori come i nuovi tipi di dato e gestione dei tipi destrutturati.

Per iscriversi il link è http://www.xedotnet.org/nextmeeting.aspx.

E come in tutti i community meeting che si rispettino, alla fine del meeting ci sarà il solito ritrovo allo scarpon a Mestre per fare della sana e buona attività di community davanti ad un bel panino.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

SQL server | XeDotNet

SQL Server - Ripristinare un utente dopo un restore

by Andrea 14 September 2007 07:09

Se state facendo un restore di un database, e magari usando un backup fatto su un'altro server, può capitare che abbiate problemi di autenticazione quando provate ad accedervi dalla vostra applicazione.
Questo può accadere perchè l'utente e i suoi permessi non sono allineati con quelli del nuovo SQL server.

Per fixare l'utente e i ruoli è sufficiente eseguire la seguente store procedure:

EXEC sp_change_users_login ‘Auto_Fix’, ‘user’, NULL, ‘pwd’;

Maggiori info: sp_change_users_login (Transact-SQL)

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

SQL server

Conoscere la versione di SQL Server

by Andrea 03 August 2007 08:08
Questa me la devo proprio segnare perchè so già che mi tornerà presto utile.smile_wink Per conoscere la versione di SQL Server installata è sufficiente eseguire questa Query:

SELECT  @@version, 
        SERVERPROPERTY('productversion'), 
        SERVERPROPERTY ('productlevel'), 
        SERVERPROPERTY ('edition')
e otterete dei dati simili ai seguenti: Version: Microsoft SQL Server 2005 - 9.00.2050.00 (Intel X86)   Feb 13 2007 23:02:48   Copyright (c) 1988-2005 Microsoft Corporation  Standard Edition on Windows NT 5.2 (Build 3790: Service Pack 2) ProductVersion: 9.00.2050.00 ProductLevel: SP1 Edition: Standard Edition Fonte: How to identify your SQL Server version and edition

Technorati tags:

Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Reporting Services | SQL server