Easysoft ODBC-RMS DriverI have created a linked server to my RMS files but am unsure as to how to query this. What SQL syntax should I use? |
|
When you have the linked server set-up you can query this server by using
SQL from the query analyser within SQL server. The syntax of the query is
quite specific to issue a simple select statement against one of your files
the following can be used as an example (please replace any entries within
square brackets with your own parameters)
select * from [linked server name]...[database_table_name]
This should return all data back from the specified tables.