Viewing 15 posts - 76 through 90 (of 243 total)
Thank you Suresh.B for catching the other possible area.
June 23, 2008 at 5:33 am
[Quote]if(@history)<>''
Begin[/Quote]
Since @history is declared as varchar, the Not Equal To operator '<>' is having trouble evaluating it.
June 23, 2008 at 3:13 am
Jeff Moden (6/21/2008)
karthikeyan (6/20/2008)
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...
June 22, 2008 at 9:09 am
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...
June 20, 2008 at 5:59 am
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...
June 20, 2008 at 12:29 am
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...
June 19, 2008 at 8:58 am
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...
June 19, 2008 at 7:52 am
[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...
June 19, 2008 at 1:03 am
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,...
June 18, 2008 at 2:59 am
Thanks again, Jo, I had a look at it.
June 18, 2008 at 12:48 am
I am still waiting for help on how to implement error handling in SQL Server 2000 and how to intercept those errors in VB6.
June 17, 2008 at 6:11 am
Thank you for trying to help, Jo, but, no offence intended, I must confess that I am none the wiser after reading your post.
June 16, 2008 at 2:34 am
Asking as a Newbie, with no offence intended, wouldn't a function serve a better purpose to do the same thing?
June 12, 2008 at 8:21 am
Viewing 15 posts - 76 through 90 (of 243 total)