Excel : Konvertieren von Spalten in Zeilen oder Zeilen in Spalten
By Martin | June 30, 2009
Verschieben von Daten zwischen Zeilen und Spalten
Vor dem Einfügen der kopierten Daten mit der rechten Maustaste Zelle anklicken, und dann auf Inhalte einfügen.
Weiterlesen Excel : Konvertieren von Spalten in Zeilen oder Zeilen in Spalten
Topics: Software | add this page to Mister Wong | No Comments »
Codebeispiel Oracle : Anzahl doppelter Datensätze
By Martin | June 12, 2009
select wp_id, count (*) as anzahl from tmp_Kurse group by wp_id having count(*) >1;
Topics: Oracle, SQL | add this page to Mister Wong | No Comments »
SqlDeveloper – Keyboard problems
By Martin | June 12, 2009
Can ‘t use some keys like “del,return,arrows”.
If they worked before, something got deconfigured (happens sometimes, but noone knows why or how).
To restore them: Preferences – Accelerators – Load Preset – Default.
Topics: Oracle, Software | add this page to Mister Wong | No Comments »
Problemlösung : Fehler Windows Update Fehlercodes 0×8024402C oder 0×8024502d
By Martin | June 11, 2009
Entfernen Sie die Zeichen aus der Liste der Ausnahmen in den Proxyservereinstellungen, und leeren Sie anschließend den Proxyzwischenspeicher, um diese Fehler zu beheben.
Gehen Sie hierzu folgendermaßen vor:
1. Öffnen Sie Internet Explorer.
2. Klicken Sie im Menü Extras auf Internetoptionen.
3. Klicken Sie auf die Registerkarte Verbindungen, klicken Sie auf LAN-Einstellungen, und klicken Sie anschließend auf Erweitert.
4. Löschen Sie alle Einträge im Abschnitt Ausnahmen.
5. Beenden Sie Internet Explorer.
6. Klicken Sie auf Start und auf Ausführen, geben Sie cmd ein, und klicken Sie auf OK.
7. Geben Sie die folgenden Befehle ein. Drücken Sie nach jedem Befehl die [EINGABETASTE].
• proxycfg -d
• net stop wuauserv
• net start wuauserv
Topics: Software | add this page to Mister Wong | No Comments »
PHP – Exception Management – Codebeispiel Datenbankzugriff
By Martin | June 8, 2009
PHP 4 Standard,
Reaktion auf den Fehler durch die() oder exit() :
$db = new DB();
$dbh =& $db->connect(…);
// Ausführung beenden, wenn keine Verbindung hergestellt werden kann
if ( !$dbh ) {
die ( ‘Konnte Verbindung nicht aufbauen!’ );
}
PHP 5, exception Modell:
Weiterlesen PHP – Exception Management – Codebeispiel Datenbankzugriff
Topics: Software, wordpress | add this page to Mister Wong | No Comments »
Linux Oracle tuning parameter : Shutdown GUI
By Martin | June 5, 2009
Modify the ‘inittab’ file to set boot level as 3:
Topics: LINUX, Oracle | add this page to Mister Wong | No Comments »
Linux Oracle tuning parameter : Disable Unnecessary Daemons
By Martin | June 5, 2009
/sbin/chkconfig –levels 2345 sendmail off
/sbin/chkconfig sendmail off
Topics: LINUX, Oracle | add this page to Mister Wong | No Comments »
Linux Oracle tuning parameter : Tune TCP
By Martin | June 5, 2009
To view current TCP settings, run command:
sysctl net.ipv4.tcp_keepalive_time
net.ipv4.tcp_keepalive_time = 7200 // 2 hours
where net.ipv4.tcp_keepalive_time is a TCP tuning parameter.
To set a TCP parameter to a value, run command:
sysctl -w net.ipv4.tcp_keepalive_time=1800
Weiterlesen Linux Oracle tuning parameter : Tune TCP
Topics: LINUX, Oracle | add this page to Mister Wong | No Comments »
Linux vs. Oracle Tuning, Error : ORA-00845: MEMORY_TARGET not supported on this system
By Martin | June 5, 2009
The ORA-00845:can arises for the following two reasons on linux system.
1)If the shared memory which is mapped to /dev/shm directory is less than the size of MEMORY_TARGET or MEMORY_MAX_TARGET.
or,
2)If the shared memory is not mapped to /dev/shm directory.
Make sure /dev/shm is properly mounted. You can see it by,
df -h
Filesystem Size Used Avail Use% Mounted on
…
shmfs 30G 15G 15G 30% /dev/shm
As a root user,
mount -t tmpfs shmfs -o size=30g /dev/shm
In order to make the settings persistence so that it will affect after restarting machine add an entry in /etc/fstab similar to the following:
shmfs /dev/shm tmpfs size=13g 0
Topics: LINUX, Oracle | add this page to Mister Wong | No Comments »
Linux Oracle tuning parameter : ulimits
By Martin | June 5, 2009
To view current settings, run command:
ulimit -a
To set it to a new value for this running session, which takes effect immediately, run command:
ulimit -n 8800
ulimit -n -1 // for unlimited; recommended if server isn’t shared
Alternatively, if you want the changes to survive reboot, do the following:
- Exit all shell sessions for the user you want to change limits on.
- As root, edit the file /etc/security/limits.conf and add these two lines toward the end:
oracle soft nofile 16000
oracle hard nofile 20000
** the two lines above changes the max number of file handles – nofile – to new settings.
- Save the file.
- Login as the user1 again. The new changes will be in effect.
Topics: Uncategorized | add this page to Mister Wong | No Comments »


