MICROSOFT VISUALSTUDIO | gitignore non funziona correttamente
Per eliminare file già committati che devono essere ignorati da git, procedere in questo modo: git rm -r –cached . git add -A git commit -m ‘Rimozione file ignorati’ Pushare…
Guide pratiche di Linux, Windows, Database, Sviluppo Web e molto altro
Per eliminare file già committati che devono essere ignorati da git, procedere in questo modo: git rm -r –cached . git add -A git commit -m ‘Rimozione file ignorati’ Pushare…
Elimina il file: C:\Users\%User&\AppData\Roaming\Microsoft\SQL Server Management Studio\14.0\SqlStudio.bin Il percorso riportato si riferisce alla versione 17.9 di Microsoft SQL Server Management Studio
https://graph.facebook.com/?ids={{URL}}
DECLARE @tableSchema VARCHAR(5) = 'dbo' DECLARE @dbName VARCHAR(50) = 'TEST' SELECT CONCAT('USE ') AS Obj2Drop UNION SELECT CONCAT('DROP TABLE ') AS Obj2Drop ---TABLES--- FROM information_schema.tables WHERE TABLE_SCHEMA = @tableSchema AND…
Prompt dei comandi: wmic path softwarelicensingservice get OA3xOriginalProductKey PowerShell: powershell “(Get-WmiObject -query ‘select * from SoftwareLicensingService’).OA3xOriginalProductKey”
---SQL Server 2008--- IF OBJECT_ID(N'.', N'P') IS NOT NULL DROP PROCEDURE . GO ---SQL Server 2008 R2--- IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID('.') AND type in…
Per abilitare il sessionState in modalità SQLServer, accedere alla cartella C:\Windows\Microsoft.NET\Framework\<versione del framework> e lanciare il seguente comando: aspnet_regsql.exe -S <ip del server> -U <user id> -P <password> -ssadd
Aprire un prompt dei comandi con diritti di amministratore e lanciare il seguente comando: powercfg -h off
USE MASTER GO ALTER DATABASE DatabaseName MODIFY FILE (NAME = 'LogicalName_Data', NEWNAME='NEWLogicalName_Data') GO ALTER DATABASE DatabaseName MODIFY FILE (NAME = 'LogicalName_Log', NEWNAME='NEWLogicalName_Log') GO
Dim obj As new Object obj = Activator.CreateInstance(Type.GetType("percorso.nomeclasse"))