Archive for June, 2009
« Previous EntriesExcel : Konvertieren von Spalten in Zeilen oder Zeilen in Spalten
Tuesday, June 30th, 2009Verschieben 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.
Codebeispiel Oracle : Anzahl doppelter Datensätze
Friday, June 12th, 2009select wp_id, count (*) as anzahl from tmp_Kurse group by wp_id having count(*) >1;
SqlDeveloper – Keyboard problems
Friday, June 12th, 2009Can ‘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.
Problemlösung : Fehler Windows Update Fehlercodes 0x8024402C oder 0x8024502d
Thursday, June 11th, 2009Entfernen 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 [...]
PHP – Exception Management – Codebeispiel Datenbankzugriff
Monday, June 8th, 2009PHP 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:
Linux Oracle tuning parameter : Shutdown GUI
Friday, June 5th, 2009Modify the ‘inittab’ file to set boot level as 3:
Linux Oracle tuning parameter : Disable Unnecessary Daemons
Friday, June 5th, 2009/sbin/chkconfig –levels 2345 sendmail off /sbin/chkconfig sendmail off
Linux Oracle tuning parameter : Tune TCP
Friday, June 5th, 2009To 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
Linux vs. Oracle Tuning, Error : ORA-00845: MEMORY_TARGET not supported on this system
Friday, June 5th, 2009The 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 [...]
Linux Oracle tuning parameter : ulimits
Friday, June 5th, 2009To 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 [...]
« Previous Entries




