FIX: Can't Use Four-Part Name to Query Oracle Table If Name Contains Lowercase Characters (294459)
The information in this article applies to:
- Microsoft SQL Server 2000 (all editions)
This article was previously published under Q294459
BUG #: 351669 (SHILOH_BUGS)
SYMPTOMS
When you run a four-part name query on a table in an Oracle data source, if the table name contains lowercase characters, you may receive an error message that resembles the following, with the OLE DB provider listed being the name of your linked server:
Server: Msg 7314, Level 16, State 1, Line 0
OLE DB provider 'TestName' does not contain table 'XXXXX'. The table either does not exist or the current user does not have permissions on that table.
OLE DB error trace [Non-interface error: OLE DB provider does not contain the table: ProviderName='TestName', TableName='XXXXX'].
RESOLUTIONTo resolve this problem, obtain the latest service pack for SQL Server 2000. For additional information, click the following article number to view the article in the
Microsoft Knowledge Base:
290211 INF: How to Obtain the Latest SQL Server 2000 Service Pack
WORKAROUND
To work around this problem, use OpenQuery syntax as follows:
Select * from openquery(TestName, 'select * from "Customers"')
For more information, see SQL Server Books Online.
STATUSMicrosoft has confirmed that this is a problem in SQL Server 2000. This problem was first corrected in SQL Server 2000 Service Pack 1.
Modification Type: | Major | Last Reviewed: | 11/6/2003 |
---|
Keywords: | kbBug kbfix kbSQLServ2000sp1fix KB294459 |
---|
|