Forum Replies Created

Viewing 15 posts - 3,346 through 3,360 (of 6,104 total)

  • RE: Using fully qualified names

    Yes, if you alias the user to dbo it'll try dbo.object first. Easy way to test: create a stored procedure in Northwind owned by dbo and given execute to public.

    CREATE...

    K. Brian Kelley
    @kbriankelley

  • RE: Security related to DTS/RS

    More information on how to setup and secure Reporting Services can be found on Microsoft's site:

    Reporting Services Technical Resources

    You'll probably be most interested in the whitepapers...

    K. Brian Kelley
    @kbriankelley

  • RE: Good SQL (SQL Server) Book

    Some other books for writing T-SQL:

    Advanced Transact-SQL for SQL Server 2000, Itzik Ben-Gan and Dr. Tom Moreau

    The Guru's Guide to Transact-SQL, Ken Henderson

    Professional SQL Server 2000 Programming, Robert Vieira

    K. Brian Kelley
    @kbriankelley

  • RE: Using fully qualified names

    Oops. I missed the part of the database name. Kathi and Yelena are correct, of course. If you're within the database, you're fine, otherwise you do need to specify the...

    K. Brian Kelley
    @kbriankelley

  • RE: Using fully qualified names

    The whole catch on names involves how SQL Server does the lookup. If no owner is specified, SQL Server looks for objects in the following manner:

    1) user.object

    2) dbo.object

    Therefore, if the...

    K. Brian Kelley
    @kbriankelley

  • RE: Default table permissions

    Not in SQL Server 2000 unless you are speaking of the db_datareader and db_datawriter fixed database roles.

    Based on the PASS briefing, you will be able to assign security at...

    K. Brian Kelley
    @kbriankelley

  • RE: Login Permission

    See answer here: Administration post

    K. Brian Kelley
    @kbriankelley

  • RE: Login Permission

    The user account used to run SQL Server must have sysadmin fixed server role membership, as does the user account used to run SQL Server Agent. What a lot of...

    K. Brian Kelley
    @kbriankelley

  • RE: SQL Server 7.0 Denial of Service vulnerability

    Quite a few shops still do. There's been no announced word from Microsoft on this one, so we'll just have to keep our eyes open.

    K. Brian Kelley
    @kbriankelley

  • RE: SQLServerCentral.com Is Moving

    Awesome news!!!

    K. Brian Kelley
    @kbriankelley

  • RE: WITH ENCRYPTION

    Hi Denis,

    If when a stored procedure or view is created WITh ENCRYPTION, this technique won't work. However, with the ability to decrypt stored procedures so readily available, it doesn't do...

    K. Brian Kelley
    @kbriankelley

  • RE: Auditing with SQL Profiler

    It was in SQL Server 7 by granting permissions to certain stored procedures. However, that mechanism was unsupported. I've not seen a similar write-up in SQL Server 2000. The problem...

    K. Brian Kelley
    @kbriankelley

  • RE: Security Account Delegation

    and everything is set right in AD? Account can be delegated and the SQL Server (actual computer) is authorized to delegate?

    K. Brian Kelley
    @kbriankelley

  • RE: DBA techniques

    That's a great book. Thanks, Steve, for mentioning it. You can't go wrong with that one. I wish a lot more administrators would read that or equivalent material.

    K. Brian Kelley
    @kbriankelley

  • RE: "library not registered"

    Sorry, I didn't go back and look at the post, I had put servername and instancename in between greaterthan and lessthan signs, making it look HTML code...

    try:

    Servername\Instancename

    (local) will try and...

    K. Brian Kelley
    @kbriankelley

Viewing 15 posts - 3,346 through 3,360 (of 6,104 total)