Re: Untitled - Mailing list pgsql-sql

From Ian Harding
Subject Re: Untitled
Date
Msg-id 3AC41DFD.94FAC669@pakrat.com
Whole thread Raw
In response to ...  ("Md. Intekhab Alam" <mdintekhabalam@hotmail.com>)
List pgsql-sql
"Md. Intekhab Alam" wrote:

> Has anyone tried setting up Postgres as a linked server under Microsofts SQL
> Server 7 to connect with SQL 6.5
>
> I am able to create the link correctly (see below) and see all the tables
> available in Postgres, but if I try querying anything in them I get the
> following error
>
> Server: Msg 7313, Level 16, State 1
> Invalid schema or catalog specified for provider 'MSDASQL'.
>
> how should I correct this problem. I am in very critical
> position because of this problem.
>
> please help me out ASAP i will be thankfull for that.
>
> waiting eagarly for the reply with helpful suggetion.
>
> regards,
>
> Intekhab Alam
>
> _________________________________________________________________________
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
>
> ---------------------------(end of broadcast)---------------------------
> TIP 2: you can get off all lists at once with the unregister command
>     (send "unregister YourEmailAddressHere" to majordomo@postgresql.org)

You need to specify the table with the fully qualified format:
SERVER.DATABASE.OWNER.TABLE or whatever format the ODBC driver is expecting.
The DATABASE portion is what they refer to as CATALOG or SCHEMA.  I usually end
up trying any combination I can think of until I reach the right one.  I can
tell you it is expecting three dots, and it can accept blanks in between if it
can use a default.  For example, in MS SQL Server, owner defaults to 'dbo' if
left blank.

The docs in MS SQL Server are not too clear on this subject.  Good luck.

BTW, you will want to alias the fully qualified name in any queries since you
can't use it to specify a field.  SERVER.DATABASE.OWNER.TABLE.FIELD is not
valid.  It's SELECT T.FIELD FROM SERVER.DATABASE.OWNER.TABLE T WHERE...

Ian



pgsql-sql by date:

Previous
From: "Mikheev, Vadim"
Date:
Subject: RE: [HACKERS] Re: possible row locking bug in 7.0.3 & 7.1
Next
From: "bernd"
Date:
Subject: primary key scans in sequence