Forum Replies Created

Viewing 15 posts - 151 through 165 (of 251 total)

  • RE: Local Groups or Global Groups?

    Another point is in some environments the DBA and the network admin(s) are not

    necessarily the same person, and the domain admins are not always given rights

    to the SQL...

  • RE: Can I do this in SQLServer

    Steve would "UNION ALL" work faster as the hard coded query is not going to produce duplicates?

    Tim C.

    //Will write code for food

    One Windows to rule them all, One Windows to...

  • RE: Constraint Question

    Brians solution is much cleaner and simpler John. Just finished adding it to my briefcase..

    Tim C.

    //Will write code for food

    One Windows to rule them all, One Windows to find them,

    One...

  • RE: Constraint Question

    I wrote this stored proc to print out the sql to add / remove all check constraints for a db, you could modify it to do what you want.

    EXEC...

  • RE: Worst Security hole I have ever seen

    Sorry, ran your query, and too another look at what you were ouputting. You were not displaying just what stored procedures public had access to, but ones that queried or...

  • RE: Worst Security hole I have ever seen

    Brian this does close to the same thing as your query, but does not limit the search to stored procedures, if that was your goal. :

     
  • RE: SQL Server Security

    Steve J, your article is an excellent compilation of resources about security. I will be assimilating them soon into my heap....

    Tim C.

    //Will write code for food

    One Windows to rule them...

  • RE: Worst Security hole I have ever seen

    Thanks David, but there are too many things I do not understand. I am a nuts and

    bolts person, and like to truly understand how the internals of things work....

  • RE: Worst Security hole I have ever seen

    Thanks Brian for allaying some of my worries. I am in Davids boat, a developer

    who has often had to pull double duty as a DBA. Unlike the DBA wannabe...

  • RE: vb/t-sql and arrays?

    As an alternative, you can use OPENXML to insert multiple rows with one procedure call.

    Tim C.

    //Will write code for food

    One Windows to rule them all, One Windows to find them,

    One...

  • RE: sp_OACreate returns Access is Denied

    I am in total agreement with you Brian, I was just trying to state that many

    dbas / developers have written procedures that call procedures in master that

    public does...

  • RE: sp_OACreate returns Access is Denied

    Script ONE - create the DB and user

     
    
    CREATE DATABASE [foo] ON (
    NAME = N'foo_Data',
    FILENAME = N'D:\Program Files\Microsoft SQL Server\MSSQL\data\foo_Data.MDF' ,
    SIZE = 1, FILEGROWTH...
  • RE: sp_OACreate returns Access is Denied

    Most procedures in master do have public access, but many do not.

    Take for example :

    
    
    sp_helprotect sp_addlogin
    GO

    sp_helprotect sp_OACreate
    GO

    sp_helprotect xp_cmdshell
    GO

    Outputs :

  • RE: sp_OACreate returns Access is Denied

    Oops, posted my last post before I saw brians reply. Look forward to your article as this is going to have many design implications on databases, more than I can...

  • RE: sp_OACreate returns Access is Denied

    What it does is force you to be more careful with your security. As most

    databases are created as dbo, and the owner is typically sa, then the default

    rights...

Viewing 15 posts - 151 through 165 (of 251 total)