Viewing 15 posts - 9,016 through 9,030 (of 10,144 total)
Hi Waykna
There's no ORDER BY clause in the query - so FIRST and LAST will be indiscriminate. In any case, looking at the code, I'm pretty sure that this can...
January 3, 2009 at 4:09 am
Hi Phil
Have you tried server linking with your spreadsheets? You can SELECT, UPDATE and INSERT almost as if it were a native table. There are limitations, but there's always...
January 2, 2009 at 10:40 am
Jack Corbett (1/2/2009)
January 2, 2009 at 10:30 am
dhaval.samaranayeke (1/2/2009)
I guess you are taking my sentence all wrong. I am trying to remove gaps within a column which has incremental values and not that of...
January 2, 2009 at 10:18 am
jamie.loy (1/2/2009)
Ok, I am an idiot...I never would have caught that! You are the bomb Chris. Now I will need...
January 2, 2009 at 10:05 am
Luke L (1/2/2009)
Almost everyone who isn't a member of the MS marketing team will continue to complain about Vista (with the sole exception in the whole world probably still being...
January 2, 2009 at 9:53 am
jamie.loy (1/2/2009)
set objrs = objdb.execute("select DISTINCT * from...
January 2, 2009 at 9:38 am
Christopher Stobbs (1/2/2009)
I guess it just depends how he wants his output?Does he want a value of length 16 or is the max length 16?!?
Could be either! It's far from...
January 2, 2009 at 9:31 am
Christopher Stobbs (1/2/2009)
could you give us some examples please.What would you expect to be returned from the following
12345678 = 0000000012345678?
123 = 00000000123 or 0000000000000123
0 = 000000000 or 0 or 0000000000000000
etc...
Thanks
Chris
Or...
January 2, 2009 at 9:24 am
larsosman56 (1/2/2009)
January 2, 2009 at 9:16 am
dhaval.samaranayeke (1/2/2009)
So here we can nullify all the identity entries and rebuilt them.
How? Aren't identity columns usually set up with uniqueness?
Why? The sole purpose of an identity column is to...
January 2, 2009 at 9:03 am
Hi Preet
Discussion is always good. Taking your points one by one:
i) with Adi's solution, will the DATEPART not be evaluated in any case ? You cannot assume SQL will short...
January 2, 2009 at 7:45 am
Hi Phil
For future reference, you will find this exercise a heck of a lot easier if you work with normalised data...
[font="Courier New"]SELECT d.ProductId, d.OrderId, d.ElementNum, x.ElementName, d.CostValue
FROM (SELECT ProductId, OrderId,
CAST(number+((BKT-1)*8)...
January 2, 2009 at 7:26 am
Viewing 15 posts - 9,016 through 9,030 (of 10,144 total)