Ever wonder where Oracle keeps track of objects that won’t be exported?
1 |
select * from sys.ku_noexp_tab; |
This table contains a list of objects that will be ignored during an export.
Nov 14
Ever wonder where Oracle keeps track of objects that won’t be exported?
1 |
select * from sys.ku_noexp_tab; |
This table contains a list of objects that will be ignored during an export.
Sep 24
I don’t know why zip can’t handle multiple inputs, but it cant’. Gzip does just fine unzipping everything in a directory, I use this little “script” all the time on the command line to unzip all the files in a directory.
1 2 3 4 5 |
for file in $(ls *.zip) do echo $file unzip -o $file done |
Its a small simple script, but it’s useful.
Recent Comments