Add to the where clause, AND o.xtype = 'u'
So it should look like this...
SELECT u.Name as "User", o.Name as "Object "
FROM sysobjects o
JOIN sysusers u ON u.uid = o.uid
WHERE u.Name = 'dbo'
AND o.xtype = 'u'
We're a third party and they give us read/write access. We gave their DBA scripts to create the databases for us. I'm pretty confident it is not our application since we have it installed at other clients and this is the first this has ever happened.
Hopefully we will be able to track down how...
I have seen the records in the SQL Server database table via enterprise manager, so I know they are making it to the server.
One of the ways I'm trying to "monitor" the situation is creating triggers on each table any time a record is deleted and put that into a temporary table. I also have...
I have an application using an Access front end with a SQL server 2000 backend. Just recently we noticed that some records are mysteriously disappearing from SQL Server.
The records are entered through Access via ADO calls. The records are in the SQL database, but then minutes or hours later...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.