Encrypt ConnectionStrings in web.config
This is the sample connection string in the web.config file Before Encrypt <configuration> <connectionStrings> <add name=”SqlServices” connectionString=”Data Source=localhost;Integrated Security=SSPI;Initial Catalog=Northwind;” /> </connectionStrings> </configuration> Encrypting web.config file 1. Open Command…
How to get Blob size in Oracle
DBMS_LOB.GetLength returns the number of characters (bytes) in the CLOB/BLOB column. SELECT DBMS_LOB.GetLength(“BlobColum”)/1024/1024 AS SizeMB FROM MY_SCHEMA.MY_TABLE_WITH_BLOB_CLOB
Machine.Config Location
Common Location: C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config The Machine.Config file, which specifies the settings that are global to a particular machine. This file is located at the following path: [Windows Directory]\Microsoft.NET\Framework\[Framework Version]\CONFIG\machine.config As web.config…