Forum Replies Created

Viewing 15 posts - 10,711 through 10,725 (of 18,923 total)

  • RE: Developers and DBAs

    Lol, Can I send him my resume.

     

    I think you should have charged 300$ plus overtime .

     

    Message me if you find another one like this...

  • RE: Random Select Query

    Ya this one was far from simple.

    Please post back if you have any questions :

    --BASE TABLE

    DECLARE @Jokes TABLE (UserID INTCatID INTJokeID INT)

  • RE: What is your ideal employer?

    Thanx for the comments... I also work for a great small compagny.  I love the fact that I have plenty of time to hand out here and not hear a...

  • RE: Developers and DBAs

    Any experiences you'd like to share?

  • RE: database desing ,?

    Lol, there are so many problems with this design that I wouldn't know where to start... but that's another question for another day !

  • RE: Query help

    HTH.

  • RE: Get last record only if multiple exist

    Good point.  My Versions was assuming you needed all employees at the same time.

  • RE: populating a column by calling a function

    I thaught about this but it's not accepted.

    ALTER TABLE tableName

    ADD Whatever INT CONSTRAINT D_CName DEFAULT (dbo.fn_name(ColName))

    How about adding the column, then running the update statement right after?

  • RE: Get last record only if multiple exist

    Select * from dbo.Employees E1 WHERE not EXISTS (SELECT * FROM dbo.Employees E2 WHERE E2.HireDate > E1.HireDate AND E1.LName = E2.LName AND E1.FName  =E2.Fname.... /* keep going untill you have...

  • RE: Query help

    Select Part_no, MAX(Description) AS Description, SUM(Qty) AS Total FROM dbo.InvMgmt GROUP BY Part_no

    This assumes that descriptions is not a very important field in that report, cause you can never be...

  • RE: Query help

    On second thaught, you'd be better off gettting the product info from the products table so that you get consistent results.

  • RE: Data design/ datetime

    You can always have 2 unbound text field.  Then on the after_update event (I'm from an Access Background ), validate that you have...

  • RE: Eliminating Cursors

    OK, glad to know I'm not going crazy .

    No if only those voices could shut up .

  • RE: Developers and DBAs

    Like me... only 2.? years experiences and never had troubles like this one .

  • RE: Data design/ datetime

    Smalldatetime has a precision to the minute (can't store seconds).

     

    Datetime has precision up to 1/333 th of  second (3ms).

     

    I think smalldatetime is the best choice in this case.  The users...

Viewing 15 posts - 10,711 through 10,725 (of 18,923 total)