Forum Replies Created

Viewing 15 posts - 91 through 105 (of 244 total)

  • RE: Dedicated Administrator Connection

    jim.powers (6/11/2008)


    ...The problem is that this process is locking up the server to the point that enterprise mangler can't get connected to see what is going on.

    I would like to...


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Converting mixed negative and positive decimal values all to positive.

    The ABS function returns all values as positive. Syntax: [Code]ABS(arg)[/Code]


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Checking for Overlap in Date Ranges

    Thanks, all.


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Checking for Overlap in Date Ranges

    [Quote]Goodguy, I know my code fails on one of those tests but I kept the date manipulation as per original logic. I don't know why but seems he is intentionally...


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Checking for Overlap in Date Ranges

    FORMULA#1 - BARRY

    Select Room

    From Rooms R

    WHERE Not Exists

    (

    Select * from ReservationRooms RR

    Where R.Room = RR.ResRoom

    And CHECKINDATE < @DATEOUT

    And...


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Error while altering table

    Remove the quotes around the zeros.

    [Code]ADD column1 money NUlL DEFAULT 0,

    column2 int NUlL DEFAULT 0,

    column3 money NUlL DEFAULT 0[/Code]


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Get Overlapping Date Ranges

    Thanks, both of you. GSquared, your solution is more accurate.


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: How to log (and retrieve) users activity

    I decided against triggers and instead will extend all my INSERT and UPDATE statements to include the app.user.name and date.time values for the InsertedBy and InsertedOn columns which I can...


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: update query issue.

    What about [Code]UPDATE inventory SET iLease = ABS(iLease - 1)[/Code]


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Login

    [Quote]I am notr getting clear with the difference between a login, user and a role.[/Quote]

    A LOGIN is an account that allows you to connect to a specified instance of SQL...


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: How to log (and retrieve) users activity

    Thanks, I think I figured out the solution I need.


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: How to log (and retrieve) users activity

    Phew, this is more complicated than I'd bargained for. No, the INSERT, UPDATE, DELETE statements are not executed via sprocs but via ADO in VB6 instead.

    My thinking was to...


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Pros & Cons of Windows vs Mixed Authentication

    Thanks to all those who responded.


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Find database tables and coloumns

    Pardon me if I sound a bit junior, but depending on why it is required, wouldn't it be a good idea to simply generate a table script to get all...


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Permissions for Public Role

    Shouldn't that make it obvious that the Public role has no rights beyond SELECT?


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

Viewing 15 posts - 91 through 105 (of 244 total)