Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 Invalid object name - Help quick

Author  Topic 

jrockfl
Posting Yak Master

223 Posts

Posted - 2005-02-24 : 09:10:45
This just started happening.

Invalid object name 'ARSLMFIL_SQL' when I try to execute a query.

This is the table, when I open it in EM, it adds my username like

SELECT *
FROM username.ARSLMFIL_SQL

Any ideas?

AndrewMurphy
Master Smack Fu Yak Hacker

2916 Posts

Posted - 2005-02-24 : 09:30:00
try...SELECT * FROM dbo.ARSLMFIL_SQL

have you changed SQL login method recently?....NT Auth to SQL...or trusted roles, etc?
Go to Top of Page

jrockfl
Posting Yak Master

223 Posts

Posted - 2005-02-24 : 09:39:41
Yesterday I was trying to use profiler, and it said i needed to be a member of sysadmin, so i added that role to my login. could that be it?
Go to Top of Page

AndrewMurphy
Master Smack Fu Yak Hacker

2916 Posts

Posted - 2005-02-24 : 10:36:30
You are going beyond my level of expertise in this area...but (temporarily) reversing that last step/process might point to the problem.
Go to Top of Page

jrockfl
Posting Yak Master

223 Posts

Posted - 2005-02-24 : 10:45:13
The problem is with username.tablename so I did DTS to create all of the tables so they are now
dbo.tablename

My SPs were not working either, so I created them all so they are dbo.sp

If i execute a dts from my client machine, it will create a new table with username.tablename
I need it to be dbo
Go to Top of Page
   

- Advertisement -