SQL SERVER | Verificare se un numero è pari
SELECT ID,CASE WHEN ID % 2 = 0 THEN ‘Pari’ ELSE ‘Dispari’ END AS ‘Verifica’ FROM Tabella (Utilizzare % 4 al posto di % 2 se si vuole verificare che…
Appunti, stralci di programmazione e altro
SELECT ID,CASE WHEN ID % 2 = 0 THEN ‘Pari’ ELSE ‘Dispari’ END AS ‘Verifica’ FROM Tabella (Utilizzare % 4 al posto di % 2 se si vuole verificare che…
Problema: Inserendo nel web.config la voce <modules runAllManagedModulesForAllRequests=”true” /> si verifica l’errore This configuration section cannot be used at this path. This happens when the section is locked at a…
Avviare Power Shell da SQL Server Management studio e lanciare il seguente script: $db = (new-Object Microsoft.SqlServer.Management.Smo.Server("nome_server")).Databases.Item("nome_database") Foreach ($sp in $db.StoredProcedures){ if(!$sp.IsSystemObject){ if (!$sp.IsEncrypted){ $sp.TextMode = $false; $sp.IsEncrypted = $true;…
Questo comando esegue il backup del database “master” di sql server nella cartella C:\Backup: osql -S .\sqlexpress -E -Q “BACKUP DATABASE master TO DISK=’C:\Backup\master.bak’ WITH FORMAT
Protected Function GetFTPFile(ByVal FileDaScaricare As String) As String Dim r As String = String.Empty Dim a As String = Now.Year Dim m As String = Now.Month If CInt(m) < 10…