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 2008 Forums
 Other SQL Server 2008 Topics
 SQL profiler gives a SQL error messages

Author  Topic 

AndreB
Starting Member

2 Posts

Posted - 2010-06-22 : 03:16:15
Hi everyone,

I get the following error from the SQL profiler:
sp_tables N'AVeryUnlikelyTableNameSoWeWontGetAnyMatches', null, null, "'TABLE'"

On the internet I don't get any hit on searches for this string.

pk_bohra
Master Smack Fu Yak Hacker

1182 Posts

Posted - 2010-06-22 : 03:51:59
Whats the error message you are getting.

Try removing the double quotes used for "'TABLE'".

Ex:
sp_tables N'AVeryUnlikelyTableNameSoWeWontGetAnyMatches', null, null, 'TABLE'
Go to Top of Page

AndreB
Starting Member

2 Posts

Posted - 2010-06-22 : 04:45:25
thx for the hit, but this a message profiler gives.

I found the solution: user rights
Go to Top of Page
   

- Advertisement -