1

我有一个奇怪的问题。我正在从 bat 文件中执行此操作

cd C:\LabWorks
dbisqlc -c "DSN=Labworksdb;UID=users;PWD=labworks" select PONUMBER, orderstatus, writeback, shipdate from orderinfo, shippinginfo where orderinfo.custid = '52467' and orderinfo.orderid = shippinginfo.orderid and shippinginfo.shipid > '505800'; Output to \\dp-2\ftp\Nanipics\NP_Status.csv

该查询在我的数据库工具中运行良好,但是当我运行 bat 文件时,它会更改我的查询,然后显然会出错。见附图。在此处输入图像描述

有任何想法吗?

4

1 回答 1

2

您没有引用传递给dbisqlc. 用双引号将查询括起来。

dbisqlc -c "DSN=Labworksdb;UID=users;PWD=labworks" "select PONUMBER, orderstatus, writeback, shipdate from orderinfo, shippinginfo where orderinfo.custid = '52467' and orderinfo.orderid = shippinginfo.orderid and shippinginfo.shipid > '505800'; Output to \\dp-2\ftp\Nanipics\NP_Status.csv"

没有这个,命令解释器会认为你正在将输出重定向到文件“505800”,然后执行一个名为Output.

于 2013-10-23T23:52:31.330 回答