Monday
SASKiwi
PROC Star
Member since
06-23-2011
- 10,483 Posts
- 2,334 Likes Given
- 904 Solutions
- 4,462 Likes Received
-
Latest posts by SASKiwi
Subject Views Posted 12 yesterday 55 Monday 222 Monday 291 Friday 170 Friday 134 Friday 119 Wednesday 395 a week ago 330 a week ago 236 a week ago -
Activity Feed for SASKiwi
- Liked What’s New in SAS®9 M9 Q&A, Slides, and On-Demand Recording for MargaretC. yesterday
- Posted Re: ODBC Connection from SAS 9.4 M6 on Windows Server Cannot see tables. on Administration and Deployment. yesterday
- Liked Re: csv import fails to open all records in file for Amir. Tuesday
- Posted Re: EG 8.x does not prompt you to run selection on SAS Enterprise Guide. Monday
- Posted Re: csv import fails to open all records in file on SAS Programming. Monday
- Liked Fun w/SAS ODS Graphics: Happy Mother's Day Wreath (Scatter + Text Plots) for tc. Sunday
- Got a Like for Re: Error---ODS EXCEL with now option. Friday
- Posted Re: Error---ODS EXCEL with now option on SAS Programming. Friday
- Posted Re: mirgration to Windows11 on SAS Programming. Friday
- Posted Re: Management Console: Delays with Dependent Flows (Advise if you experience and how resolve) on Administration and Deployment. Friday
- Posted Re: Access to SAS Library on SAS Enterprise Guide. Wednesday
- Got a Like for Re: Taking log time to get the table from SQl synapse table , also consuming too much space. Wednesday
- Posted Re: Taking log time to get the table from SQl synapse table , also consuming too much space on SAS Programming. a week ago
- Liked Re: Is there a way to start a control-M job via a SAS Code for Kurt_Bremser. a week ago
- Got a Like for Re: Connect to SAS Grid with SAS ODBC Driver. a week ago
- Posted Re: Is there a way to start a control-M job via a SAS Code on SAS Enterprise Guide. a week ago
- Got a Like for Re: Connect to SAS Grid with SAS ODBC Driver. a week ago
- Got a Like for Re: Connect to SAS Grid with SAS ODBC Driver. a week ago
- Got a Like for Re: Updating the contents of SAS EG Project (*.egp) in batch mode. a week ago
- Posted Re: Examples for THREADED_APPS on SAS Programming. a week ago
-
-
My Liked Posts
Subject Likes Posted 2 Friday 1 a week ago 1 2 weeks ago 1 2 weeks ago 1 2 weeks ago -
My Library Contributions
Subject Likes Author Latest Post 101 18
yesterday
@npm_sas - What database are you connecting to? For some databases like SQL Server you can use IWA - Integrated Windows Authentication (Trusted Connection=yes) like this and avoid any user credentials:
libname SQLSRVR odbc noprompt = "server=SQLServerName;DRIVER=SQL Server Native Client 11.0;Trusted Connection=yes" DATABASE = MyDatabase schema = dbo;
... View more
Monday
I'm pretty sure that functionality was dropped from EG 7.x. If no node / code is selected all nodes / all code is run. If a certain node(s) / code block is selected then only the selections are run. There is now only the one option on the Run icon:
... View more
Monday
Open the CSV file in a text editor like Notepad++ and look for malformed rows. Embedded carriage returns in text columns is one reason why this can occur. If the CSV is small and there are only a few rows to fix then manually editing it then reimporting it is the quickest approach.
... View more
Friday
2 Likes
From the documentation:
In SAS 9.4M5, the ODS EXCEL statement supports the following options:
TAGATTR= style attribute
SHEET_INTERVAL= NOW
You need to be using at least 9.4M5 to use NOW.
... View more
Friday
I recommend trying the CPORT and CIMPORT procedures for migrating SAS catalogs. What issues do you have with SAS programs? These are normally just stored in text files so there should be any problems reading them on your Windows 11 PC.
... View more
Friday
What scheduling server are you using? If you are using Platform Process Manager / LSF, then there are housekeeping tasks you can do to see if that reduces delays. It's also possible you might be reaching some configuration limit on simultaneous flows and new ones only start when current ones complete. I recommend you open a Tech Support track to investigate further.
... View more
Wednesday
We need evidence as to what is the problem otherwise we can only guess - get one of the users for whom the autoexec is not working to run the same LIBNAME manually. Post the complete SAS log including any errors.
... View more
a week ago
1 Like
You will get more useful answers if you post the actual SAS log of your program including notes rather than posting code that contains a syntax error.
... View more
a week ago
Are you running PROC MEANS directly against a DBMS table as the option only applies to external database tables?
... View more
a week ago
I would first suggest you check what your SAS Viya session setting is for this option:
proc options option = dbclient_max_bytes;
run;
Then try increasing it 1 byte at a time.
There maybe other encoding options worth trying like:
data MyOraTable (encoding = wlatin1);
set MyOraLIB.MyOraTable;
run;
... View more
2 weeks ago
If that is where EG is installed, that is where you schedule your EG project.
... View more
2 weeks ago
1 Like
Here is a link to the doc explaining how you schedule EG projects. Note EG projects can only be scheduled on the computer where EG is installed. You could also use the help menu in your version of EG - search for automating projects.
... View more
2 weeks ago
This is the answer I got when I asked Google:
You will need to provde more details regarding your specific requirements.
... View more