Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How could I do this?

Status
Not open for further replies.

drkestrel

MIS
Sep 25, 2000
439
GB
I know I could do the following but forgotten what keywords I need to use to do it.

Basically, i have a SQL Server 2000 table called store created by an SQL user called "publications". What do I need to set up for the windows user MachineName\IUSR_MachineName to run
Code:
SELECT * from store
as opposed to
Code:
SELECT * from
publications
Code:
.store
"?
 
Sounds like you need to change the object owner to dbo, which is the default if no owner is specified for an object. Check out sp_changeobjectowner in BOL.

--Angel [rainbow]
-----------------------------------
Every time I lose my mind, I wonder
if it's really worth finding.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top