| Author |
Messages |
|
tjb
 |
| 05/31/2002 1:23 PM |
Quote
Reply
Alert
|
| Is there any way to use replace the string specified login and password in Openrowset() with windows NT authentication? |
|
|
|
|
Chip Andrews
 |
| 06/01/2002 11:11 AM |
Quote
Reply
Alert
|
| Try 'Trusted_Connection=Yes' instead of your username/password paramters like so:
SELECT * FROM OPENROWSET('SQLOLEDB','Trusted_Connection=Yes;Data Source=yourserver','select @@version') |
|
|
|
|
|