Viewing 7 posts - 1 through 7 (of 7 total)
the access db is in local lan how can i reach by internet? i can run dts package on web server but how can i find the access db?
Can...
November 8, 2005 at 10:54 am
I've solved with the sql statement thanks for your help
I think that it is better work with TSQL when is possible, that manipulate data on client side; both for performance...
August 26, 2005 at 1:30 pm
Hello Chris
below there is table and data
the query is this i just need to add a "%sale" fields to the results
this field is calculate from tot_draw/unsold
SELECT sum(draw)...
August 26, 2005 at 6:57 am
thanks for your suggest
now all rows are selectd but i still have the divide by zero error
287 row(s) affected)
Server: Msg 8134, Level 16, State 1, Line 2
Divide by...
August 26, 2005 at 5:47 am
hello thanks for your fast reply
i've added the row
draw / sum(returns + short + notdeliver+damaged) AS '%sale'
but i get this error
Server: Msg 8134, Level 16, State...
August 26, 2005 at 1:03 am
I modify the query and put CASE WHEN condition for periods i need
SELECT x.iss_no, x.pro_cod, x.pro_name, x.distrib, x.dis_dat, sum(ret_qty) AS unsold,
CASE
WHEN DIS_DAT BETWEEN '01/05/2003' AND '05/31/2003'
THEN X.DISTRIB else 0...
August 12, 2004 at 8:06 am
Viewing 7 posts - 1 through 7 (of 7 total)