perl -e 'for ( glob "./*" ) { system "ls -l $_" if ( -M $_ <= (1/24) ) };' |
Thursday, 9 September 2010
Perl : One liner to find files less than an hour old in a dir
Posted by
Ook
at
05:40
0
comments
Tuesday, 7 September 2010
iTunes Error 9808
Itunes error -9808 logging into the iTunes Music Store In Internet Explorer, go up to Tools > Internet Options. Then go to the last tab, Advanced, and scroll down to the Security section. It is the fifth box down and make sure "Check for server certificate revocation (requires restart)" is unchecked. Then access the iTunes Store. |
Posted by
Ook
at
09:57
0
comments
Wednesday, 25 August 2010
Windows 7 : Show File types
|
Posted by
Ook
at
14:43
0
comments
Thursday, 19 August 2010
Oracle : Auditing object access in 9i
Peter Lawes added a comment - 19/Aug/10 11:40 AM
|
Posted by
Ook
at
03:40
0
comments
Labels: Oracle
Monday, 2 August 2010
Excel : Remove all hyperlinks
In the spreadsheet * Press Alt-F11 to open the VB macro editor * Select the required sheet * Enter the following macro code Sub ZapHyperlinks() Cells.Hyperlinks.Delete End Sub * Run the code - Green triangle or Menu->Run->Run Macro or F5 (possibly) * This should remove all hyperlinks in the entire sheet |
Posted by
Ook
at
06:24
0
comments
Monday, 26 July 2010
Oracle : Impdp - objects that can be included/excluded
-- for database level export/import: |
Posted by
Ook
at
07:00
0
comments
Labels: Oracle
Thursday, 22 July 2010
Oracle : Drop a temp tablespace temp file
alter database tempfile '/u03/volnewdev7data/oradata/NEWDEV3/temp_02.dbf' drop including datafiles; |
Posted by
Ook
at
02:42
0
comments
Labels: Oracle
[ Show » ]
Peter Lawes
added a comment - 19/Aug/10
10:47 AM