Viewing 15 posts - 211 through 225 (of 366 total)
this should do the trick
hth Mike
drop table #tests
create table #tests
(
valone char(20),
valtwo char(20)
)
insert into #tests values('12345','23456')
insert into #tests values('22345','33456')
insert into #tests values('32345','43456')
insert into #tests values('42345','53456')
--data is stored in one var sum...
June 30, 2005 at 6:37 pm
Hi could you post you DDL. Do you need to convert the data to a decimal and move it somewhere? Or do you just need the output in a decimal...
June 30, 2005 at 5:18 pm
Thanks for the lift. There is always a bright side. In this case it is the red circle on my forhead from beating it aganist a brick wall for two...
June 29, 2005 at 10:11 pm
What is the relationship between t1 and t2? What is the business rule for determining the value in t2?
Mike
June 27, 2005 at 6:55 am
Check BOL, under syscomments. You can also include comments when you create/modify your tables in SQL statements in QA or enterprise manager. These comments are not compiled and do not add to the...
June 27, 2005 at 4:46 am
My test results match govinn's. Test results for both programs set to not start timer until after value is loaded into the array. (in both cases it requires about 0.0156 seconds to...
June 25, 2005 at 11:56 am
The format YYYYMMDD hh:mm:ss (no quotes) is the iso standard for dates. Frank posted a great link for information on dates. But I did not find it (must be located...
June 23, 2005 at 2:49 pm
Vasc your alg runs fast in the VB version searching for numbers ending in 4 or 9. I should have know that the inability to have a combination of numbers that ended 4 or...
June 23, 2005 at 1:21 pm
Vasc there is no possible combination of numbers from this data set that be summed so that the digit in the units column (right most column) can end in either...
June 23, 2005 at 12:53 pm
Thanks, I am still using Visual Studio 6.0 and have not changed to C#. But I should be able to translate this to either c++ or VB.
June 22, 2005 at 12:42 pm
The value of the return code should not have a meaning. Always return +1."
Knowing if a procedure passed or failed is vauable information and has a definite meaning.
June 22, 2005 at 11:47 am
June 22, 2005 at 11:41 am
govinn I would like to see the C# code if possible thanks.
Mike
June 22, 2005 at 11:21 am
Michelle you do WHY very well. and if you are like my daughter once started getting to the end is a long...
June 22, 2005 at 5:20 am
Thanks Farrell I have been trying to follow this thread and keep having to work. Having it all in one place is a blessing.
It would appear that Vasc has...
June 21, 2005 at 10:14 pm
Viewing 15 posts - 211 through 225 (of 366 total)