| Author |
Message |
COMTIBoy
Joined: 28 May 2010 Posts: 2
|
Posted: Fri May 28, 2010 6:06 pm Post subject: Need to generate an XML column that is 1 GB for testing |
|
|
I'm evaluating the SQL Data Generator and was curious to know if there were any settings to control the size of data generated for the column?. I'm using the XML generator and don't see anywhere where to specify the size of the size. BY default it seems to generate 1000 rows and two columns. The XML contains string with random text. I'd like to be able to generate the string to be 1 GB in size.
Any tips greatly appreciated. |
|
| Back to top |
|
 |
Brian Donahue
Joined: 23 Aug 2004 Posts: 6369 Location: Red Gate Software
|
Posted: Mon May 31, 2010 2:39 pm Post subject: |
|
|
Hello,
It is possible to customize one of the generic generators and specify a minimum and maximum size for the data. In my tests, however, taking it up to 1GB tended to run SQL Data Generator out of memory, so it may not be practical to do. But if you want to try...
- Open program files\Red Gate\sql data generator 1\userexample\config\XmlGenerator.xml in Notepad.
- Modify it to add the "MinLength" and "MaxLength" properties as below.
- Save it as Program Files\Red Gate\SQL Data Generator 1\Config\BigXmlGenerator.xml
- When you re-launch SDG, your XML columns will have an "Example" category with BigXmlGenerator in it.
Here is the code for BigXmlGenerator:
| Code: |
<?xml version="1.0" encoding="iso-8859-1"?>
<generators>
<generator
type="RedGate.SQLDataGenerator.Generators.Others.XMLGenerator"
name="BigXMLGenerator"
description="XMLGenerator up to 1GB"
category="Example"
>
<property name="Unique">true</property>
<property name="MinLength">500000000</property>
<property name="MaxLength">1000000000</property>
<matches field="Col_1" score="1" minlen="5"/>
<type sqlType="xml"/>
</generator>
</generators> |
_________________ Brian Donahue
Technical Support
Red Gate Software Ltd.
44 (0)870 160 0037 ext 8521
US and CAN 1-866-RED GATE ext 8521 |
|
| Back to top |
|
 |
COMTIBoy
Joined: 28 May 2010 Posts: 2
|
Posted: Tue Jun 01, 2010 6:53 pm Post subject: |
|
|
Thanks for the tips.
Yes, you were right , in that it didn't work (got the oom ) .
I tried 500MB and 100MB and that still seemed to fail.
Oh well  |
|
| Back to top |
|
 |
Brian Donahue
Joined: 23 Aug 2004 Posts: 6369 Location: Red Gate Software
|
|
| Back to top |
|
 |
|
|
All times are GMT + 1 Hour
|
| Page 1 of 1 |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group