Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2001-07-16 : 08:43:20
|
| Ngo-cho writes "When I run the following query in Query Analyzer, all the rows are returned including the computed data, but if I run it using a DTS package, only 12 rows are returned. The computed data is not returned. What might be the reason.Please advice.SELECTC.LOGIN,A.NAME ANAME,E.NAME ENAME,A.DESC_TEXT,A.X_SFA_ANT_START_DT,A.X_SFA_RATE_PER_HOUR,B.FCST_REVN, D.NAME DNAMEFROMS_EMPLOYEE C,S_OPTY A,S_ORG_EXT E,S_OPTY_POSTN B,S_STG DWHERE A.ROW_ID = B.OPTY_ID ANDC.ROW_ID= A.CREATED_BY ANDD.ROW_ID=A.CURR_STG_ID ANDA.PR_DEPT_OU_ID=E.ROW_IDORDER BY D.NAME DESCCOMPUTE SUM(B.FCST_REVN) BY D.NAMECOMPUTE SUM(B.FCST_REVN)" |
|
|
|
|
|