Search Results

66 résultats trouvés Page 4 / 7
FAQ
Voir

table (Required Parameter)

Specifies the table that contains the audio input. Long form: table={name="table-name"} Shortcut form: table="table-name". The castable value can be one or more of the following: caslib, computedOnDemand, computedVars, computedVarsProgram, dataSourceOptions, importOptions, name (required), single...

FAQ
Voir

table.importOptions

Specifies the settings for reading a table from a data source. Alias: import. For more information about specifying the importOptions parameter, see the common importOptions parameter (Appendix A: Common Parameters).

FAQ
Voir

table.whereTable.importOptions

Specifies the settings for reading a table from a data source. Alias: import. For more information about specifying the importOptions parameter, see the common importOptions parameter (Appendix A: Common Parameters).

FAQ
Voir

What is the function of the 'importOptions' parameter?

The 'importOptions' parameter specifies the settings for reading a table from a data source, including the 'fileType' (like CSV, EXCEL, PARQUET) and other file-type-specific parameters.

Code SAS
Voir

Managing VARCHAR data in CAS

proc casutil; load casdata="saswork_table_with_char300.sas7bdat" casout="cas_table_with_varchar" outcaslib="casuser" importoptions=(filetype="basesas", dtm="auto", debug="dmsglvli", varcharconversion=16) ; run; quit; title;

Code SAS
Voir

Character to VARCHAR type conversion when loading into CAS

proc casutil; load casdata="table_with_char.sas7bdat" incaslib="sas7bdat" outcaslib="casuser" casout="table_with_varchar" importoptions=(filetype="basesas" varcharconversion=16) replace; run;

Code SAS
Voir

Greenplum Data Connector

/* Créer une table CAS factice pour simuler des données Greenplum */ data casuser.greenplum_sales; input OrderID Product $ Quantity Price; datalines; 101 A 10 25.50 102 B 5 10.00 103 A 12 25.50 104 C 8 50.25 105 B 7 10.00 ; run; /* Supposons que greenplumcaslib e...

Code SAS
Voir

Load a CSV File from a GZ Archive

/* Préparation requise par l'utilisateur: */ /* Créez un fichier 'sample_data.csv' avec le contenu suivant: */ /* id,name,value */ /* 1,Alice,100 */ /* 2,Bob,150 */ /* 3,Charlie,200 */ /* Compressez-le: `gzip sample_data.csv` pour obtenir 'sample_data.csv.gz'. */ /* Placez 'sample_data.csv.gz' da...

Code SAS
Voir

Load a CSV File from a GZ Archive

/* Préparation requise par l'utilisateur: */ /* Créez un fichier 'sample_data_semicolon.csv' avec le contenu suivant: */ /* id;name;value */ /* 1;Alice;100 */ /* 2;Bob;150 */ /* 3;Charlie,200 */ /* Compressez-le: `gzip sample_data_semicolon.csv` pour obtenir 'sample_data_semicolon.csv.gz'. */ /* ...

Code SAS
Voir

Load a CSV File from a GZ Archive

/* Préparation requise par l'utilisateur: */ /* Créez un fichier 'sample_data_large.csv' avec le même contenu que 'sample_data.csv' ou plus de lignes. */ /* Compressez-le: `gzip sample_data_large.csv` pour obtenir 'sample_data_large.csv.gz'. */ /* Placez 'sample_data_large.csv.gz' dans le réperto...