BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Edoedoedo
Pyrite | Level 9

Hi everyone,

I know how to create a libname to read an accdb file on my pc, and I know how to read a file on a webdav server using the "filename webdav" statement.

Now, we have an accdb file stored on such a webdav server. I need to "mix" the two access mode to directly read the accdb file on the webdav server not just as a file, but as a database with the Access engine.

Is that possible?

I mean something like:

libname test webdav 'http:/server/path/database.accdb';


proc print data=test.table;

run;

Thanks a lot

Greetings

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

Look here:

SAS(R) 9.3 Statements: Reference

You can combine a libname with a specific engine with webdav access and the appropriate webdav options.

So you could try if

LIBNAME test ACCESS 'url' WEBDAV USER='userid' PASSWORD='password' WEBDAV options;

works.

View solution in original post

2 REPLIES 2
Kurt_Bremser
Super User

Look here:

SAS(R) 9.3 Statements: Reference

You can combine a libname with a specific engine with webdav access and the appropriate webdav options.

So you could try if

LIBNAME test ACCESS 'url' WEBDAV USER='userid' PASSWORD='password' WEBDAV options;

works.

Edoedoedo
Pyrite | Level 9

Thank you very much!

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

Discussion stats
  • 2 replies
  • 2233 views
  • 0 likes
  • 2 in conversation