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 …
Linguistics: http://logik.li/black_speech/orkish_and_the_black_speech Dictionary: http://logik.li/black_speech/shadowlandian/dictionary
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
