Using a result (table from sas entrep guide) into sas miner - sas

In SAS Miner, I would like to use a result/table from SAS entrep guide.
So far, I managed to save this result/table into sas studios.
In SAS Miner, when creating a data source, I have to select a SAS table or a metadata repository. I select Sas table then I am stuck as I can not access my source
It would be great if you know know how to solve this?

Save the data set into a location available to both the server used by Enterprise Guide and SAS Enterprise Miner. If they are the same server, great, put it into an easy to get to location.
After that, you will need to create a library reference to that location in Enterprise Miner. The specifics of that I am unsure of (I don't have a version to play with), but you administrator should be able to do that for you. If not, that's a good question for SAS Tech Support (which is free since you are a client).

Related

Dependencies between SAS EG and Microsoft Office

I am currently researching the dependencies between SAS EG v. 9.4 and Microsoft Office.
More specific, if we upgrade from Office 2016 to Office 365, would then the following commands still work in SAS EG as designed:
libname excel_file.xlsx
proc export excel_file.xlsx
ods excel
Also, is the SAS Microsoft Office AddIn relevant for the above mentioned commands? Or does SAS EG need this AddIn to run them?
Thank you for your help!
I have used SAS EG with O365 with no issues. O365 just lets you have the most current Office but still installs Office, mostly, like normal. It also provides web services that are very useful.
I have used O365 for years with no issues. SAS Office Add-In surfaces the SAS Integration Technologies in Office and puts a nice UI on them in the ribbon. It is not a dependency for any of the commands you list. It just makes working with SAS, from Office, easier.
SAS Integration Technologies is required for EG so you have that. SAS Access to PC File Formats is also something you have already.
Also, see this if you want to use the Office REST web services:
https://blogs.sas.com/content/sasdummy/2020/07/09/sas-programming-office-365-onedrive/

driver to support to read or write to HIVE from c++ code

I have core product built on c++ which uses RDBMS namely oracle DB. We are in phase to Big data enable on this product with access to Hive tables. I know from apache spark we have libraries to directly have access to hive tables.
Now with C++ being base language, what could be possible ways to read/write data on hive on cloudera?
Note: Not looking for pull data to/fro from hive and RDBMS or vice versa.(sqoop). Looking to read or fire query execution on hive itself.
Thanks in advance.
This is what worked out for me.
1. Install ODBC driver ODBC
2. Go through Installation guide Installation Guide
3. Open the Project in Visual cpp++ and execute .

SAS Visual Analytics report automating creation process

Is there a way to automate the creation of a report in VA ?
I'm asking if it's possible to use a coding syntax to produce a report instead of doing it on the report builder page. I don't mind interacting with the metadata server on which resides Visual Analytics. I just need to create a report by coding instead of doing it visually.
This is very difficult, You will have to:
Reverse engineer the XML generated by an existing report object,
Write the XML of your own VA report,
Find a way to save the XML you generate to SAS Contents Server.

Configure OLEDB Data Source in Coldfusion

I need to access a 3rd Party software database using their propriety OLEDB connector. I've installed their OLEDB software and can confirm using Regedit.
When trying to create a Data Source in the Coldfusion Administrator, I found that the OLEDB data sources have been deprecated since coldfusion MX.
On searching further, I haven't been able to find any alternative way of configuring the data source.
Can you please advise how can I access the OLEDB data source?
Any links or direction would be really appreciated.
I believe you will have to use the 'Other' option value in the datasource driver dropdown. and then provide repective info in the following page. They say that all the OLEDB drivers that might exist will not be listed in the drop down and hence you will have to o the manual way of things.
Further details here" http://www.rvclandtrust.org/CFDOCS/Advanced_ColdFusion_Administration/datasources_ADV_MJS2.html

How to use Talend to read/write SAS files without installing a SAS server?

I'd like to use Talend to manipulate SAS files; however, the SAS plugins require some sort of server authentication. I don't have a SAS server on my machine and I'd like not to install one if possible. Is there a way to read/write SAS files without installing the server?
Not easily! The simplest way would be to purchase a copy of BASE SAS and use it as a local server - see thread below.
How can I read a SAS dataset?
A cheaper way would be to purchase a licensed version of the WPS product:
http://en.wikipedia.org/wiki/World_Programming_System
A free, but less reliable way would be to use an open source reader, such as:
http://kasper.eobjects.org/2011/06/sassyreader-open-source-reader-of-sas.html
hope this helps.