Database Administration (MOSC)

MOSC Banner

azure file share

Oracle database 19c Standard Edition running on Windows 2019 Azure VM

Question: Does Oracle database support Azure files storage mounted as a drive on window 2019 Azure VM?

The code below throws error. Azure files storage has been mounted on Z: of the VM using SAS signature


CREATE OR REPLACE DIRECTORY SAV_TEST AS 'Z:\test'; 


DECLARE

 fHandle UTL_FILE.FILE_TYPE;

BEGIN

 fHandle := UTL_FILE.FOPEN('SAV_TEST', 'myoutput.txt', 'W');

 UTL_FILE.PUTF(fHandle, '  --- Heading 1 ---\n');

 UTL_FILE.PUTF(fHandle, '   --- Heading 2 ---\n');

 UTL_FILE.PUTF(fHandle, '     --- Heading 3 ---\n');

 UTL_FILE.FCLOSE(fHandle);

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center