Love sqlplus but looking to make use of the cloud.....?
This 'functionality' has been around for a long time (maybe even prior to 9i - i didn't have anything old enough running where i could test it) but I've never seen anyone (other than me) actually ever use it. That could be because it's not useful and to be honest i've never really used it for anything really meaningful but it is occasionally useful and it's nice to know this feature is available....
So what is this mysterious cloud feature i speak of?
Well how would it be if you could run sql scripts that are stored in the cloud directly in a sqlplus session - wouldn't that just be amazing (well maybe amazing is stretching it).
Well you already can - just execute the script like this
I create a dummy sql file (test.sql) and stick it on a
select sysdate from dual;
(original eh?)
Now if we log on to sqlplus we can do this
SQLPLUS>@http://some-random-cloudserver/test.sql
SYSDATE
--------------------
10-OCT-2014 18:21:41
groundbreaking stuff.....
So in theory you could just store all your scripts somewhere in the
For me at least external
Calling some total strangers sql files remotely maybe isn't such a hot idea though - there could be any series of nasty things lurking in the cloud......
You think i shoehorned enough mentions of cloud into this... :-)
Comments
Post a Comment