diff options
Diffstat (limited to 'src/xsd/sql/SqlFileSpec.xsd')
| -rw-r--r-- | src/xsd/sql/SqlFileSpec.xsd | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/src/xsd/sql/SqlFileSpec.xsd b/src/xsd/sql/SqlFileSpec.xsd new file mode 100644 index 00000000..ad624ea4 --- /dev/null +++ b/src/xsd/sql/SqlFileSpec.xsd | |||
| @@ -0,0 +1,68 @@ | |||
| 1 | <element name="SqlFileSpec"> | ||
| 2 | <annotation> | ||
| 3 | <documentation>File specification for a Sql database.</documentation> | ||
| 4 | </annotation> | ||
| 5 | <complexType> | ||
| 6 | <choice minOccurs="0" maxOccurs="unbounded"> | ||
| 7 | <any namespace="##other" processContents="lax"> | ||
| 8 | <annotation> | ||
| 9 | <documentation> | ||
| 10 | Extensibility point in the WiX XML Schema. Schema extensions can register additional | ||
| 11 | elements at this point in the schema. | ||
| 12 | </documentation> | ||
| 13 | </annotation> | ||
| 14 | </any> | ||
| 15 | </choice> | ||
| 16 | <attribute name="Id" use="required" type="xs:string"> | ||
| 17 | <annotation> | ||
| 18 | <documentation>Unique identifier in your installation package for this file specification. If an Id is not provided, one will generated for you.</documentation> | ||
| 19 | </annotation> | ||
| 20 | </attribute> | ||
| 21 | <attribute name="Name" type="xs:string"> | ||
| 22 | <annotation> | ||
| 23 | <documentation>Specifies the logical name for the database file.</documentation> | ||
| 24 | </annotation> | ||
| 25 | </attribute> | ||
| 26 | <attribute name="Filename" use="required" type="xs:string"> | ||
| 27 | <annotation> | ||
| 28 | <documentation>Specifies the operating-system file name for the database file.</documentation> | ||
| 29 | </annotation> | ||
| 30 | </attribute> | ||
| 31 | <attribute name="Size" type="xs:string"> | ||
| 32 | <annotation> | ||
| 33 | <documentation> | ||
| 34 | Specifies the size of the database file. The GB, MB and KB suffixes can be used to specify gigabytes, | ||
| 35 | megabytes or kilobytes. The default is megabytes if no suffix is specified. When a Size is not | ||
| 36 | supplied for a database file, SQL Server uses the size of the primary file in the model database. | ||
| 37 | </documentation> | ||
| 38 | </annotation> | ||
| 39 | </attribute> | ||
| 40 | <attribute name="MaxSize" type="xs:string"> | ||
| 41 | <annotation> | ||
| 42 | <documentation> | ||
| 43 | Specifies the maximum size to which the database file can grow. The GB, MB and KB suffixes can be used to | ||
| 44 | to specify gigabytes, megabytes or kilobytes. The default is megabytes if no suffix is specified. If | ||
| 45 | MaxSize is not specified, the file will grow until the disk is full. | ||
| 46 | </documentation> | ||
| 47 | </annotation> | ||
| 48 | </attribute> | ||
| 49 | <attribute name="GrowthSize" type="xs:string"> | ||
| 50 | <annotation> | ||
| 51 | <documentation> | ||
| 52 | Specifies the growth increment of the database file. The GB, MB and KB and % suffixes can be used to | ||
| 53 | specify gigabytes, megabytes, kilobytes or a percentage of the current file size to grow. The default is | ||
| 54 | megabytes if no suffix is specified. The default value is 10% if GrowthSize is not specified, and the | ||
| 55 | minimum value is 64 KB. The GrowthSize setting for a file cannot exceed the MaxSize setting. | ||
| 56 | </documentation> | ||
| 57 | </annotation> | ||
| 58 | </attribute> | ||
| 59 | <anyAttribute namespace="##other" processContents="lax"> | ||
| 60 | <annotation> | ||
| 61 | <documentation> | ||
| 62 | Extensibility point in the WiX XML Schema. Schema extensions can register additional | ||
| 63 | attributes at this point in the schema. | ||
| 64 | </documentation> | ||
| 65 | </annotation> | ||
| 66 | </anyAttribute> | ||
| 67 | </complexType> | ||
| 68 | </element> \ No newline at end of file | ||
