07-08-2020
SvenWagner
Fluorite | Level 6
Member since
10-05-2018
- 12 Posts
- 0 Likes Given
- 0 Solutions
- 1 Likes Received
-
Latest posts by SvenWagner
Subject Views Posted 1797 06-29-2020 07:14 AM 1933 06-26-2020 08:30 AM 10164 07-08-2019 02:09 AM 10261 07-05-2019 03:11 AM 10277 07-05-2019 02:02 AM 1895 06-04-2019 08:46 AM 1287 02-11-2019 03:08 AM 1475 12-13-2018 08:05 AM 903 10-11-2018 01:38 AM 2059 10-10-2018 02:19 AM -
Activity Feed for SvenWagner
- Posted Re: Troubles accessing DB2 on SAS Programming. 06-29-2020 07:14 AM
- Posted Troubles accessing DB2 on SAS Programming. 06-26-2020 08:30 AM
- Posted Re: Reading Parquet-Files in SAS 9.4 on SAS Data Management. 07-08-2019 02:09 AM
- Posted Re: Reading Parquet-Files in SAS 9.4 on SAS Data Management. 07-05-2019 03:11 AM
- Posted Reading Parquet-Files in SAS 9.4 on SAS Data Management. 07-05-2019 02:02 AM
- Posted PROC SQL & MAX on SAS Procedures. 06-04-2019 08:46 AM
- Got a Like for Re: Restore SPDE Data Sets. 02-11-2019 06:34 AM
- Posted Re: Restore SPDE Data Sets on SAS Data Management. 02-11-2019 03:08 AM
- Posted Restore SPDE Data Sets on SAS Data Management. 12-13-2018 08:05 AM
- Posted Re: PROC FedSQL with stochastic results on SAS Procedures. 10-11-2018 01:38 AM
- Posted Re: Erratic proc fedsql behaviour on SAS Procedures. 10-10-2018 02:19 AM
- Posted Re: Erratic proc fedsql behaviour on SAS Procedures. 10-09-2018 02:14 AM
- Posted PROC FedSQL with stochastic results on SAS Procedures. 10-05-2018 04:12 AM
-
My Liked Posts
Subject Likes Posted 1 02-11-2019 03:08 AM
06-29-2020
07:14 AM
Hi, the query is a quite simple DATA STEP as you can see in the attachment. Btw.: There is some more / other database return in the log than I would expect, or I'm used to. Do you have any clue what this means? Best, Sven
... View more
06-26-2020
08:30 AM
Hi, I'm running SAS 9.4 (M3) on a Windows 2016 Server. When accessing a DB2 Database (DB2 v11.1.4.5) on AIX 7.2 via SAS/ACCESS Interface to DB2, I get the following warning message: WARNING: During read: [IBM][CLI Driver] CLI0182W Fractional truncation.SQLSTATE=01S07 : [IBM][CLI Driver] CLI0182W Fractional truncation. (The message is repeated some more times. ) Occasionally, an additional error message occurs: ERROR: An error occurred when translating from one type of character encoding to another. I guess, the messages have something to do with encoding issues. While our database uses UTF-8, SAS uses WLATIN1. But changing the encoding within SAS is not an option. A "special feature": The same code sometimes results in warnings or error message, and sometimes it does not. I found http://support.sas.com/kb/64/478.html, but this does not work within our environment. Has anybody an idea how to solve this issue?
... View more
07-08-2019
02:09 AM
SAS/ACCESS Interface to ODBC is licensed and also installed, but neither the Hadoop package nor the Impala package.
... View more
07-05-2019
03:11 AM
The background is that a colleague uses Spark and Scala for producing data, and he stores his results within Parquet files. I think, his setup comprises a hive server but he does not use Hadoop. So far, his recommendation is to use a Hive or a MapR Drill ODBC driver to get access to the data via SAS/ACCESS Interface to ODBC. And my question is, if someone has experience in doing so, or if someone knows an alternative (without having SAS Hadoop). Sorry for the amateurish explanation, but I am not a techie at all, and I do not have a good understanding of the technical infrastructure.
... View more
07-05-2019
02:02 AM
Hi, I use SAS 9.4 TS Level 1M3. Does anyone know a solution for reading Parquet files (https://en.wikipedia.org/wiki/Apache_Parquet ) by using SAS without having SAS/ACCESS Interface to Hadoop? Thanks a lot, Sven
... View more
06-04-2019
08:46 AM
Hi, I came across with a statement like the following: proc sql;
create table tmp01 as
select col1
, col2
, max(col3, col4) as MaxVar
from ...
;
quit; So, MAX is used without GROUP BY seemingly as a (row wise) scalar function like within a DATA STEP. Being familiar with "native SQL", I would have expected something like CASE WHEN ELSE END or GREATEST instead of MAX, but the results seem to be the same. Hence, my question is: Can I really use MAX within PROC SQL as it is done within the example? (Correct results also might by coincidence.) Thanks for your help, Sven
... View more
02-11-2019
03:08 AM
1 Like
Obviously, it is possible to spare the path statments for data files, indexes and metadata. If you do so, there is no path entry within the mdf-files and you can move the directory using Windows drag & drop. Certainly not what originally is intended by SPDE, but it works. 🙂
... View more
12-13-2018
08:05 AM
Hi, I stored some data using SPDE in a Windows environment. Unfortunately, a colleague moved and renamed folders. Now, I can see the SPDE files using the Windows Explorer, but SAS does not find them. I already found the following statement in the SPDE Reference: 'CAUTION: Do not rename, copy, or move an SPD Engine data set or its component files using operating system commands.' Anyway, I ask if there is a possibility to restore my data. In my opinion, it is necessary to update the SPDE metadata, but I don't know how to do so. Any ideas? Many thanks, Sven
... View more
10-10-2018
02:19 AM
Thanks, but unfortunately, your proposal does not fix the problem in my case. Please, would you take a look at my post https://communities.sas.com/t5/SAS-Procedures/PROC-FedSQL-with-stochastic-results/td-p/501773 ? The problem is the same with und without using SPDE.
... View more
10-09-2018
02:14 AM
Dear Sylvia, what is the syntax for doing so? Would you mind to give an coding example? Thanks!
... View more
10-05-2018
04:12 AM
Hi all, I use SAS 9.4 TS Level 1M3, W32_ES08R2 Windows NT Server-Version, on a x64-based MS Windows Server 2008 R2 Enterprise operating system. When using PROC FedSQL with multiple joins and sub-queries, I sometimes get stochastic results. So far, I think to have figured out the source in the order of table processing (-> execution plan using PROC FedSQL _method; ). But: A procedure delivering results depending on the execution plan is not very useful. Has anyone made comparable experiences? Best, Sven
... View more