Quote:
|
Originally Posted by _msd_
2. SELECT * FROM DEMODATA_LS...Billing
Result:
Server: Msg 7313, Level 16, State 1, Line 1
Invalid schema or catalog specified for provider 'MSDASQL'.
|
I've fixed this with the following statement:
Code:
SELECT * FROM DEMODATA_LS.DEMODATA..Billing
Quote:
|
Originally Posted by _msd_
Another problem I have is that when I tried to defined the Linked Server for the actual DB, I get the following error when accessing the tables:
Error 7399: OLE DB Provider 'MSDASQL' reported an error.
Data source name not found and no default driver is specified.
I'm pretty sure I got the DSN name right from ODBC Data Source Admin. Any ideas?
|
I've also fixed this. Maybe I had a typo error earlier or something. I used the name under the Databases on the Pervasive Control Center and it worked ok in my development Pervasive.SQL 2000i server.
FYI,
Error 7399 also relates to trying to create a Linked Server to a third server which is true for my second connection. Wherein I am trying to create a Linked Server to another server (say SERVER02 -- the production Pervasive.SQL 2000i server). So, my second linked server is
my PC --- SERVER01 SQL Server --- SERVER02 Pervasive.SQL 2000i production.
This one, I cannot do anything. I do not have control over this case. So, I might have to find other means to connect to production without physically downloading the data. The best that worked for me so far is Linked Table using MS Access.
Thanks again for your help.
_msd_