According to The Directive 2009/24/EC of the European Parliament and of the Council, and Sec.103(f) of the DMCA (17 U.S.C. § 1201 (f)), the reverse engineering act committed to creating these blog posts is considered legal, as this is an original attempt to improve interoperability, and cannot be waived by license agreements.
The views expressed on this blog are my own and do not necessarily reflect the views of my past and present employers.
2014-06-17
An oldtimer - Error 1722 or 2755 from Wise installer
Here it is for future reference if anyone ends up here on their endeavor of searching to solve this encountering problem.
Internal Error 2755. 1632 setup fails
This problem occurs when the following conditions are all true:
You install on a Microsoft Windows NT 4.0 or Microsoft Windows 2000 (or Windows XP...).
-and-
The WinNT folder is located on an NTFS partition.
-and-
You have a folder called Installer under the WinNT folder, and you do not have full access permissions to the Installer folder.
To resolve this problem, change the permissions on the Installer folder to:
Everyone - Read (RX)
Administrators - FullControl
SYSTEM - FullControl
The installer folder is a protected folder. To change perms you will have to go to:
Windows Explorer - Tools - Folder Options - Select View.
Un-check: Hide protected Operating System Files.
The Installer folder is now visible under \Winnt
Internal Error 2755. 1632 setup fails
This problem occurs when the following conditions are all true:
You install on a Microsoft Windows NT 4.0 or Microsoft Windows 2000 (or Windows XP...).
-and-
The WinNT folder is located on an NTFS partition.
-and-
You have a folder called Installer under the WinNT folder, and you do not have full access permissions to the Installer folder.
To resolve this problem, change the permissions on the Installer folder to:
Everyone - Read (RX)
Administrators - FullControl
SYSTEM - FullControl
The installer folder is a protected folder. To change perms you will have to go to:
Windows Explorer - Tools - Folder Options - Select View.
Un-check: Hide protected Operating System Files.
The Installer folder is now visible under \Winnt
kmem russian roulette
sudo dd if=/dev/urandom of=/dev/kmem bs=1 count=1 seek=$RANDOM
I already forgot where and when I read about this first... The theory is that every weekend you shoot this on one of your servers, that should eventually fail. Now, if your HA/failover solution does not compensate inside your SLA, you can fix it outside business time.
2014-06-10
Oracle: Get approximate size of storage used by indexes by a user
SELECT SEGMENT_NAME, ROUND(BYTES / 1048576) AS MEGABYTES, ROUND(BYTES / 1073741824, 1) AS GIGABYTES FROM DBA_SEGMENTS WHERE SEGMENT_TYPE = 'INDEX' AND OWNER = '_YOURUSER_COMES_HERE_' ORDER BY 2 DESC, 1 ASC;
Subscribe to:
Posts
(
Atom
)