Access link tables

A

abcd

I have SQL Server DSN...my DB has tables defined as owner.table.

In Access file when I link SQL Server DSN and select any table it is linked
as owner_table

I have written my asp code with the notion of owner.table and in Access the
linked table is in the format of owner_table so failing my ASP page...

How to solve this. Why the owner.table is not maintanied and why the dot is
replaced by understore...

any work around>?
 
A

Arvin Meyer [MVP]

You can rename the linked table to anything you wish. I always use Access
(L/R) naming conventions when naming tables, so dbo_customers becomes
tblCustomers in Access (and in asp code).
 
V

Van T. Dinh

Yes, I always get rid of the "dbo_" in the Linked Table names ...

My SQL Server Tables already have the prefix "tbl" or "tlkp" so the Linked
Table names look like normal Access Table names. The icons still give
visual indication that they are ODBC-linked Tables ...
 
A

abcd

Thanks. I was trying to give a dot (.) in the name which is not accepted in
Access...

My ASP page does not reach to the linked SQL Server table from
Acess....where is the permission issue? Where should I look into

thanks
 

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