views:

23

answers:

1

Hi, I have taken a sql dump as script from Jdeveloper and trying to create database at other place by running the oracle sql script through command line. When executing, at some place in the script, it is prompting for values like "Enter value for time:" and "Enter Value for p:" what could be the reason and how to prevent this when taking dump. Thanks in advance.

-indra

+2  A: 

Add this to the beginning of the scripts:

   set define off;

Your data probably contains the '&' character and it want to substitute input variables.

Diederik Hoogenboom
indra