Ling to an SQL Table that exceeds 255 Fields

J

Jody Butcher

I am using an ODBC Link to an SQL Table that has about 400 fields in it. I
need to get to some of the fields in the 300+ range. Anyone know of a way to
do this?
 
R

Rick Brandt

Jody said:
I am using an ODBC Link to an SQL Table that has about 400 fields in
it. I need to get to some of the fields in the 300+ range. Anyone
know of a way to do this?

I beleive you will need to define a view on the server that has the fields you
need or else use a Passthrough query instead of a link.
 
B

Brian

If you have access to the main database to which you want to establish the
ODBC connection, you could create a view (SELECT statement that returns just
the fields and/or records you need) or have the DB developer create the view
for you. Then, you can just set up your ODBC link to the view instead of to
the table itself. The view can be either read-only or have read/write access
to the database.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top