SQL SERVER | Ricercare un testo in tutte le stored procedure
SELECT o.Name AS 'StoredProcedure' FROM SysObjects AS o INNER JOIN SysComments AS c ON o.ID = c.ID WHERE c. LIKE '%testo da ricercare%' AND o. = 'P'
Appunti, stralci di programmazione e altro
SELECT o.Name AS 'StoredProcedure' FROM SysObjects AS o INNER JOIN SysComments AS c ON o.ID = c.ID WHERE c. LIKE '%testo da ricercare%' AND o. = 'P'
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…
In appSettings del web.config aggiungere la seguente voce: <add key=”ValidationSettings:UnobtrusiveValidationMode” value=”None” />
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…
L’esempio seguente mostra come poter estrarre da un testo il contenuto di una stringa delimitata mediante in marcatori “” Dim Regex As New Regex("\", RegexOptions.Singleline) Dim Matches As MatchCollection =…
La seguente procedura permette di esportare una gridview in un file pdf utilizzando la libreria ITextSharp Imports System.IO Imports iTextSharp.text Imports iTextSharp.text.pdf Imports iTextSharp.text.html Imports iTextSharp.text.html.simpleparser Public Overloads Overrides Sub…
Per gestire la data in formato UTC possiamo ricorrere ad una funzione javascript richiamata in ASP: <%@ language="vbscript"%> <script language="javascript" runat="server"> function jsGetUTCTime() { var d = new Date(); return…
Inserire questo codice in global.asax: Sub Application_BeginRequest(ByVal sender As Object, ByVal e As EventArgs) Dim path As String = HttpContext.Current.Request.Url.PathAndQuery Dim pagequery As String = path.Substring(path.LastIndexOf("/") + 1) Dim pagequery_Elements…
Il seguente codice permette di verificare se si sta navigando da un browser mobile oppure no: Dim hbc As HttpBrowserCapabilities = Request.Browser If (CType(hbc, System.Web.Configuration.HttpCapabilitiesBase)).IsMobileDevice Then Response.Write("Browser mobile") Else Response.Write("Browser…
La seguente procedura permette di spedire al motore di ricerca Google la sitemap di un sito internet. Come esempio è stata presa in considerazione la sitemap di questo blog raggiungibile…