dhkom
Participant
Member since ‎2016 Dec 07

User Statistics

  • 61 Posts
  • 0 Solutions
  • 21 Kudos given
  • 34 Kudos received

User Activity

I'm having trouble getting the following xp_sendsmtp documentation example working: 'This example uses SMTP to send inline HTML formatted message with a signature and two attachments, one of which is a ZIP file.' The slightly modified example, with o...
By googling, I found a way to send secure email from SQL Anywhere code by calling xp_startsmtp passing parameter trusted_certificates='SMTPS=Yes;Secure=1'. I send using port 587. This works on my computer, but did not work on a customer's server. ...
I had such a good response to my post of a few days ago ('IN search condition - expression-list represented by a variable'), that I thought I'd try asking another question that had been on my mind but was not particularly urgent. Following is a ver...
Can anyone suggest a clever way to do something like this without resorting to dynamic SQL? Please excuse me if I'm just missing something simple. begin declare s_id_lst char (30); -- set s_id_lst = '3,4'; -- select list(foo_nm) from ...
How do I convert a date into a string formatted per the computer's regional date setting? I only see how to specify explicit formats. For example, in PowerBuilder, I would specify date format string "[shortdate]". Forgive me if I'm missing somethi...