Determine Disk Size of Tables

To see the disk size of database tables in MSSQL: 12345678910111213141516171819202122SELECT     t.NAME AS TableName,     p.rows AS RowCounts,     SUM(a.total_pages) * 8 AS TotalSpaceKB,     …

Android Backups with ADB

1adb backup [-f <file>] [-apk|-noapk] [-shared|-noshared] [-all] [-system|nosystem] [<packages…>] -f : the path of the *.ab file that will be saved on your computer. This file is a compressed file …

JDeveloper Change Java Location

To change the Java location that JDeveloper uses. 1). Locate the file E:\oracle\product\11.2.0\client32\sqldeveloper\sqldeveloper\bin\sqldeveloper.conf 2). Open the file in Notepad 3). Remove the line that starts with SetJavaHome 4). Save the …

Parse Simple XML C#

123456789101112131415string s @="<?xml version=""1.0"" encoding=""utf-8"" ?><Parent><Plate>ABC123</Plate></Parent>"; XmlDocument x = new XmlDocument(); x.LoadXml(s); XmlNode rootnode = x["Parent"]; if ((rootnode != null) && (rootnode.HasChildNodes)) {      XmlNodeList nodes = rootnode.ChildNodes;   …

VS2005 Build Warning “libbmt.pdb was not found”

Build Error in Visual Studio 2005: 123LIBCMT.lib(gshandler.obj) : warning LNK4099: PDB ‘libbmt.pdb’ was not found with  ‘C:\Program Files\Microsoft Visual Studio 8\VC\ce\lib\ARMV4I\LIBCMT.lib’ or at ‘c:\Source\AIMS Ticketer 4\Release\libbmt.pdb’; linking object as if …

Cisco ADSM Java Not Installed Error

When getting the error: Java Runtime Environment is not installed on this machine 1). Locate the asdm50-install.msi file and open it with 7zip 2). Extract all the jar files to …