vote up 1 vote down star

I need to execute a SQL Query between two databases.

Example:

SELECT * from table1 in 'D:\paulo\sdatabases\SCWa.mdb'

The problem is that both tables have a password. How can i put the password in a query like this?

flag

2 Answers

vote up 1 vote down check

You can link the table, if I remember correctly, you will have to give password once when creating the link.

link|flag
Problem solved, thanks! – Paulo Nov 3 at 13:12
vote up 4 vote down

Use the same string as connect in your query, for example:

SELECT * FROM [MS Access;PWD=password;DATABASE=C:\Docs\LTD.mdb].Companies

Further information: http://support.microsoft.com/kb/113701

The above example is for a database password, not a security (mdw) password.

link|flag
@onedaywhen The password in the example is a database password, not a security password, so your addition may lead to a little confusion. yesno? – Remou Nov 3 at 13:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.