hi i date is 05sep2005; i want the oupput like

05sep2005:00:00:00 ; how it wil come?

Answer Posted / kumar

data test;
input dt : datetime20.;
cards;
05sep2005:00:00:00
;
proc print data=test;
format dt datetime20.;
run;

Is This Answer Correct ?    3 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Mention what is PROC in SAS?

603


What Proc glm does?

610


For clinical entire study how many tables will create approx?

1520


What do the SAS log messages "numeric values have been converted to character" mean?

890


how to change the execute of macro

1676






what is factor analysis? : Sas-administrator

615


How do you connect the desktop application to metadata server? : sas-grid-administration

584


For what purpose would you use the RETAIN statement?

1045


How would you define the end of a macro? : sas-macro

612


what is sas application server? : Sas-di

541


Which command is used to save logs in the external file?

570


What do the sas log messages “numeric values have been converted to character” mean? What are the implications?

722


What is the length assigned to the target variable by the scan function?

676


Have you ever used the SAS Debugger?

1207


if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...

945