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, …
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, …
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 …
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 …
Visual Studio Forms Designer automatically attempts to set properties of controls added to the form at design time. Sometimes these automatic changes can cause problems. To tell the designer to …
No other man’s picture detracts from concentrating on an Oracle issue more than this guy…
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; …
Use the Microsoft tool to create a bootable USB drive from an ISO. Windows 7 USB/DVD Tool
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 …
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 …
