2013-02-08 22 views
0

我编写了可以从头到尾(所有可能的值)进行良好测试的SQL代码,但是当向Excel生成报告时弹出错误(“”不是有效的浮点值)。实际上,我的值都不是有效的浮点值,它只是一个列表。我有后处理,所以它不涉及任何宏。我如何克服这个错误,真正的问题是什么?在SQL相当简单:在质量中心生成Excel报告时出错

SELECT 
run1.rn_run_name, 
cycle.cy_cycle, 
test.ts_name, 
STEP.ST_STEP_NAME, 
STEP.ST_STATUS 
FROM (
SELECT 
* 
from run 
where rownum =1 order by RN_EXECUTION_DATE desc 
) run1 
left join cycle on cycle.cy_cycle_id = run1.rn_cycle_id 
left join step on run1.rn_run_id = step.st_run_id 
left join test on step.st_test_id = ts_test_id 
where cycle.cy_cycle_id is not null 
and run1.rn_run_id is not null 
and step.st_test_id is not null 
and ts_test_id is not null 
order by 
cycle.cy_cycle, 
test.ts_name, 
run1.rn_run_name, 
STEP.ST_STEP_ORDER 
+0

固定能否请你分享查询的结果? – 2013-02-10 08:20:44

+0

QC不允许您从测试查询页面轻松复制和粘贴。在今天寻找解决方法,发现我的公司得到并推动QC的更新,解决了这个问题。 – lpeckazca 2013-02-12 16:43:43

回答

0

此问题是由ALM补丁12