<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>thesasuser Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>thesasuser Tracker</description>
    <pubDate>Sun, 19 Apr 2026 06:29:47 GMT</pubDate>
    <dc:date>2026-04-19T06:29:47Z</dc:date>
    <item>
      <title>Sending emails from SAS Viay4 on AWS using Oauth2 and Microsoft graph and Excel files as attachment</title>
      <link>https://communities.sas.com/t5/SAS-Viya/Sending-emails-from-SAS-Viay4-on-AWS-using-Oauth2-and-Microsoft/m-p/985956#M3054</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;I have been trying to send emails with excel files as attachment using SAS code from SAS Viya4 on AWS.&lt;BR /&gt;Sending of email using Oauth2 and Microsoft graph is the method we are expected to use.&lt;BR /&gt;(SMTP approach is no more allowed).&lt;BR /&gt;One can send emails but when an excel file is attached, it file is restricted to 270 bytes. The file is simply unusable.&lt;BR /&gt;The relevant portion of the code are attached.&lt;BR /&gt;There are no error in the log and get the message "NOTE : 202 ACCEPTED.&lt;BR /&gt;Request the community for guidance.&lt;BR /&gt;The code is as given below.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
/* Step 1: Base64 encode the XLSX file */
filename myfile "/mnt/viya-share/data/test/cars.xlsx";
filename b64file temp;

data _null_;
    infile myfile recfm=n;
    file b64file lrecl=32767;
    input byte $char1.;
    put byte $base64x1. @@;  
run;
/* Step 2: Build JSON email payload */
filename mailbdy temp;

/* Write JSON header */
data _null_;
    file mailbdy;
    put '{';
    put '  "message": {';
    put '    "subject": "Test email from SAS Viya 4",';
    put '    "body": { "contentType": "Text", "content": "Hello from SAS Viya!" },';
    put '    "toRecipients": [ { "emailAddress": { "address": "recipient@example.com" } } ],';
    put '    "attachments": [';
    put '      {';
    put '        "@odata.type": "#microsoft.graph.fileAttachment",';
    put '        "name": "cars.xlsx",';
    put '        "contentType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",';
    put '        "contentBytes": "';
run;

/* Append Base64 content directly */
data _null_;
    infile b64file lrecl=32767;
    file mailbdy mod;
    input;
    put _infile_;
run;

/* Close JSON */
data _null_;
    file mailbdy mod;
    put '"';
    put '      }';
    put '    ]';
    put '  },';
    put '  "saveToSentItems": "true"';
    put '}';
run;

/* Send via microsoft Graph */
/* Step 3: Send email via Microsoft Graph */
filename sendresp temp;

