BookmarkSubscribeRSS Feed
deleted_user
Not applicable
I would like to create a libname to a SQL db with windows authentication, like this one:

libname lib_name odbc dsn=dsn_name user=xxxx password=xxxx schema="";

but instead of using user and password, I'd like to use my windows authentication.

The goal of my procedure is: using a procedure without using a user and password pre-defined.

any help?

Tks
3 REPLIES 3
Doc_Duke
Rhodochrosite | Level 12
What you are talking about is called a "trust relationship" between the SQL database and the other OS uses. Microsoft SQL/Server supports it, I'm not sure about other products. That has to be set up by the SQL database administrators. Many DBAs consider it a security risk and are unwilling to support it, so "good luck."
deleted_user
Not applicable
tks for the help, but I've fixed it.

I've created a DSN with "log in with windows NT authentication" and in my libname I've put something like this:

libname mylib odbc dsn='dsn_name' schema=dbo;

that means, I didnot need to put user and pass if the DSN has that configuration.

Tks anyway
deleted_user
Not applicable
Hi, there is also a nice solution using OLEDB access:

LIBNAME name OLEDB INIT_STRING="Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=True;Data Source=***;Initial Catalog=***" PROMPT=NO PROVIDER=SQLOLEDB.1 DATASOURCE=*** SCHEMA=*** ;

No need for registering system dependnt DSN.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 5161 views
  • 2 likes
  • 2 in conversation