BookmarkSubscribeRSS Feed
rohithverma
Obsidian | Level 7

Unable to read the value of date column while fetching from database . Please help me out.

The corresponding date value is present in the following format  as mentioned below where closeddate appears as date variable .

 

The following error is occurring  if we use any conversion functions 

 

ERROR: PROC SQL requires any created table to have at least 1 column.

 

PROC SQL;
CONNECT TO ODBC(
DATAsrc='DATALAKE'
USER='****'
password='******'
);
create table main as
select * from
connection to odbc
(
SELECT
*
FROM
PROD.CASE_S A
where A.closedate='20MAR2018:17:06:35.000000'
)
;

disconnect from odbc;
quit;

2 REPLIES 2
Tom
Super User Tom
Super User

Looks like you need help with the syntax used in your remote database?  Does the query you posted work?  Does it generate an error?  What is your actual issue?

 

What database are you connecting to?  How does that database want users to specify a literal datetime value in code?

rohithverma
Obsidian | Level 7
By syntax wise it was working fine but it was not capturing the date value in the closeddate column . It leads to the below error when we try to use to_char or any function in the where condition in order to filter the data. Please help me on this if possible .

ERROR: PROC SQL requires any created table to have at least 1 column.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 385 views
  • 0 likes
  • 2 in conversation