proc http
    url="https://graph.microsoft.com/v1.0/users/sender@example.com/sendMail"
    method="POST"
    in=mailbdy
    out=sendresp;
    headers
        "Authorization"="Bearer &amp;amp;access_token"
        "Content-Type"="application/json";
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2026 21:11:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Viya/Sending-emails-from-SAS-Viay4-on-AWS-using-Oauth2-and-Microsoft/m-p/985956#M3054</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2026-04-03T21:11:29Z</dc:date>
    </item>
    <item>
      <title>Anonymous http -post request to SAS Viya4</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Anonymous-http-post-request-to-SAS-Viya4/m-p/983870#M30702</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;We are using SAS 9.4 environment to process http post request from within the organization.&lt;BR /&gt;These requests are anonymous (i.e.,no user authentication needed). The response (json/xml) is generally delivered in&amp;nbsp; 500-700 milli-Seconds.&lt;BR /&gt;The requests originate from non SAS processes.&lt;BR /&gt;We are exploring the possibility of moving this process to Viya4 and have set a test process&amp;nbsp; using postman. This is a two step process. Authentication itself takes 2+ seconds. &lt;BR /&gt;Wondering if there is a way to by pass the authentication. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Feb 2026 13:57:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Anonymous-http-post-request-to-SAS-Viya4/m-p/983870#M30702</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2026-02-23T13:57:53Z</dc:date>
    </item>
    <item>
      <title>Understanding the difference between TLS certificates in Viya</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Understanding-the-difference-between-TLS-certificates-in-Viya/m-p/983630#M30687</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;While working on configuration of SAS Viya4 for using customer provided ca certificates, I came across these terms.&lt;BR /&gt;trustedcerts.pem, sas-ingress-certificate.pem, sas-ingress.key and sas-ingress-CA-certificate.pem.&lt;BR /&gt;Wondering if some one can help me understand these terms?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Feb 2026 17:35:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Understanding-the-difference-between-TLS-certificates-in-Viya/m-p/983630#M30687</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2026-02-17T17:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: Error in SAS Viya4 on Openshift cluster using manual method</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Error-in-SAS-Viya4-on-Openshift-cluster-using-manual-method/m-p/983188#M30665</link>
      <description>&lt;P&gt;I chose to deploy using the deployment operator method as detailed here and it worked.&lt;BR /&gt;&lt;A href="https://documentation.sas.com/doc/en/sasadmincdc/v_062/dplyml0phy0dkr/titlepage.htm" target="_blank"&gt;SAS Help Center: SAS Viya Platform: Deployment Guide&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Feb 2026 18:01:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Error-in-SAS-Viya4-on-Openshift-cluster-using-manual-method/m-p/983188#M30665</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2026-02-07T18:01:59Z</dc:date>
    </item>
    <item>
      <title>Deploying sas-deployment-operator on Open Shift in namespace mode</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Deploying-sas-deployment-operator-on-Open-Shift-in-namespace/m-p/982723#M30625</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;We are exploring options to deploy SAS Viya 4 in a name space mode either manually or using deployment-operator/ SAS-Orchestration utility on a OpenShift Cluster.&lt;/P&gt;
&lt;P&gt;One thought is to deploy the deployment-operator in name space mode.&lt;BR /&gt;Wondering if anyone in the SAS community has experience in this and can share their thoughts?&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jan 2026 14:08:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Deploying-sas-deployment-operator-on-Open-Shift-in-namespace/m-p/982723#M30625</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2026-01-30T14:08:55Z</dc:date>
    </item>
    <item>
      <title>Error in SAS Viya4 on Openshift cluster using manual method</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Error-in-SAS-Viya4-on-Openshift-cluster-using-manual-method/m-p/982244#M30603</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;I have been trying to deploy SAS Viya4 on open shift using the manual method (&amp;nbsp;&lt;A href="https://documentation.sas.com/doc/en/itopscdc/v_068/dplyml0phy0dkr/p127f6y30iimr6n17x2xe9vlt54q.htm#p0n0x0jvog312an1wggpgnam1jsw" target="_blank"&gt;SAS Help Center: Deploy the Software&lt;/A&gt;&amp;nbsp;,&amp;nbsp;&lt;A href="https://learn.sas.com/course/view.php?id=6945" target="_blank"&gt;https://learn.sas.com/course/view.php?id=6945&lt;/A&gt;&amp;nbsp;)&lt;BR /&gt;I get stuck up at this step:&lt;BR /&gt;oc apply --selector="sas.com/admin=namespace" -f site.yaml --prune&lt;BR /&gt;The output says "error: no objects passed to apply"&lt;BR /&gt;Wondering if anybody can enlighten/guide on this?&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jan 2026 19:21:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Error-in-SAS-Viya4-on-Openshift-cluster-using-manual-method/m-p/982244#M30603</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2026-01-20T19:21:00Z</dc:date>
    </item>
    <item>
      <title>SAS Viy4 deployment using Kubernetes : Clusterwide and cluster local permissions.</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Viy4-deployment-using-Kubernetes-Clusterwide-and-cluster/m-p/982069#M30596</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;I am looking at the Deployment of SAS Viya4 on Open Shift using Kubernetes. (&lt;A href="https://go.documentation.sas.com/doc/en/itopscdc/v_056/dplyml0phy0dkr/p127f6y30iimr6n17x2xe9vlt54q.htm#p0n0x0jvog312an1wggpgnam1jsw" target="_blank"&gt;https://go.documentation.sas.com/doc/en/itopscdc/v_056/dplyml0phy0dkr/p127f6y30iimr6n17x2xe9vlt54q.htm#p0n0x0jvog312an1wggpgnam1jsw&lt;/A&gt; )&lt;BR /&gt;I am looking at the steps 3,4 and 5&lt;BR /&gt;Step (Steps 2 and 3) say "As an administrator with cluster permissions, run" &lt;BR /&gt;In another step (step 4) it says "As an administrator with local cluster permissions"&lt;BR /&gt;In yet another step (step 5) it says "As an administrator with namespace permissions, run ".&lt;BR /&gt;My question is are "&lt;STRONG&gt;administrators with cluster permission&lt;/STRONG&gt;" and "&lt;STRONG&gt;administrators with cluster local permissions&lt;/STRONG&gt;" different? &lt;/P&gt;</description>
      <pubDate>Fri, 16 Jan 2026 15:07:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/SAS-Viy4-deployment-using-Kubernetes-Clusterwide-and-cluster/m-p/982069#M30596</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2026-01-16T15:07:37Z</dc:date>
    </item>
    <item>
      <title>Latency numbers of On Prem SAS/ SAS Viya and On cloud SAS Viya on AWS</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Latency-numbers-of-On-Prem-SAS-SAS-Viya-and-On-cloud-SAS-Viya-on/m-p/981798#M30584</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;
