| Valid in: | |
| Default: | none |
| Requirements: | To create a data set in Aster nCluster
without error, you must either set DIMENSION= YES (LIBNAME or data
set option) or specify a partition key in the PARTITION_KEY= (LIBNAME
or data set) option.
You must enclose the column name in quotation marks. |
| Data source: | Aster nCluster |
| See: | DIMENSION= LIBNAME option, , DIMENSION= data set option, PARTITION_KEY= data set option |
LIBNAME sasflt 'SAS-library'; LIBNAME net_air ASTER user=louis pwd=fromage server=air2 database=flights; data net_air.flightschedule(dimension=yes); set sasflt. flightschedule; run;
LIBNAME sasflt 'SAS-library';
LIBNAME net_air ASTER user=louis pwd=fromage server=air2
database=flights dimension=yes;
data net_air.flightschedule;
set sasflt. flightschedule;
run;LIBNAME sasflt 'SAS-library';
LIBNAME net_air ASTER user=louis pwd=fromage server=air2 database=flights;
data net_air.flightschedule(dbtype=(flightnumber=integer)
partition_key='flightnumber');
set sasflt. flightschedule;
run;