Forum Replies Created

Viewing 15 posts - 76 through 90 (of 244 total)

  • RE: pls help...need guidance in this stored procedure

    Thank you Suresh.B for catching the other possible area.


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: pls help...need guidance in this stored procedure

    [Quote]if(@history)<>''

    Begin[/Quote]

    Since @history is declared as varchar, the Not Equal To operator '<>' is having trouble evaluating it.


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: PLEASE HELP

    Jeff Moden (6/21/2008)


    karthikeyan (6/20/2008)


    sqldba,

    first of all try yourself, otherwise you can't learn anything new. Try to write your own SP. Becuase it is a basic one, without knowing how to...


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: PLEASE HELP

    SQLDBA: You can use the substring function and the semicolon delimiter to "cut up" the string and read the values into an array.

    Karthik: With all due respect, sometimes the tone...


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: The sp_OACreat

    Runs fine on mine with Master DB.


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: eliminating duplicates

    Although you have stated you do not wish to go through intermediate tables, the most suitable solution for you would be to select distinct rows from TAB into a TEMP...


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Getting the actual cost of current ingredients

    Thanks, Matt for the nudge. I think I was one of the first members to read that article by Jeff in January but to be entirely honest, it did not...


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Getting the actual cost of current ingredients

    Thanks, Tom; it looks like it is going to be a horrible challenge. But I would still be grateful to be shown how to code the first part of the...


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Getting the actual cost of current ingredients

    [Quote]THood:

    So say the moxt recent 30 buns cost 3 each, and the 30 before that cost 2. Total cost for all these is 30x3 + 30x2 = 150.

    But you've only...


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Getting the actual cost of current ingredients

    Maybe a script of the tables in question will help me get some answers:

    [Code]CREATE TABLE [dbo].[MENU] (

    [FOODID] [numeric](10, 0) NOT NULL ,

    [DESC] [varchar] (100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,

    [COST] [numeric](15,...


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Handling errors in TSQL and intercepting them in VB

    Thanks again, Jo, I had a look at it.


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Handling errors in TSQL and intercepting them in VB

    I am still waiting for help on how to implement error handling in SQL Server 2000 and how to intercept those errors in VB6.


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Julian Timestamp

    Please take a look at this:


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: Handling errors in TSQL and intercepting them in VB

    Thank you for trying to help, Jo, but, no offence intended, I must confess that I am none the wiser after reading your post.


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

  • RE: seting a variale while a stored procedure is run

    Asking as a Newbie, with no offence intended, wouldn't a function serve a better purpose to do the same thing?


    Regards,

    goodguy

    Experience is a bad teacher whose exams precede its lessons

Viewing 15 posts - 76 through 90 (of 244 total)