Specifies the size of the SPD Server data partition file.
Valid in: | SPD Server |
DATA step and PROC step | |
Default: | 128 megabytes |
Range: | 16 to 8,796,093,022,207 megabytes |
Restriction: | Specify a data partition file size only when creating a new table. |
Interaction: | The PARTSIZE= table option overrides the SPDSIZE= macro variable. For more information, see SPDSSIZE= Macro Variable. |
Tip: | When you update data, a smaller partition size provides the best performance. For example, when you update a value, SPD Server locates the appropriate partition, modifies the value, and rewrites all replications of the partition. Because each update requires that the partition be rewritten, it is recommended that you perform updates only occasionally or set a small partition size if you are planning to update the data frequently. |
proc sql; create table spdscen.hr80spds (partsize=250) . . .; quit;