Forum Replies Created

Viewing 15 posts - 16,021 through 16,035 (of 39,901 total)

  • RE: Bad Passwords

    Apologies on the year. I've corrected that.

    I should have noted this is OS dependent. My apologies for that. From the explanation URL: NULL if the CHECK_POLICY or CHECK_EXPIRATION is OFF...

  • RE: Licensing In SQL Server 2008 R2

    AFAIK, from the licensing docs, if you have 2 sockets in your server, you need two licenses. You cannot set affinity for one processor according to the Microsoft documentation.

    Page 4...

  • RE: Treat People Like People

    Thanks, Rafael. Kind words.

  • RE: Are the posted questions getting worse?

    GilaMonster (5/25/2011)


    Grant and I are talking Execution plans for a whole day at PASS Summit this year.

    You are all coming? Right?

    Is that for sure? Did they pick pre-cons?

    Very tempting...

  • RE: Data loss from trigger firing before its previous execution is done.

    I tend to agree with GSquared, you're tackling this the wrong way and asking for problems. I'd move this to a set based storage, where you are keeping the various...

  • RE: Why so few topics on SQL Azure - Is anybody using it?

    I think the cost has deterred much experimentation. There are some MVPs doing work and Grant Fritchey is testing some stuff. I'll see if we can't get some articles going.

    Grant's...

  • RE: Lock Escalation

    I've searched a dozen links and I don't find "partition lock" as a term in BOL. The idea is there, and even in the ALTER TABLE options, it does say...

  • RE: Local administrators

    By default, they have rights on the machine, but you can set up folders that don't allow the administrator access. An admin can take access, but that is noted and...

  • RE: Treat People Like People

    Thanks for the notes, and glad you liked it.

    I know that Millenials is a generalization, and certainly people feel differently with that group. It encompasses people of a variety of...

  • RE: Content Missing

    I think that's a IE issue. I don't see that at all in Firefox. I'll have someone look at it

  • RE: Nominations open for Exceptional DBA of 2011

    LOL, maybe ask your boss and see what he/she thinks.

    I'll have enough apps to review for Exceptional. I'd hate to think how many I'd get for acceptable :w00t:

  • RE: Content Missing

    I don't see anything weird there. Is there something I'm missing? Can someone post a screen shot.

  • RE: From Great Idea to End Result

    Peter Maloof (5/24/2011)


    EdVassie (5/24/2011)


    The agile methodology using Scrum (and its variations) is by far the most effective way I have seen for delivering useable value to the business.

    I'm not a...

  • RE: trace?

    create table UserTracking

    ( trackid int identity(1,1)

    , userlogin varchar(200)

    , logintime datetime

    )

    go

    grant insert on UserTracking to Public

    Change your trigger:

    CREATE TRIGGER connection_info_trigger

    ON ALL SERVER

    FOR LOGON

    AS

    BEGIN

    insert UserTracking (userlogin, logintime)

    ...

  • RE: A couple of questions about SQL 2008 Express

    Amazing amount of stuff in RTF. The Word files are XML storage, AFAIK, so you can even store those, but you need an interpreter to render them back.

    The transformation to...

Viewing 15 posts - 16,021 through 16,035 (of 39,901 total)