0

我正在尝试从使用 FME Desktop 导入 Oracle DB 的 shapefile(代表街道中心线)创建空间网络。“CENTRELINES”空间对象包含一个 GEOM 列,我想将其用作网络分析的基础,以根据路线距离作为成本属性在养老院(点)之间分配救护车设施(点)。欢迎任何有关在 Oracle Spatial 中解决这个病态问题的方法的建议,但主要问题是我是 SQL 的初学者。我使用 Oracle 的文档编写了以下 SQL 语句:

-- create an LRS geometry network
EXEC SDO_NET.CREATE_LRS_NETWORK(
  'LRS_net', -- network name
  'CENTRELINES', -- LRS geometry table name
  'GEOM', -- LRS geometry column name
  1, -- number of hierarchy levels
  FALSE, -- directed link?
  TRUE -- node with cost?
  );

该脚本输出以下内容:

Error starting at line 2 in command:
EXEC SDO_NET.CREATE_LRS_NETWORK(
Error report:
ORA-06550: line 1, column 34:
PLS-00103: Encountered the symbol ";" when expecting one of the following:

   ( ) - + case mod new not null <an identifier>
   <a double-quoted delimited-identifier> <a bind variable>
   table continue avg count current exists max min prior sql
   stddev sum variance execute multiset the both leading
   trailing forall merge year month day hour minute second
   timezone_hour timezone_minute timezone_region timezone_abbr
   time timestamp interval date
   <a string literal with character set specification>
06550. 00000 -  "line %s, column %s:\n%s"
*Cause:    Usually a PL/SQL compilation error.
*Action:

...

Error starting at line 9 in command:
)
Error report:
Unknown Command

我了解第 2 行正在产生错误:

PLS-00103: Encountered the symbol ";" when expecting one of the following...

鉴于结束 SQL 查询需要分号,为什么这是个问题?

编辑:以下脚本通过添加开始/结束生成网络:

begin
SDO_NET.CREATE_LRS_NETWORK(
  'LRS_net', 
  'CENTRELINES', 
  'GEOM', 
  1, 
  FALSE, 
  TRUE);
end;

谢谢您的帮助!

4

1 回答 1

3

文档中所述,SQL*Plusexecute命令通常必须在一行中输入:

如果您的 EXECUTE 命令由于 PL/SQL 语句而不能放在一行,请使用 SQL*Plus 继续字符(连字符)。

它实际上试图在幕后运行的是翻译为

BEGIN
    SDO_NET.CREATE_LRS_NETWORK(;
END;
/

...这(可能显然是这样写的)不是有效的 PL/SQL。与空间调用本身无关。如果您确实想将其拆分为多行,则可以使用显式begin/end而不是简写exec

第二个问题可能表明您不止一次运行了短版本,尽管它不是我非常熟悉的功能;但与最初的分号错误无关。(此外,结束SQL语句并不严格需要分号,但这是另一个细节......)。

于 2013-03-27T00:31:37.047 回答