Search Results

30 résultats trouvés Page 2 / 3
FAQ
Voir

table - whereTable - dataSourceOptions={adls_noreq-parameters | bigquery-parameters | cas_noreq-parameters | clouddex-parameters | db2-parameters | dnfs-parameters | esp-parameters | fedsvr-parameters | gcs_noreq-parameters | hadoop-parameters | hana-parameters | impala-parameters | informix-parameters | jdbc-parameters | mongodb-parameters | mysql-parameters | odbc-parameters | oracle-parameters | path-parameters | postgres-parameters | redshift-parameters | s3-parameters | sapiq-parameters | sforce-parameters | singlestore_standard-parameters | snowflake-parameters | spark-parameters | spde-parameters | sqlserver-parameters | ss_noreq-parameters | teradata-parameters | vertica-parameters | yellowbrick-parameters}

specifies data source options. Aliases: options, dataSource For more information about specifying the dataSourceOptions parameter, see the common dataSourceOptions parameter (Appendix A: Common Parameters).

Code SAS
Voir

Joining Tables from Multiple Caslibs with fedSql.execDirect

This example shows how to join three external tables using the fedSql.execDirect action. It combines a Base SAS dataset named Customers, an SPD Engine dataset named Products, and a Teradata table named Sales. The example explains how to assign caslibs to data sources and how to identify tables in...

Code SAS
Voir

Sans titre

This SAS script demonstrates the use of the Teradata Parallel Transporter (TPT) option with SAS/ACCESS to bulk load data into a Teradata database, using both PROC APPEND and PROC SQL.

Code SAS
Voir

Connect Anything: How to Leverage SAS Engines for Teradata, XML, and Web-Ready JSON

This document provides detailed examples on how to use SAS engines to interact with various external data formats, including CSV, Excel files, databases (Teradata), XML, and JSON, within the SAS Viya 4 and SAS Studio environment.

Code SAS
Voir

Bypass the Parser: How to Run Native Database SQL Directly in SAS Viya

This example illustrates how to use the CONNECTION TO component of the FROM clause of a FedSQL SELECT statement to select data, allowing explicit pass-through of database-specific SQL queries to an external data source (here simulated by Teradata) via a caslib.

Code SAS
Voir

Sans titre

/* Specify the DBMS engine, for example: ODBC */ %let srctype=odbc; %let cas_session = mysess; %let caslib_alias = datalib; /*Specify connection parameters within a string Edit the below variables with the required DBMS-specific conection options Also, specify such variables within the CONNOP...

Code SAS
Voir

Loading Data with CAS Connector (Example)

/* Specify the DBMS engine, for example: ODBC */ %let srctype=odbc; %let cas_session = mysess; %let caslib_alias = datalib; /*Specify connection parameters within a string Edit the below variables with the required DBMS-specific conection options Also, specify such variables within the CONNOP...

Code SAS
Voir

Dynamic SAS Library Management: Using %SYSFUNC and Macros for Automated Access

libname mytddata teradata server=mytera user=myid password=mypw; data mytddata.grades; input student $ test1 test2 final; datalines; Fred 66 80 70 Wilma 97 91 98 ; proc datasets library=mytddata; run; quit;

Code SAS
Voir

Dynamic SAS Library Management: Using %SYSFUNC and Macros for Automated Access

libname target 'library-path'; libname mytddata teradata server=mytera user=myid password=mypw; data target.highgrades / view=target.highgrades; set mytddata.grades; where final gt 80; run; proc...

Code SAS
Voir

Connect Anything: How to Leverage SAS Engines for Teradata, XML, and Web-Ready JSON

libname mytddata teradata server=mytera user=myid password=mypw; data mytddata.grades; input student $ test1 test2 final; datalines; Fred 66 80 70 Wilma 97 91 98 ; proc datasets library=mytddata; run; quit;