Forum Replies Created

Viewing 15 posts - 556 through 570 (of 2,469 total)

  • RE: Stored Procedure

    ...better alternative!!!







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Stored Procedure

    first guess I'd venture is "legacy database"....







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Stored Procedure

    If those are the only 3 columns you need to query, you could always do an "if statement"...

    IF (SELECT COUNT(*) FROM myTable WHERE code_1 = '404') >= 1
     ...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: dts import is truncating a text field

    Kate - please follow this link to read about how another member faced the same problem and resolved it!







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: The Debacle Continues

    Don't know about Sears but I want the "records to show" that of all the companies I've ever had to deal with SYMANTEC HAS GOT TO BE THE VERY WORST!!!







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Query using today.

    ...or...

    select * from myTable where datediff(day, getdate(), dateColumn) > 0
    







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: How to encorporate IF

    For my money I'd go with Sergiy - why bother to count # of rows - just sum(rmstranamt) should be adequate...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Trigger to find caller stored procedure

    If the amount column is to be accurate only upto 2 decimals wouldn't it be easier to just alter the column for precision ?!?!

    Another...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Christmas Competition

    Thanks Mike - and 192nd out of 20,000 does make me feel better!

    Went back for a last dekko at Santa and saw a top score of 1900 - tell me...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Christmas Competition

    Also forgot to add that today is my b'day - which started becoming really depressing after I turned ## - - so thanks...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Christmas Competition

    WOW!!! - what a nice way to start the new year - splly. since I'd forgotten all about Santa and kicking him across rooftops - I did give him a...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Pay for Performance

    When I finished college (in India) my father gave me 3 choices - study further, get a job or get married - "but your mooching days are over"!!! I got...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: First Poll for 2006

    "Work is the curse of the drinking classes!"

    "The only way to get rid of a temptation is to yield to it!"

    "Success is the ability to go from one failure to...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Problem selecting records of a type in a group using a max()

    This what you want..?!

    select max(id) as id, max(type) as type, grouping_id, max(urn) as urn
    from @x where type = 'A' group by grouping_id 
    

    ps:what's an "urn" - is it the...







    **ASCII stupid question, get a stupid ANSI !!!**

  • RE: Loop through each record and then each field within each record

    Maybe I'm looking at this at the end of a long day so don't really understand what you want to do...I could give you some "concepts" to mull on and...







    **ASCII stupid question, get a stupid ANSI !!!**

Viewing 15 posts - 556 through 570 (of 2,469 total)