创建空间网络时出现SQL语法错误

时间:2013-03-26 23:56:51

标签: sql oracle networking spatial oracle-spatial

我正在尝试使用FME Desktop导入到Oracle DB中的shapefile(表示街道中心线)创建空间网络。 “CENTRELINES”空间对象包含一个GEOM列,我想将其用作网络分析的基础,以便根据路线距离作为成本属性在养老院(点)之间分配救护设施(点)。关于在Oracle Spatial中解决这个病态问题的方法的任何建议都会受到欢迎,但主要的问题是我是SQL的初学者。我使用Oracle的documentation编写了以下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 / end:

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

感谢您的帮助!

1 个答案:

答案 0 :(得分:3)

documentation所述,SQL * Plus execute命令通常必须在一行中输入:

  

如果由于PL / SQL而导致EXECUTE命令无法放在一行上   语句,使用SQL * Plus延续字符(连字符)。

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

BEGIN
    SDO_NET.CREATE_LRS_NETWORK(;
END;
/

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

第二个问题可能表明你不止一次运行短版本,虽然它不是我非常熟悉的功能;但与初始的分号错误无关。 (另外,不需要使用分号来结束 SQL 语句,但这是另一个细节......)。