I do not save the grid, but rather in the sql window (vs the output window) I do
file, save as, and since I will always be putting it back to toad anyway I save
it as .txt, give it a name and file it in the appropriate folder.
But I understand you may be referring to something else.
On Mon, Aug 30, 2010 at 9:00 AM, Moe Joelson
wrote:
Message from: mojo
Good morning,
I am new to Toad and have a question about the behavior when saving insert
statements using commercial v9.7.2.5 under Windows 7.
When I try to save the Grid output as Insert Statements, the resulting saved
file has single quotes around all data, including numbers.
ex:
SET DEFINE OFF;
Insert into MYTABLE
(NUMBER1, TYPE, NUMBER2, NUMBER3, NUMBER4, NUMBER5)
Values
('10', 'long', '280497', '2432',
'0', '26000000');
When using the same version of Toad under Windows XP I was not seeing this
problem.
ex:
SET DEFINE OFF;
Insert into MYTABLE
(NUMBER1, TYPE, NUMBER2, NUMBER3, NUMBER4, NUMBER5)
Values
(32, 'long', 280753, 2418, 4552900, 0);
Is there a setting I missed somewhere? Thanks!
Historical Messages
Author: Moe Joelson
Date: Mon Aug 30 07:00:59 PDT 2010
Good morning,
I am new to Toad and have a question about the behavior when saving insert
statements using commercial v9.7.2.5 under Windows 7.
When I try to save the Grid output as Insert Statements, the resulting saved
file has single quotes around all data, including numbers.
ex:
SET DEFINE OFF;
Insert into MYTABLE
(NUMBER1, TYPE, NUMBER2, NUMBER3, NUMBER4, NUMBER5)
Values
('10', 'long', '280497', '2432',
'0', '26000000');
When using the same version of Toad under Windows XP I was not seeing this
problem.
ex:
SET DEFINE OFF;
Insert into MYTABLE
(NUMBER1, TYPE, NUMBER2, NUMBER3, NUMBER4, NUMBER5)
Values
(32, 'long', 280753, 2418, 4552900, 0);
Is there a setting I missed somewhere? Thanks!
__
_______________________________________