Viewing 15 posts - 45,406 through 45,420 (of 59,095 total)
Correct... and a 30% discount rate would mean you only pay 70% of the unit price and that's the other reason for the 1... you subtract 30% (0.3) from 1...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 30, 2009 at 12:24 pm
Thanks, Martin... if someone doesn't beat me to it, I'll give it a whirl after work.
--Jeff Moden
Change is inevitable... Change for the better is not.
January 30, 2009 at 9:43 am
jgrubb (1/30/2009)
Lynn Pettis (1/29/2009)
Jeff Moden (1/29/2009)
jgrubb (1/29/2009)
Completely Off-Topic, I wanted to see who started the Pork Chop thing,Heh... do you really have to wonder? ๐
Cardinal Moden himself,...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 30, 2009 at 9:41 am
Sounds like a lot of fun but, consider this, would you like it if your post and name showed up on a "Twit List". Bad enough they show up...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 30, 2009 at 9:25 am
Thanks for the detailed explanation... I'll take a look tonight after I get home.
--Jeff Moden
Change is inevitable... Change for the better is not.
January 30, 2009 at 6:04 am
See the following...
http://www.sqlservercentral.com/articles/Test+Data/61572/
Better question would be, what are you really concatenating and why?
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2009 at 11:56 pm
You can shrink temp DB through the GUI without bouncing the server or the service.
My question would be... what's causing it to grow to 50GB? There's definately something like...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2009 at 11:52 pm
krayknot (1/29/2009)
PhilPacha (1/28/2009)
Given the name of a stored procedure, is there an โefficientโ way to determine...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2009 at 11:44 pm
rog pike (1/29/2009)
nabajyoti.b (1/28/2009)
the record that appears first in order
select emp_id,emp_name,emp_address,rank
from
(select emp_id,emp_name,emp_address,
row_number()over(partition by emp_address order by emp_name) as rank
from ##emp) as A
where rank=1
order by emp_address,emp_name
emp_id emp_name ...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2009 at 10:56 pm
AFCC Inc. Com (1/29/2009)
Thanks,Is the UnitPriceDiscount a percentage or a number ?
select 10 *((1.0)-4)* 6
or
select 10 *((1.0)-.25)* 6
Heh... you tell us... you're the one that can see the table....
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2009 at 10:53 pm
Tim Wilson-Brown (1/29/2009)
Lowell (1/28/2009)
in that case, it is impossible, unless you modify your table to include an identity column.
Which is not reliable either - what if the identity values wrap?
There...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2009 at 10:17 pm
The 1.0 is to implicity force the calculation to a FLOAT datatype if everything turns out to be an INTEGER. The rest is a matter of simple substitution and...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2009 at 10:11 pm
I'll trade ya... ๐ Tell me the business reason behind this and I'll give you some code to do it. The reason for the "trade" is, I'm writting...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2009 at 10:09 pm
I recently ran into a similar problem (this morning, in fact). The backups to disk had taken up all the harddrive space because they had a problem getting moved...
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2009 at 9:59 pm
Gift Peddie (1/29/2009)
Oracle does not sell developer edition...
Correct... instead, they give it away as a free download. ๐
--Jeff Moden
Change is inevitable... Change for the better is not.
January 29, 2009 at 9:52 pm
Viewing 15 posts - 45,406 through 45,420 (of 59,095 total)