Showing posts with label Setting Software Port in Oracle. Show all posts
Showing posts with label Setting Software Port in Oracle. Show all posts

Jan 14, 2016

Setting Software Port in Oracle


select dbms_xdb.gethttpport as "HTTP-Port",
dbms_xdb.getftpport as "FTP-Port" from dual;

begin
dbms_xdb.sethttpport('3036');
end;
/
commit;