Hey, Anybody familure with the GRANT CONNECT command in SQL 2008. It exists in the generate script utility in SQL 2008, however, it's generating an error when it's generated from a database. I.E.USE [master]GOGRANT CONNECT TO [SOME_USER] as [dbo]GOERRORMsg 15151, Level 16, State 1, Line 1Cannot find the user 'SOME_USER', because it does not exist or you do not have permission.
However when done manuallyUSE [master]GOGRANT CONNECT SQL TO [SOME_USER]GOWORKS PERFECTLY
So my questions is what is SQL TO?