Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
april24
Starting Member
5 Posts |
Posted - 2015-04-01 : 04:00:22
|
Hello,I am migrating a SQLPLUS script to SQL server.In this script we are inserting several rows into the database.Before insertion SET DEFINE OFF; has been put so that it doesn't prompt for a value at each occurrence of '&'.Now executing it on SQL server I get error -'DEFINE' is not a recognized SET option.Please suggest what will be the equivalent in SQL server for this command.Thanks. |
|
gbritton
Master Smack Fu Yak Hacker
2780 Posts |
Posted - 2015-04-01 : 09:09:14
|
SQL will not prompt at any occurrence of '&'. So the option is not necessary. OTOH, perhaps you should post some snippets so we can take a look at them. |
|
|
|
|
|