adp dbo problem

  • Thread starter Thread starter LH
  • Start date Start date
L

LH

I created an adb on my laptop. I backed up the SQL
database and restored it onto our server. When I connect
the adp to the server using a login other than sa, all my
tables, store procedures and views are associated with dbo
and nothing works. If I associate the new login with
sysadmin role it works but I don't think this is the way I
should handle it. What is the correct way?

Thanks for help,

LH
 
Hi LH,

that is "by design". All objects the actual user is
the owner of will be displayed by object name only.

All other objects will be more qualified by the name
of the owner.

Because most objects are dbo objects replace all references
to these objects with the full qualification.

e.g

SELECT * FROM sysobjects ('WRONG')

SELECT * FROM dbo.sysObjects
EXEC dbo.sp_AddServer
etc...

HTH ;-)

--
Gruß, Uwe Ricken
MCP for SQL Server 2000 Database Implementation

GNS GmbH, Frankfurt am Main
http://www.gns-online.de
http://www.memberadmin.de
http://www.conferenceadmin.de
____________________________________________________
APP: http://www.AccessProfiPool.de
dbdev: http://www.dbdev.org
FAQ: http://www.donkarl.com/AccessFAQ.htm
 
Back
Top