&lt;P&gt;We are in the process of implementing SAS Viya in our organization. We have Oracle database on premises.&lt;/P&gt;
&lt;P&gt;The I/T department has a question on the latency numbers on&amp;nbsp; &amp;nbsp;premises and on cloud installation of Viya4 on AWS. In this context latency means a delay in the data transmission between on-prem and cloud causing our job or process run time to be slower&lt;BR /&gt;All I could find is the information on Disk I/O. rate (100-150/Mb/sec/Core). &lt;BR /&gt;Wondering if someone can guide me on the latency requirement aspect.&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jan 2026 18:09:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Latency-numbers-of-On-Prem-SAS-SAS-Viya-and-On-cloud-SAS-Viya-on/m-p/981798#M30584</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2026-01-11T18:09:56Z</dc:date>
    </item>
    <item>
      <title>Applying new license to SAS Viya4 using the Deployment Operator</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Applying-new-license-to-SAS-Viya4-using-the-Deployment-Operator/m-p/981463#M30561</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;In the documentation for &lt;A href="https://documentation.sas.com/doc/en/sasadmincdc/v_068/callicense/n14rkqa3cycmd0n1ub50k47x7lbb.htm#p1iyxeqiecfnlyn1st1epp6unzax" target="_self"&gt;applying new license to SAS Viya4 using the Deployment Operator &amp;nbsp;&lt;/A&gt;&lt;BR /&gt;it says "Applying your license using the SAS Viya Platform Deployment Operator requires an outage &lt;BR /&gt;for your SAS Viya platform"&lt;BR /&gt;Does that mean stopping SAS Viya4 deployment before applying license?&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jan 2026 16:53:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Applying-new-license-to-SAS-Viya4-using-the-Deployment-Operator/m-p/981463#M30561</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2026-01-04T16:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Viya4 License - Kubernetes</title>
      <link>https://communities.sas.com/t5/SUGA/SAS-Viya4-License-Kubernetes/m-p/981455#M145</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;I too have the same issue?&lt;BR /&gt;I would appreciate if yyou can share how the issue was resolved.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Jan 2026 04:03:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SUGA/SAS-Viya4-License-Kubernetes/m-p/981455#M145</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2026-01-04T04:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: Understanding SAS Viya4 deployment on AWS</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Understanding-SAS-Viya4-deployment-on-AWS/m-p/981260#M30546</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/49269"&gt;@JackMcGuire&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;We don't have visual data mining.&amp;nbsp;&lt;BR /&gt;I did go through the link. But it does not answer the question.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Dec 2025 15:01:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Understanding-SAS-Viya4-deployment-on-AWS/m-p/981260#M30546</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-12-23T15:01:07Z</dc:date>
    </item>
    <item>
      <title>Understanding SAS Viya4 deployment on AWS</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Understanding-SAS-Viya4-deployment-on-AWS/m-p/981193#M30542</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;I am trying to understand SAS Viya4 on AWS.&lt;BR /&gt;After SAS Viya4 is deployed on AWS, under site-config there is a folder "vdm".&lt;BR /&gt;Trying to what this "vdm" is and what is its significance.&lt;BR /&gt;I would appreciate if someone can explain.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Dec 2025 16:29:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Understanding-SAS-Viya4-deployment-on-AWS/m-p/981193#M30542</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-12-22T16:29:00Z</dc:date>
    </item>
    <item>
      <title>Creating alerts in Pager Duty using SAS</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Creating-alerts-in-Pager-Duty-using-SAS/m-p/980812#M30511</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;I am exploring the possibility of creating alerts on Pager duty for adverse events on SAS servers using SAS code.&amp;nbsp;&lt;BR /&gt;By adverse events I mean high memory/CPU consumption, Low free disk space etc.&lt;BR /&gt;Wondering if anybody can share their experience on this.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Dec 2025 21:14:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Creating-alerts-in-Pager-Duty-using-SAS/m-p/980812#M30511</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-12-15T21:14:41Z</dc:date>
    </item>
    <item>
      <title>Upgrading SAS Viya 2024.09 LTS to SAS Viya2025.03 LTS</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Upgrading-SAS-Viya-2024-09-LTS-to-SAS-Viya2025-03-LTS/m-p/979623#M30483</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;We are trying to upgrade&amp;nbsp;&amp;nbsp;&amp;nbsp;SAS Viya 2024.09 LTS to SAS Viya2025.03 LTS and running into an issue.&lt;BR /&gt;In the 2024.09 LTS version the rabbitmq stateful sets confirm to the "sas" storage class whereas in the 2025.03 LTS version this storage class needs to be&amp;nbsp;&lt;SPAN data-teams="true"&gt;"io2-vol-mq".&lt;BR /&gt;The deployment appears to fail on this count.&lt;BR /&gt;Wondering if any body can enlighten us in making this change while retaining the old data?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 16:07:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Upgrading-SAS-Viya-2024-09-LTS-to-SAS-Viya2025-03-LTS/m-p/979623#M30483</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-11-26T16:07:15Z</dc:date>
    </item>
    <item>
      <title>Creating a custom folder on the ompute pod on SAS Viya4 on AWS</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Creating-a-custom-folder-on-the-ompute-pod-on-SAS-Viya4-on-AWS/m-p/978336#M30401</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;Wondering if it is possible to&amp;nbsp; create a custom folder /data-drivers/jdbc on the compute pod of SAS Viya 4 deployment running on AWS?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Nov 2025 17:34:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Creating-a-custom-folder-on-the-ompute-pod-on-SAS-Viya4-on-AWS/m-p/978336#M30401</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-11-04T17:34:37Z</dc:date>
    </item>
    <item>
      <title>Obtaining a description of node on SAS Viya4 on AWS</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Obtaining-a-description-of-node-on-SAS-Viya4-on-AWS/m-p/978182#M30391</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;Wondering if there is a way to get the details of nodes in a SAS viya4 deployment using kubectl? (or may be some config file that has the details)&lt;BR /&gt;I was interested in knowing the details of disk space, vCPU, RAM and attached storage.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 31 Oct 2025 14:45:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Obtaining-a-description-of-node-on-SAS-Viya4-on-AWS/m-p/978182#M30391</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-10-31T14:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Using Azure Service Principal to access DataBricks from SAS Viya Application</title>
      <link>https://communities.sas.com/t5/SAS-Communities-Library/Using-Azure-Service-Principal-to-access-DataBricks-from-SAS-Viya/tac-p/977892#M11133</link>
      <description>&lt;P&gt;Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/71208"&gt;@UttamKumar&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;This is about the Service Principal based access from SAS Compute Server to Azure DataBricks&lt;/STRONG&gt;&lt;BR /&gt;I see one needs TenantID,SubscriberID,, ResourceGroup, DatabricksWorksSpace, ClientID, ClientSecrete, and AuthScheme for use in the properties statement.&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;We have SAS Viya 4 LTS 2024.09 and Databricks on AWS.&lt;/FONT&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;As a user I can logon to Databricks dashboard from my browser.(OAuth2 access is set)&lt;/FONT&gt;&lt;/STRONG&gt;.&lt;BR /&gt;I have used your method except for TenantID,SubscriberID,, ResourceGroup, DatabricksWorksSpace info.&lt;BR /&gt;But I get the error this error &lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: No login information was available for authdomain @origin. The credential for the user "xxxxxxx" in the domain "AzureEntra" does not exist.&lt;/FONT&gt;&lt;BR /&gt;Any suggestions?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Oct 2025 15:12:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Communities-Library/Using-Azure-Service-Principal-to-access-DataBricks-from-SAS-Viya/tac-p/977892#M11133</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-10-27T15:12:56Z</dc:date>
    </item>
    <item>
      <title>Connecting to Databricks from SAS Viya4 using Client-ID and secret</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Connecting-to-Databricks-from-SAS-Viya4-using-Client-ID-and/m-p/977793#M30360</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;We have SAS Viya4 and Databricks both &lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;installed on AWS&lt;/STRONG&gt;&lt;/FONT&gt;. We were able to connect to Databricks using Personal Access Token PAT.&lt;BR /&gt;But now the requirement is to connect&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt; using client-id and secret&lt;/STRONG&gt;&lt;/FONT&gt;.&lt;BR /&gt;I have been able to do this in the windows environment without any issue.&lt;/P&gt;
