creating tabes with full schema name

S

Sylvain Lafontaine

Yeah, ADP has a lot of trouble with full schema name, especially when it's
not dbo by default (ie, you are not part of the owner database role (dbo)).
Also, it has the very bad habit of adding the current user as the schema
name to many calls to the SQL-Server. For example, if your user name is
MyName and you want to call the stored procedure dbo.MyProcedure, it will
often call MyName.MyProcedure instead, making it impossible to find
dbo.MyProcedure.

On forms, you can set the Record Source Qualifier and for control, you can
add the schema name to the Row Source but it's probably a better idea to
always use dbo and set everyone to dbo when you want to use ADP against a
SQL-Server.
 

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