This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rsubmit wait=no macvar=check_test; | |
proc freq data=table.large_table; | |
table variable_levels/out=check; | |
run; | |
endrsubmit; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$conn = new COM("ADODB.Connection"); | |
$conn->Open('Provider=sas.IOMProvider.9.3;User ID=user;Password=pass;Data Source="";SAS Machine DNS Name=my.server.com;SAS Port=8591;SAS Protocol=2'); | |
$cmd = new COM("ADODB.Command"); | |
$cmd->ActiveConnection = $conn; | |
$cmd->CommandType = 1; | |
$cmd->CommandText = 'libname foo "/my/path"'; | |
$cmd->Execute(); |