&lt;P&gt;Not able replicate this on Viya4 /Databricks on AWS.&lt;BR /&gt;Wondering if anybody can enlighten me on this on the modifications, I need to implement in the connection string,&lt;BR /&gt;The connection string in use for PAT is given below:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname libdbrk SPARK platform=databricks
  driverClass='cdata.jdbc.databricks.DatabricksDriver'
  server="abcd-efgh.cloud.databricks.com" port=443
  user=token pwd="xxxxxxxxxxxxxxxxxxxxxxxxxxxxx-x"
  httpPath="/sql/1.0/warehouses/12346abcd"
properties='DefaultColumnSize=256;QueryPassthrough=true;Other=ConnectRetryWaitTime=300;Catalog=mycatalog;Database=myschema'
  schema=myschema  bulkload=no;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;T&lt;/P&gt;</description>
      <pubDate>Fri, 24 Oct 2025 20:32:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Connecting-to-Databricks-from-SAS-Viya4-using-Client-ID-and/m-p/977793#M30360</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-10-24T20:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining cadence and release information using kubectl on Viya4 on AWS</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Obtaining-cadence-and-release-information-using-kubectl-on-Viya4/m-p/977737#M30358</link>
      <description>&lt;P&gt;Thanks.&lt;BR /&gt;It worked like a charm.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Oct 2025 17:36:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Obtaining-cadence-and-release-information-using-kubectl-on-Viya4/m-p/977737#M30358</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-10-24T17:36:45Z</dc:date>
    </item>
    <item>
      <title>Obtaining cadence and release information using kubectl on Viya4 on AWS</title>
      <link>https://communities.sas.com/t5/Administration-and-Deployment/Obtaining-cadence-and-release-information-using-kubectl-on-Viya4/m-p/977728#M30356</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;Wondering if it is possible to obtain the cadence and release information of a Viya4 deployment using kubectl command.&lt;BR /&gt;I know we can get it from SAS Studio, but I am trying to see if that can be had through kubectl.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Oct 2025 15:37:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Administration-and-Deployment/Obtaining-cadence-and-release-information-using-kubectl-on-Viya4/m-p/977728#M30356</guid>
      <dc:creator>thesasuser</dc:creator>
      <dc:date>2025-10-24T15:37:44Z</dc:date>
    </item>
  </channel>
</rss>

